/********** Template CSS **********/
:root {
    --primary: #0dd4d4;
    --secondary: #007676;
    --light: #F0F6FF;
    --dark: #1a1c2c;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .text-headings-h3{
    font-family: 'Mont', sans-serif;
    font-weight: 600; /* ExtraLight */
    letter-spacing: 2px; /* Adjust letter spacing as needed */
}

.text-thin {
    font-family: 'Mont', sans-serif;
    font-weight: 600; /* ExtraLight */
    letter-spacing: 2px; /* Adjust letter spacing as needed */
}

.text-thinner {
    font-family: 'Mont', sans-serif;
    font-weight: 300; /* ExtraLight */
    letter-spacing: 2px; /* Adjust letter spacing as needed */
}

.text-thinner-2{
    font-family: 'Mont', sans-serif;
    font-weight: 100; /* ExtraLight */
    letter-spacing: 2px; /* Adjust letter spacing as needed */
}

  @font-face {
    font-family: 'Garet';
    src: url('../fonts/Garet-Book.woff') format('woff'),
         url('../fonts/Garet-Book.otf') format('opentype'),
         url('../fonts/Garet-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Garet';
    src: url('../fonts/Garet-Book.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Garet';
    src: url('../fonts/Garet-Book.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

  
  html,
  body {
    margin: 0;
    padding: 0;
    width: 100vw;
    max-height: 100%; /* Full height for vertical consistency */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scrolling */
    background-color: transparent;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch; /* Safari */
    font-family: 'Garet', sans-serif;
    letter-spacing: 1px;
  }

  h6 {
    font-family: 'Garet', sans-serif !important;
}


    /* Quinzey Font */
@font-face {
    font-family: 'Quinzey';
    src: url('../fonts/Quinzey.otf') format('opentype');
    font-weight: 200; /* ExtraLight */
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Quinzey';
    src: url('../fonts/Quinzey_Medium.otf') format('opentype');
    font-weight: 500; /* Medium */
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Quinzey';
    src: url('../fonts/Quinzey_Bold.otf') format('opentype');
    font-weight: 900; /* Bold */
    font-style: normal;
  }
  
  /* Class for headings */
  .quinzey-headings-h3 {
    font-family: 'Quinzey', sans-serif;
    font-weight: 900; 
    letter-spacing: 2px; 
    color: #000; 
    font-size: 23px; 
    margin-top: 15px; 
    /* margin-left: -2em; */
  }
  
  /* Class for thin text */
  .quinzey-thin {
    font-family: 'Quinzey', sans-serif;
    font-weight: 200; /* ExtraLight */
    letter-spacing: 2px; /* Adjust letter spacing as needed */
    font-size: 16px; /* Add font-size if needed */
  }
  
  /* Class for thinner text */
  .quinzey-thinner {
    font-family: 'Quinzey', sans-serif;
    font-weight: 900; 
    letter-spacing: 12px; 
    font-size: 24px;
  }
  
  .quinzey-headings-h4 {
    font-family: 'Quinzey', sans-serif;
    font-weight: 900; 
    letter-spacing: 2px; 
    color: #fff;/* Green color */
    font-size: 30px; 
  }
  
  .quinzey-headings-h6 {
    font-family: 'Quinzey', sans-serif;
    font-weight: 900; 
    letter-spacing: 2px; 
    color: #007676;/* Green color */
    font-size: 20px; 
  }
  

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    color: var(--primary);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/* Default Button Style */
.btn.btn-secondary-gradient {
    background: linear-gradient(to bottom right, #B8860B, #B8860B) !important;
    background-clip: padding-box;
    color: white !important;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

/* Hover Effect - Gradient Stays */
.btn.btn-secondary-gradient:hover {
    border-bottom: 2px solid #B8860B;
    background: linear-gradient(to bottom right, #B8860B, #B8860B) !important;
    background-clip: padding-box;
    color: white !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

    /* ==== Animations ==== */
    @keyframes logoPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.09); }
        100% { transform: scale(1); }
      }
      
      .logo-animation {
        animation: logoPulse 2s ease-in-out infinite;
      }


/*** Navbar ***/
#home {
    position: relative;
}

/* Navbar fixed at top when scrolled */
.sticky-top.navbar-light {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-light {
    background-color: #ffffff !important; /* White background */
}

/* Ensure the logo remains visible in dark mode */
.navbar-logo {
    max-height: 50px; /* Adjust size if needed */
    filter: brightness(1) contrast(1); /* Ensures the logo stays clear */
}


.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 45px 0;
    font-size: 22px;
    /* font-weight: 500; */
    color: var(--dark) !important;
    outline: none;
    transition: .5s;
    margin-left: 40em;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--dark) transparent transparent transparent;
    transition: .5s;
}

.dark-mode .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
    margin-left: 53em;
    font-size: 20px;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

/* Change navbar toggler icon color */
.navbar-light .navbar-toggler {
    border: none; /* Remove border */
}

.navbar-light .navbar-toggler .bi {
    font-size: 24px;  /* Adjust icon size */
    color: #007676 !important; /* Force white color */
}

/* Dark mode compatibility */
.dark-mode .navbar-light .navbar-toggler .bi {
    color: #ffffff !important; /* Make it dark in light mode if needed */
}

/* Adjust margin-left for smaller screens */
@media screen and (max-width: 1350px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 30em; /* Reduce margin on medium screens */
    }
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 20px 0;
        color: var(--dark) !important;
        margin-left: 20em;
        font-size: 20px;
    }
}

/* Adjust margin-left for smaller screens */
@media screen and (max-width: 1279px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 35em; /* Reduce margin on medium screens */
    }
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 20px 0;
        color: var(--dark) !important;
        margin-left: 20em;
        font-size: 20px;
    }
}

/* Adjust margin-left for smaller screens */
@media screen and (max-width: 1200px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 27em; /* Reduce margin on medium screens */
    }
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 20px 0;
        color: var(--dark) !important;
        margin-left: 32em;
        font-size: 20px;
    }
}


@media screen and (max-width: 992px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 10em; /* Further reduce margin on tablets */
    }
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 20px 0;
        color: var(--dark) !important;
        margin-left: 20em;
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 5em; /* Reduce for smaller screens */
    }
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 20px 0;
        color: var(--dark) !important;
        margin-left: 15em;
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 1em; /* Minimum margin for mobile screens */
    }
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 20px 0;
        color: var(--dark) !important;
        margin-left: 8em;
        font-size: 20px;
    }
}

.subheading {
    color: #044747;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 8px;
    margin-top: -0.8em;
    margin-bottom: 0.5em;
}

.dark-mode .subheading {
    color: #044747;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 8px;
    margin-top: -0.8em;
    margin-bottom: 0.5em;
}

.subpara {
    color: #fff !important;
    font-size: 1.1em;
}

p.vendor-gap-text{
    color: #fff;
    font-size: 1.1em;
}

.dark-mode p.subpara {
    color: #ffffff !important;
    font-size: 1.1em;
}

/* Make the specific paragraphs white in dark mode */
/* Force the specific paragraphs to be white in dark mode */
.dark-mode p.vendor-portal-text,
.dark-mode p.vendor-gap-text {
    color: #ffffff !important; /* Ensures white text */
}




@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 0rem;
    padding: 16rem 0 0 0;
    background:
        url(../images/bg-circle.png),
        url(../images/bg-triangle.png),
        url(../images/bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}

.dark-mode .hero-header {
    margin-bottom: 0rem;
    padding: 16rem 0 0 0;
    background:
        url(../images/bg-circle.png),
        url(../images/bg-triangle.png),
        url(../images/dark-bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));

    background-position:
        left 0px top 0px, /* Keeps bg-circle in place */
        right 0px top 50%, /* Keeps bg-triangle in place */
        center calc(92% + 55px), /* Moves dark-bg-bottom down by 50px */
        center; /* Keeps the gradient filling the background */

    background-repeat: no-repeat;

     /* Ensure the background image does not move on different screen sizes */
    background-attachment: fixed;

    /* Custom width and height for bg-bottom */
    background-size:
        auto, /* Keeps original size for bg-circle */
        auto, /* Keeps original size for bg-triangle */
        110% 150px, /* Set width to 110% of container, height to 150px */
        cover; /* Keeps the gradient full-size */
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
    .dark-mode .hero-header {
        padding: 6rem 0 9rem 0;
    }
     /* Add padding to the container */
     .hero-header .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Reduce h1 font size for mobile */
    .hero-header h1 {
        font-size: 24px; /* Adjust as needed */
        line-height: 1.3;
    }

    /* Adjust subheading spacing */
    .hero-header .subheading {
        font-size: 14px;
    }

    /* Adjust paragraph spacing */
    .hero-header .subpara {
        color: #fff;
        font-size: 16px;
    }

    .dark-mode .hero-header .subpara {
        color: #fff;
        font-size: 16px;
    }
}


/* ABOUT SECTION */
#about {
    background-color: #fff;
}

.dark-mode #about {
    background-color: #1a1c2c;
}

.img-fluid {
    width: 50%;
    height: auto;
    max-width: 100%; /* Ensures the image doesn't exceed its container width */
    border-radius: 7%;
}


.patient-card-hover {
    --s: 400px;   /* Image width */
    --h: 500px;   /* Image height */
    --b: 5px;     /* Border thickness */
    --g: 20px;    /* Gap */
    --c: #02c2c2; /* Border color */
    
    width: var(--s);
    aspect-ratio: 1;
    outline: calc(var(--s)/2) solid transparent;
    outline-offset: calc(var(--s)/-2);
    cursor: pointer;
    transition: outline 0.4s ease, transform 0.9s ease, box-shadow 0.3s ease;
  }
  
  .patient-card-hover:hover {
    outline: var(--b) solid var(--c);
    outline-offset: var(--g);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  body {
    background: #C8C8A9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
  }
  


@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}



/* BRANDS SECTION */
/* Responsive Brand Scroller */
.brands-scroller {
    display: flex;
    overflow-x: auto;
    /* padding: 0.2rem 0; */
    scroll-behavior: smooth;
    white-space: nowrap;
}

.brand-item {
    flex: 0 0 auto;
    margin-right: 2rem;
    width: 350px;
    height: 250px;
    background: #1a1c2c;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.562);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.brand-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}

/* OUR COMMITMENT */
.commit-icon {
    width: 40px; /* Adjust as needed */
    height: auto; /* Keeps aspect ratio */
}



/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

/* FAQ SECTION */
.faq-section {
    background-color: white;
    color: #ffffff;
  }

  .faq-section h5 {
    color: #007676;
    font-size: 1rem;
  }

  .faq-section h1 {
    color: #000000;
    font-size: 3rem;
  }

  .accordion-button {
    background-color: #f5f5f5; 
    color: #333; 
    border: none;
    font-size: 1.2rem;
  }

  .accordion-button:focus {
    box-shadow: none;
  }

  .accordion-button:not(.collapsed) {
    /* background-color: #007A7A; */
    background: linear-gradient(to bottom right, #01ABAB, #49b4b4, #015252);
    color: #000;
  }

  .accordion-item {
    background-color: #007676;
    border-bottom: 1px solid #007676;
  }

  .accordion-body {
    background-color: #f5f5f5; 
    color: #333; 
    border: none;
  }

  @media (max-width: 768px) {
    .container {
      width: 100%;
      padding: 0;
    }
  }

   /* Change paragraph text to dark color in dark mode */
 .dark-mode .container-xxl h5,
 .dark-mode #home h5 {
    color: #fff !important; /* Dark text */
}

.dark-mode .container-xxl p {
    color: #02c2c2 !important; /* Dark text */
}

.container-xxl .position-relative {
    background-color: #dddddd00 !important; /* Slightly darker than default bg-light */
}

  /* Ensure text inside process steps remains visible */
.dark-mode .container-xxl .position-relative p {
    color: #fff !important;
}

.dark-mode #feature p {
    color: #02c2c2  !important;
} 

/* Adjust icon size and position */
.process-card img {
    width: 120px; /* Adjust size to fit within the card */
    height: 160px;
    position: absolute;
    top: -70px; /* Moves the image halfway onto the card */
    left: 55%;
    transform: translateX(-50%);
}

/* Ensure the card has padding to avoid overlap */
.process-card {
    padding-top: 50px !important;
    background-color: #007676; /* Green background */
    color: #ffffff !important;
    border-radius: 10px;
    position: relative; /* Ensures absolute positioning of the image */
    text-align: center;
    border: 3px solid #007676 !important;
}

@media screen and (max-width: 476px) {
    .process-card img {

        top: 1px; /* Moves the image halfway onto the card */
    }
    .container-xxl .position-relative .d-inline-flex img {
        width: 65px !important;  /* Make the icons slightly bigger */
        height: auto !important; /* Maintain aspect ratio */
    }

    .patient-card-hover {
        --s: 250px;   /* Image width */
        --h: 500px;   /* Image height */
        --b: 5px;     /* Border thickness */
        --g: 20px;    /* Gap */
        --c: #02c2c2; /* Border color */
        
        width: var(--s);
        aspect-ratio: 1;
        outline: calc(var(--s)/2) solid transparent;
        outline-offset: calc(var(--s)/-2);
        cursor: pointer;
        transition: outline 0.4s ease, transform 0.9s ease, box-shadow 0.3s ease;
      }
      
      .patient-card-hover:hover {
        outline: var(--b) solid var(--c);
        outline-offset: var(--g);
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }

      .img-fluid{
        margin-bottom: 2em;
      }
      h1, h2, .fw-bold {
    font-weight: 700 !important;
    margin-bottom: 1em;
}
}



/*** Footer ***/
.footer {
    margin-top: 0rem;
    padding-top: 1rem;
    background:
        url(../images/bg-circle.png),
        url(../images/bg-triangle.png),
        url(../images/bg-top.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
    background-repeat: no-repeat;
}

.dark-mode .footer {
    position: relative; /* Ensures the background stays in place */
    background:
        url(../images/bg-circle.png),
        url(../images/bg-triangle.png),
        url(../images/bg-top.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));

    background-position:
        left 11% bottom 0px, /* Adjusts bg-circle */
        right 10% top 72%, /* Adjusts bg-triangle */
        center calc(11.3% - 50px); /* Moves bg-top higher by 50px */

    background-repeat: no-repeat;

    /* Prevent the background from disappearing */
    background-attachment: fixed; /* Keeps it visible when scrolling */

    /* Ensures the background covers the entire section */
    background-size:
        auto, /* Keeps original size for bg-circle */
        auto, /* Keeps original size for bg-triangle */
        100vw 150px, /* Full width and fixed height for bg-top */
        cover; /* Ensures gradient fills the background */

    /* Prevents background from collapsing and disappearing */
    min-height: 50vh; /* Ensures visibility even with little content */

    /* Keeps text color readable */
    color: #E0E0E0 !important;
}

/* Prevent Background from Disappearing on Mobile */
@media (max-width: 1024px) {
    .dark-mode .footer {
        background-attachment: fixed; /* Forces background to stay fixed */
        background-size:
            auto,
            auto,
            100vw 150px, /* Ensures bg-top remains fixed */
            cover;
    }
}


.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
    font-size: 1.2em;
}


.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    font-size: 1.2em;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Remove background color from Quick Links in dark mode */
.dark-mode .footer .btn.btn-link,
.dark-mode .footer p {
    background-color: transparent !important;
    color: #ffffff !important; /* Keep text white for visibility */
    box-shadow: none !important;
    font-size: 1.2em;
}

/* Ensure hover effect remains subtle */
.dark-mode .footer .btn.btn-link:hover {
    letter-spacing: 1px;
    text-decoration: none;
    background-color: #007676 !important;
}


 
/* Toggle Button */
.theme-toggle-btn {
    position: absolute;
    top: 40px;
    right: 15px;
    width: 70px;
    height: auto;
    cursor: pointer;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

/* Fade effect when switching */
.transitioning .theme-toggle-btn {
    opacity: 0.5;
    transform: scale(0.95);
}

/* Dark Mode Styling */
body.dark-mode {
    background-color: #1a1c2c !important;
    color: white !important;
}

body.dark-mode .container-xxl,
body.dark-mode .navbar,
body.dark-mode .accordion-body,
body.dark-mode .accordion-button,
body.dark-mode .faq-section,
body.dark-mode .benefits-of-joining,
body.dark-mode .btn,
body.dark-mode .testimonial-carousel .testimonial-item {
    background-color: #1a1c2c !important;
    color: white !important;
}

body.dark-mode .btn,
body.dark-mode .navbar-nav .nav-link,
body.dark-mode h1, 
body.dark-mode h2, 
body.dark-mode h3, 
body.dark-mode h4, 
body.dark-mode h5, 
body.dark-mode h6 {
    color: white !important;
}

body.dark-mode .accordion-button:not(.collapsed) {
    background: linear-gradient(to bottom right, white, #f0f0f0) !important;
    color: #1a1c2c !important;
}

body.dark-mode .accordion-body {
    background-color: #25273a !important;
    color: #11dfdf !important;
}

body.dark-mode .navbar-light .navbar-nav .nav-link {
    color: white !important;
}

body.dark-mode .faq-section {
    background-color: #1a1c2c !important;
    color: white !important;
}

body.dark-mode .faq-section h1,
body.dark-mode .faq-section h5 {
    color: white !important;
}

body.dark-mode .horizontal-line,
body.dark-mode .vertical-line {
    background-color: white !important;
}

@media screen and (max-width: 476px) {
    .container-xxl {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: -2.25rem !important;
    }
    #review.container-xxl, 
    #review .container {
        margin-top: -4rem !important; /* Reduce top padding */
        padding-bottom: 2rem !important; /* Reduce bottom padding */
    }
    .faq-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media (max-width: 991.98px) { 
    .theme-toggle-btn {
        position: fixed;
        top: 90px;
        right: 20px;  /* Aligns with the back-to-top button */
        bottom: 80px; /* Places it above the back-to-top button */
        width: 50px;  /* Adjust size for mobile */
        height: auto;
        cursor: pointer;
        z-index: 1000; /* Ensures it's above other elements */
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        padding: 10px;
        border-radius: 50%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Hover and Active Effects */
    .theme-toggle-btn:hover {
        opacity: 0.8;
        transform: scale(1.1);
    }

    /* Smooth fade effect when toggling */
    .transitioning .theme-toggle-btn {
        opacity: 0.5;
        transform: scale(0.95);
    }

    /* EMPTY BIG GAPS */
   /* Add padding on mobile */

}
