/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Inter",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f5f5f7; /* Background color for the entire website, including individual sections */
  --default-color: #19003d; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #6e28fe; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #6200ea; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #19003d;  /* The default color of the main navmenu links */
  --nav-hover-color: #6200ea; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #19003d; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #6200ea; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f5f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #f5f5f7;
  --default-color: #19003d;
  --heading-color: #6200ea;
  color: var(--default-color);
  background-color: var(--background-color);
  z-index: 997;
  transition: all 0.4s ease;
}

.header .header-top {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 14px;
}

.header .header-top .contact-info {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.header .header-top .contact-info i {
  color: var(--accent-color);
  margin-right: 6px;
}

.header .header-top .contact-info a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.header .header-top .contact-info a:hover {
  color: var(--accent-color);
}

.header .header-top .contact-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.header .header-top .social-links {
  gap: 16px;
}

.header .header-top .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  transition: 0.3s;
}

.header .header-top .social-links a:hover {
  color: var(--accent-color);
}

.header .header-main {
  padding: 18px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.header .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.header .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

@media (max-width: 1200px) {
  .header .header-main .logo {
    order: 1;
  }

  .header .header-main .navmenu {
    order: 3;
  }
}

@media (max-width: 992px) {
  .header .header-top .social-links {
    width: 100%;
    justify-content: center;
  }
}

.scrolled .header {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.scrolled .header .header-top {
  display: none !important;
}

.scrolled .header .header-main {
  padding: 12px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #19003d;
  --default-color: #f5f5f7;
  --heading-color: #ffffff;
  --accent-color: #6200ea;
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 60%;
  height: 70%;
  background: #ee5f12;
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.05;
  animation: blob-move1 15s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: #12ee79;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.05;
  animation: blob-move2 20s ease-in-out infinite alternate-reverse;
}

.hero .bg-element {
  position: absolute;
  width: 70%;
  height: 80%;
  top: 20%;
  right: 10%;
  background: color-mix(in srgb, #3312ee, #ee1296, 50%);
  border-radius: 30% 70% 50% 50%/50% 30% 70% 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
  animation: blob-move3 18s ease-in-out infinite alternate;
}

@keyframes blob-move1 {
  0% {
    border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    border-radius: 50% 50% 30% 70%/60% 40% 60% 40%;
    transform: translate(5%, 5%) rotate(10deg) scale(1.1);
  }
}

@keyframes blob-move2 {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    border-radius: 40% 60% 70% 30%/50% 60% 40% 60%;
    transform: translate(-5%, -5%) rotate(-10deg) scale(1.1);
  }
}

@keyframes blob-move3 {
  0% {
    border-radius: 30% 70% 50% 50%/50% 30% 70% 50%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    border-radius: 60% 40% 40% 60%/40% 60% 40% 60%;
    transform: translate(-3%, 3%) rotate(-5deg) scale(1.05);
  }
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-content .hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero .hero-content .hero-cta .btn-get-started {
  padding: 12px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.hero .hero-content .hero-cta .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-content .hero-cta .btn-watch-video {
  display: inline-flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s;
}

.hero .hero-content .hero-cta .btn-watch-video i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
  transition: all 0.3s;
}

.hero .hero-content .hero-cta .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .hero-content .hero-cta .btn-watch-video:hover i {
  transform: scale(1.1);
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 2rem;
}

.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-stats .stat-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-image {
  position: relative;
  z-index: 2;
}

.hero .hero-image .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero .hero-image .image-wrapper .main-image {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.hero .hero-image .image-wrapper .main-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero .hero-image .image-wrapper .floating-element {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.hero .hero-image .image-wrapper .floating-element i {
  font-size: 1.2rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.hero .hero-image .image-wrapper .floating-element span {
  font-weight: 600;
  font-size: 0.9rem;
}

.hero .hero-image .image-wrapper .floating-element.floating-element-1 {
  top: 15%;
  left: -5%;
  animation: float 6s ease-in-out infinite;
}

.hero .hero-image .image-wrapper .floating-element.floating-element-2 {
  top: 45%;
  right: -5%;
  animation: float 7s ease-in-out infinite 1s;
}

.hero .hero-image .image-wrapper .floating-element.floating-element-3 {
  bottom: 10%;
  left: 10%;
  animation: float 5s ease-in-out infinite 0.5s;
}

.hero .hero-image .image-wrapper .blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 1;
}

.hero .hero-image .image-wrapper .blur-circle.blur-circle-1 {
  width: 250px;
  height: 250px;
  background-color: #ee1266;
  opacity: 0.05;
  top: -20px;
  right: 20%;
  animation: pulse 2s infinite alternate;
}

.hero .hero-image .image-wrapper .blur-circle.blur-circle-2 {
  width: 180px;
  height: 180px;
  background-color: #6612ee;
  opacity: 0.05;
  bottom: 10%;
  left: 0;
  animation: pulse 10s infinite alternate-reverse;
}

.hero .hero-image .image-wrapper .blur-circle.blur-circle-3 {
  width: 120px;
  height: 120px;
  background-color: color-mix(in srgb, #ee1266, #6612ee, 50%);
  opacity: 0.1;
  top: 30%;
  right: -10%;
  animation: pulse 7s infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.05;
    transform: scale(1);
  }

  100% {
    opacity: 0.2;
    transform: scale(1.2);
  }
}

.hero .trusted-by {
  margin-top: 4rem;
  text-align: center;
}

.hero .trusted-by p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .trusted-by .clients-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.hero .trusted-by .clients-wrapper .client-logo {
  height: 30px;
  opacity: 0.6;
  transition: all 0.3s;
}

.hero .trusted-by .clients-wrapper .client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content .hero-cta {
    justify-content: center;
  }

  .hero .hero-content .hero-stats {
    justify-content: center;
  }

  .hero .hero-image .image-wrapper .floating-element {
    display: none;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pricing .pricing-item {
  padding: 30px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
}

.pricing .pricing-item h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--heading-color);
}

.pricing .pricing-item .description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  font-size: 15px;
}

.pricing .pricing-item .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
}

.pricing .pricing-item .price sup {
  font-size: 28px;
  font-weight: 300;
  margin-right: 5px;
}

.pricing .pricing-item .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 400;
}

.pricing .pricing-item .btn {
  margin-bottom: 25px;
  width: 100%;
  padding: 10px 30px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .pricing-item .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-item .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.pricing .pricing-item .btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.pricing .pricing-item .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-item ul {
  padding: 0;
  list-style: none;
}

.pricing .pricing-item ul li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .pricing-item ul li i {
  color: var(--accent-color);
  font-size: 20px;
  padding-right: 8px;
}

.pricing .pricing-item.featured {
  border-color: var(--accent-color);
  border-width: 2px;
}

.pricing .pricing-item.featured h3 {
  color: var(--accent-color);
}

.footer-overlap-text {
  position: absolute;
  left: 50%;        /* center horizontally */
  transform: translate(-50%, -50%) scale(1.2); 
  font-size: 5rem;
  font-weight: 900;
  color: #19003d;
  z-index: 1;       /* behind footer text but still hoverable */
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-overlap-text:hover {
  color: #f3ebff; /* glow effect */
  text-shadow: 0 0 10px #6200ea, 0 0 20px #6200ea;
}

/* =========================================================
   RITREMIS Funnel Add-ons (Append Only)
   - Works with your existing variables & Bootstrap
   - Paste this at the END of main2.css
========================================================= */

/* --- 1) Section subtitle helper (since you used .subtitle in HTML) --- */
.section-title .subtitle {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

/* --- 2) Premium card utility (for Proof/How/Testimonial/Lead boxes) --- */
.ui-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all .25s ease;
}

.ui-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.ui-card.ui-card-featured {
  border-color: color-mix(in srgb, var(--accent-color), transparent 35%);
  box-shadow: 0 16px 45px rgba(98,0,234,0.12);
}

.ui-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.ui-icon i { font-size: 22px; }

/* --- 3) Button micro-interactions (keeps your current design) --- */
.btn-get-started,
.header .btn-cta,
.pricing .pricing-item .btn {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}

.btn-get-started:hover,
.header .btn-cta:hover,
.pricing .pricing-item .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(98,0,234,0.18);
}

/* --- 4) Proof Section (if you added it) --- */
.proof .ui-card h3 {
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}
.proof .ui-card p { margin-bottom: 0; }

/* --- 5) How It Works step pill --- */
.how-step {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 65%);
  margin-bottom: 14px;
}

/* --- 6) Lead Capture Section --- */
.lead {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--background-color), #fff 35%),
    var(--background-color)
  );
}

.lead-box {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.07);
}

.lead-form .form-control,
.lead-form .form-select {
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.lead-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.lead-mini-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all .25s ease;
}

.lead-mini-item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.lead-mini-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

/* --- 7) Testimonials (Bootstrap carousel) --- */
.testimonials .testimonial-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.07);
}

.testimonials .testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.testimonials .avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* --- 8) FAQ polish (accordion) --- */
.faq .accordion-item {
  border-radius: 16px !important;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%) !important;
  margin-bottom: 12px;
}

.faq .accordion-button {
  font-weight: 700;
  padding: 18px 18px;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.faq .accordion-button:focus {
  box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--accent-color), transparent 82%);
}

.faq .accordion-body {
  padding: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* --- 9) Pricing badge (optional if you added .pricing-badge) --- */
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(98,0,234,0.22);
}

/* --- 10) Footer Overlap Fix (stable centering + no jump) --- */
/* Your current .footer-overlap-text is absolute; it needs a stable parent anchor */
.footer-badge-wrapper {
  position: relative;
  height: 56px;   /* gives it a stable box */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overwrite just the positioning behavior, keep your glow hover effect */
.footer-overlap-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.15);
  line-height: 1;
  margin: 0;
  padding: 0;
  pointer-events: auto;
  user-select: none;
}

/* Keep your hover glow but make it smoother */
.footer-overlap-text:hover {
  transition: all .25s ease;
}

/* --- 11) Mobile spacing tweaks for funnel sections --- */
@media (max-width: 768px) {
  .ui-card { padding: 20px; }
  .lead-box { padding: 20px; }
  .footer-overlap-text { font-size: 3.2rem; transform: translate(-50%, -50%) scale(1.05); }
}
