
@import url('https://fonts.googleapis.com/css2?family=Dhurjati&family=Montserrat:wght@100;400;600;700&display=swap');

* {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #111;
}

html::-webkit-scrollbar-thumb {
  background: #ffff;
  border-radius: 5rem;
}


*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

        :root {
        --primary-blue: #3490F3;
            --primary-blue-dark: #257EEA;
            --promo-blue: #4A5C98;
            --promo-cyan: #2DDECA;
            --hero-cyan: #2AC4D3;
            --dark-navy: #1c2b4d;
            --text-primary: #1A202C;
            --text-secondary: #4A5568;
            --text-heading: #333333;
            --text-body: #6b7280;
            --background-light: #f9f9f9;
            --white: #FFFFFF;
            --border-light: #E2E8F0;
            --services-icon-blue: #60C3E3;
            --footer-bg: #FFFFFF;
            --footer-newsletter-bg: #2D3748;
           --border-color: #e5e5e5;
            --transition-speed: 0.3s ease;
        }

body {
  overflow-x: hidden;
  counter-reset: list-counter;
}



section {
  padding: 48px 9%;
}

        .container {
            max-width: 1280px; /* Wider container for this design */
            margin: 0 auto;
            
        }
        
        /* ---------------------------------- */
        /* -------- HEADER & NAVIGATION ----- */
        /* ---------------------------------- */
        .main-header {
            background-color: var(--white);
            padding: 24px 24px;
            border-bottom: 1px solid var(--border-light);
            position: fixed;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--transition-speed);
            width: 100%;
        }
        
        .main-header.scrolled {
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
           
            text-decoration: none;
        }

.logo img{
  height: 70px;
}
        
        .main-nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-navy);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 2px;
            position: relative;
            transition: color var(--transition-speed);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-blue);
            transform: scaleX(0);
            transition: transform var(--transition-speed);
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
        }
        
        .btn {
            text-decoration: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all var(--transition-speed);
            display: inline-block;
            border: none;
            text-transform: uppercase;
        }

        .btn-primary {
            background-color: var(--primary-blue);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(52, 144, 243, 0.2);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 144, 243, 0.3);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--dark-navy);
            z-index: 1100;
        }
        
        /* -------- MOBILE SIDEBAR -------- */
        .sidebar {
            position: fixed;
            top: 0;
            right: -300px; /* Start off-screen */
            width: 300px;
            height: 100%;
            background-color: var(--white);
            box-shadow: -4px 0 15px rgba(0,0,0,0.1);
            z-index: 1200;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            padding: 80px 30px 30px;
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar-close {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 24px;
            color: var(--text-secondary);
            cursor: pointer;
        }
        
        .sidebar .nav-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .sidebar .nav-links a {
            font-size: 12px;
        }

        .sidebar .btn-primary {
            width: 100%;
            text-align: center;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1150;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--transition-speed), visibility var(--transition-speed);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

                /* ---------------------------------- */
        @media (max-width: 992px) {
            .main-nav {
                display: none; 
            }
            .hamburger {
                display: block;
            }
        }


    .hero-section {
            background-color: var(--background-light);
           padding: 70px 0;
            text-align: center;
            margin-top: 10rem;
        }

      

        .hero-content h1 {
            font-size: 36px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 24px;
            color: var(--dark-navy);
        }

        .hero-content p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin: 0 auto 40px auto;
            max-width: 1170px;
        }

        .hero-image-wrapper {
            margin-bottom: 40px;
            
        }
        
        .hero-image {
            width: 850px;
            height: 550px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            margin-top: 48px;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
        }
        
        .hero-actions .btn {
            padding: 14px 32px;
            font-size: 15px;
        }
        


       /* ---------------------------------- */
        /* ---------- PROMO SECTION --------- */
        /* ---------------------------------- */
   

        .promo-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
           padding: 20px 0;
        }

        .promo-card {
            border-radius: 10px;
            padding: 30px;
            color: var(--white);
        }

        .promo-card h2 {
            font-size: 30px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 16px;
        }
        
        .promo-card p {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .promo-card.cyan {
            background-color: var(--promo-cyan);
        }

        .promo-card.cyan a {
            display: inline-block;
            margin-top: 24px;
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            border-bottom: 2px solid var(--white);
            transition: transform var(--transition-speed);
        }
        
        .promo-card.cyan a:hover {
            transform: translateY(-2px);
        }
        
        .promo-card.blue {
            background-color: var(--promo-blue);
        }
        
        .promo-features {
            list-style: none;
            margin-top: 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        .promo-features li {
            font-size: 16px;
            font-weight: 500;
        }

        .promo-features li::before {
            content: '•';
            margin-right: 12px;
            color: var(--white);
            font-size: 20px;
        }



   /* ---------------------------------- */
        /* -------- SERVICES SECTION -------- */
        /* ---------------------------------- */
        .services-section {
            padding: 70px 0;
            background-image: url(../Images/wallpaperflare.com_wallpaper.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        .services-container {
            
            background-color: var(--dark-navy);
            border-radius: 15px;
            padding: 80px;
            text-align: center;
        }

        .services-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--services-icon-blue);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .services-header h2 {
            font-size: 42px;
            font-weight: 800;
           color: var(--background-light);
            line-height: 1.3;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .services-header p {
            font-size: 18px;
            color: var(--border-light);
            max-width: 600px;
            margin: 0 auto 60px auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 32px;
            text-align: left;
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-card .icon {
            font-size: 28px;
            color: var(--services-icon-blue);
            margin-bottom: 20px;
        }
        
        .service-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 12px;
        }

        .service-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }



                /* ---------------------------------- */
        /* ------ CORE FEATURES SECTION ----- */
        /* ---------------------------------- */
        .core-features-section {
            padding: 100px 0;
            background-color: var(--white);
        }

        .features-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .features-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--dark-navy);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .features-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .features-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }
        
        .feature-item {
            font-size: 16px;
            background-color: var(--dark-navy);
            color: var(--white);
            padding: 20px 10px;
            border-radius: 8px;
            font-weight: 400;
            text-align: center;
            text-decoration: none;
            transition: all var(--transition-speed);
            cursor: pointer;
        }

        .feature-item:hover {
            background-color: #000;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .features-content .btn-primary {
            width: 100%;
            text-align: center;
            padding: 16px;
            font-size: 16px;
        }

        .features-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }


                /* ---------------------------------- */
        /* ------- HOW IT WORKS SECTION ----- */
        /* ---------------------------------- */
        .how-it-works-section {
            padding: 50px 0;
            background-color: var(--background-light);
            margin-bottom: 8rem;
        }

         .how-it-works-section h2{
            text-align: center;
            font-size: 42px;
             color: var(--dark-navy);
             margin: 24px;
             text-transform: uppercase;
             font-weight: 800;
         }


         .how-it-works-section p{
            text-align: center;
             font-size: 16px;
            color: var(--text-secondary);
             margin-bottom: 70px;
         }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .step-card {
            line-height: 1.7;
            background-color: var(--white);
            padding: 40px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .step-icon {
            font-size: 40px;
            color: var(--primary-blue);
            margin-bottom: 24px;
        }

        .step-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 16px;
        }

        .step-card p {
            font-size: 16px;
            color: var(--text-secondary);
        }



       /* ---------------------------------- */
        /* ------ WHY CHOOSE US SECTION ----- */
        /* ---------------------------------- */
        .why-choose-us-section {
            position: relative;
            min-height: 110vh;
            background: var(--dark-navy);
            display: flex;
            align-items: center;
            overflow: hidden;
            
        }

        .why-choose-us-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 100%;
        }

        .why-choose-us-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .why-choose-us-content {
           
            position: absolute;
           top: 6%;
           left: 3%;
           bottom: 6%;
            z-index: 10;
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px;
            max-width: 550px;
            border-left: 10px solid var(--promo-blue);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            /* Overlap is created by the container's padding and the card's position */
        }
        
        .why-choose-us-content h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--dark-navy);
            margin-bottom: 16px;
           
            text-transform: uppercase;
        }


            .why-choose-us-content p {
            font-size: 14px;
            font-weight: 400;
            color: var(--dark-navy);
            margin-bottom: 16px;
           line-height: 1.7;
            text-transform: none;
        }
        
        .why-choose-us-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 4rem;
        }
        
        .why-choose-us-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .why-choose-us-item .icon {
            background-color: var(--dark-navy);
            color: var(--white);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
           
        }
        
        .why-choose-us-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 8px;
        }

        .why-choose-us-item p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
        }





               /* ---------------------------------- */
        /* --------- BANNER SECTION --------- */
        /* ---------------------------------- */
        .banner-section {
            position: relative;
            padding: 100px 0;
            background-image: url(../images/3.png);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .banner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
        }
        
        .banner-content {
            position: relative;
            z-index: 2;
           
            padding: 60px;
            border-radius: 16px;          
            margin: 0 auto;
            text-align: center;
            color: var(--white);
             backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(10px);
               background-color: rgba(28, 43, 77, .7);
             box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
               border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .banner-content .banner-subtitle {
            font-size: 24px;
            font-weight: 600;
            color: var(--border-light);
            margin-bottom: 8px;
        }

        .banner-content .banner-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .banner-content .banner-description {
            font-size: 16px;
            color: var(--border-light);
           
            margin: 0 auto 40px auto;
        }
        
        .banner-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .banner-actions .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
        }
        
        .banner-actions .btn-secondary:hover {
            background-color: var(--primary-blue);
            color: var(--white);
        }



       /* ---------------------------------- */
        /* -------- FEATURE HERO SECTION ---- */
        /* ---------------------------------- */
        .feature-hero-section {
            background-color: var(--background-light);
            padding: 70px 0;
            text-align: center;
            margin-top: 10rem;
        }

     

        .feature-hero-content h1 {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 24px;
            color: var(--dark-navy);
            text-transform: uppercase;
        }

        .feature-hero-content p {
            font-size: 16px;
            color: var(--text-secondary);
            margin: 0 auto 40px auto;
            max-width: 900px;
           line-height: 1.7;
        }

        .feature-hero-image-wrapper {
            margin-bottom: 40px;
        }
        
        .feature-hero-image {
           width: 850px;
            height: 550px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .feature-hero-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
        }
        
        .feature-hero-actions .btn {
            padding: 14px 32px;
            font-size: 15px;
        }



.module-banner {
    text-align: center;
    background: var(--dark-navy);
}


.module-banner h1{
    font-size: 42px;
    font-weight: 600;
    color: var(--border-light);
    margin-bottom: 24px;
}

.module-banner p{
    font-size: 16px;
    line-height: 1.7;
    color: var(--border-light);
    margin-bottom: 24px;
}




        /* ---------------------------------- */
        /* ------- PATIENT MODULE SECTION --- */
        /* ---------------------------------- */
        .patient-module-section {
            min-height: 80vh;
            background-image: url('../images/mokcup2.png');
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: flex-end; /* Align content to the right */
            align-items: center;
           
        }
        
        .patient-module-content {
            background-color: var(--dark-navy);
            color: var(--white);
            width: 45%; /* Adjust width as needed */
            height: 100%;
            min-height: 80vh;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .patient-module-content h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 40px;
        }
        
        .patient-module-list {
            list-style: none;
            margin-bottom: 24px;
        }
        
        .patient-module-list li {
            font-size: 18px;
            font-weight: 500;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
        }
        
        .patient-module-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .patient-module-list li::before {
            counter-increment: list-counter;
            content: "0" counter(list-counter);
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-right: 20px;
        }

        @media (max-width: 992px) {
            .patient-module-content {
                width: 60%;
            }
        }


       /* ---------------------------------- */
        /* ------- PATIENT MODULE SECTION --- */
        /* ---------------------------------- */
        .doctor-module-section {
            min-height: 80vh;
            background-image: url('../images/3.png');
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: flex-start; /* Align content to the right */
            align-items: center;
            margin-bottom: 64px;
        }
        
        .doctor-module-content {
            background-color: var(--dark-navy);
            color: var(--white);
            width: 45%; /* Adjust width as needed */
            height: 100%;
            min-height: 80vh;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .doctor-module-content h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 40px;
        }
        
        .doctor-module-list {
            list-style: none;
        }
        
        .doctor-module-list li {
            font-size: 18px;
            font-weight: 500;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
        }
        
        .doctor-module-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .doctor-module-list li::before {
            counter-increment: list-counter;
            content: "0" counter(list-counter);
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-right: 20px;
        }

        @media (max-width: 992px) {
            .doctor-module-content {
                width: 60%;
            }
        }


        /* ---------------------------------- */
        /* --------- CARE CARDS SECTION ----- */
        /* ---------------------------------- */
        .care-cards-section {
            padding: 100px 0;
          
        }

        .care-cards-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .care-cards-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--dark-navy);
        }
        
        .care-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .care-card {
            background-color: var(--white);
            border: 1px solid var(--primary-blue);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }
        
        .care-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
        }

        .care-card img {
            width: 100%;
            height: 220px; /* Fixed height for consistency */
            object-fit: cover; /* Ensures image covers the area */
            display: block;
        }
        
        .care-card-content {
            padding: 32px;
            text-align: left;
        }

        .care-card-content h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .care-card-content p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
        }


                @media (max-width: 1024px) {
            .care-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* ---------------------------------- */
        /* ------- CONTACT US SECTION ------- */
        /* ---------------------------------- */
        .contact-form-section {
            display: flex;
            align-items: center;
            justify-content: left;
            min-height: calc(100vh - 90px); /* Adjust based on header height */
            padding: 60px 100px;
            background-image: url('../images/Contact-Us-Background.png');
            background-size: cover;
            background-position: center;
            margin-top: 13rem;
        }

        .contact-form-section .form-container {
            width: 800px;
        
        }

        .contact-form-container {
            max-width: 500px;
            width: 100%;
            padding: 40px;
            border-radius: 16px;
            
            /* Glassmorphism Effect */
            background: rgba(255, 255, 255, 0.3);
            -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
        }

        .contact-form-container h2 {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.8);
            font-family: var(--font-family);
            font-size: 16px;
            text-transform: none;
            color: var(--text-primary);
            transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
        }
        
        .form-input::placeholder {
            color: var(--text-secondary);
            text-decoration: none;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(52, 144, 243, 0.2);
        }

        textarea.form-input {
            height: 140px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 8px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all var(--transition-speed);
        }

        .submit-btn:hover {
            background-color: var(--primary-blue-dark);
            transform: translateY(-2px);
        }
        
        /* Form Status Message Styling */
        #form-status {
            display: none; /* Hidden by default */
            padding: 15px;
            margin-top: 20px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
        }
        
        #form-status.success {
            background-color: rgba(40, 167, 69, 0.1);
            color: #155724;
            border: 1px solid rgba(40, 167, 69, 0.2);
            font-size: 14px;
        }

        #form-status.error {
            background-color: rgba(241, 0, 0, 0.1);
            color: #d50000;
            border: 1px solid rgba(40, 167, 69, 0.2);
            font-size: 14px;
        }


        /* ---------------------------------- */
        /* ------ CONTACT INFO SECTION ------ */
        /* ---------------------------------- */
        .contact-info-section {
            padding: 60px 0;
            background-color: #f0f4f8; /* Light background for contrast */
        }
        
        .contact-info-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var( --dark-navy);
            color: var(--white);
            border-radius: 16px;
            padding: 30px 40px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 18px;
            font-weight: 500;
        }
        
        .contact-info-item i {
            font-size: 24px;
        }
        
        .contact-info-divider {
            width: 1px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.3);
        }


        /* ---------------------------------- */
        /* ---- AFFILIATE BANNER SECTION ---- */
        /* ---------------------------------- */
        .affiliate-banner-section {
            padding: 100px 0;
            position: relative;
            text-align: center;
            color: var(--white);
            background-image: url(../images/affiliate-banner-bg.png);
            background-size: cover;
            background-position: center;
        }

            .affiliate-banner-2-section {
            padding: 120px 0;
            position: relative;
            text-align: center;
            color: var(--white);
            background-image: url(../images/Affiliate-banner-2.png);
            background-size: cover;
            background-position: center;
        }

        .affiliate-banner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(30, 42, 72, 0.75); /* Dark overlay */
            z-index: 1;
        }

            .affiliate-banner-2-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(30, 42, 72, 0.75); /* Dark overlay */
            z-index: 1;
        }

        .affiliate-banner-content,
         .affiliate-banner-2-content{
            position: relative;
            z-index: 2;
            max-width: 1100px;
            margin: 0 auto;
        }

        .affiliate-banner-content h3,
         .affiliate-banner-2-content h3 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 16px;
            opacity: 0.9;
        }

         .affiliate-banner-content h2,
          .affiliate-banner-2-content h2{
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .affiliate-banner-content p,
         .affiliate-banner-2-content p {
            font-size: 18px;
            margin-bottom: 40px;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .affiliate-banner-content .btn-primary,
         .affiliate-banner-2-content .btn-primary {
            padding: 16px 40px;
            font-size: 16px;
        }
        




        /* ---------------------------------- */
        /* ------ PRICE HEADLINE SECTION ---- */
        /* ---------------------------------- */
        .price-headline-section {
            padding: 48px 0;
            background-color: var(--white);
            text-align: center;
            margin-top: 10rem;
        }

        .price-headline-container {
           
            margin: 0 auto;
        }

        .price-headline-container h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--promo-cyan);
            margin-bottom: 16px;
        }

        .price-headline-container h1 {
            font-size: 48px;
            font-weight: 800;
            color: var(--dark-navy);
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price-headline-container p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 750px;
            margin: 0 auto;
        }


        /* ---------------------------------- */
        /* ------- PRICING TABLE SECTION ---- */
        /* ---------------------------------- */
        .pricing-table-section {
            padding: 40px 0 80px 0;
            background-color: var(--background-light);
        }

        .pricing-container {
            
            margin: 0 auto;
           
        }

        .pricing-descriptions-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
          
        }

        .pricing-description {
            background-color: var(--white);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
        }

        .pricing-description h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 12px;
        }

        .pricing-description p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        .pricing-cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
           
        }
        
        .pricing-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
             padding: 20px;
        }
        
        .pricing-card.monthly { background-color: var(--primary-blue); }
       
        .pricing-card.yearly { background-color: var(--dark-navy); }

        .pricing-header {
            padding: 32px;
            color: var(--white);
            text-align: center;
        }
        
        .pricing-header .price {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .pricing-header .term {
            font-size: 16px;
            font-weight: 500;
        }
        
        .pricing-body {
            background-color: var(--white);
            padding: 32px;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .features-list {
            list-style: none;
           
        }

        .features-list li {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
            line-height: 1.7;
        }

        .features-list li::before {
            content: '•';
            margin-right: 12px;
            color: var(--primary-blue);
            font-size: 15px;
           line-height: 1.7;
            font-weight: bolder;
        }
        
        .notes-list {
            border-radius: 15px;
            background-color: var(--white);
            list-style: none;
            padding: 24px 32px;
            border-top: 1px solid var(--border-light);
        }
        
        .notes-list li {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
        }
        
        .notes-list li:last-child {
            margin-bottom: 0;
        }

        .notes-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-size: 14px;
            font-weight: bolder;
        }
        
        .pricing-actions {
            text-align: center;
            padding: 40px 0;
        }
        
        .pricing-actions .btn {
            margin: 0 10px;
        }
        

.treatment-section {
  background-color: #0a2a4a;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.treatment-section h2 {
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 600;
}

.columns {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  
}

.columns ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  line-height: 2;
  text-align: left;
  
}

.columns li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.columns li i {
  color: #00d084; /* Soft green for checkmark */
  font-size: 1rem;
}

.cta {
  margin-top: 40px;
}

.cta button {
  background-color: #fff;
  color: #0a2a4a;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta button:hover {
  background-color: #e0e0e0;
}

@media (max-width: 768px) {
  .columns {
    flex-direction: column;
    align-items: center;
  }

  .columns ul {
    text-align: center;
  }

  .columns li {
    justify-content: center;
  }
}



        /* ---------------------------------- */
        /* ------ About CMD SECTION ---- */
        /* ---------------------------------- */

        .founder-story{
            
             background: linear-gradient(rgba(28, 43, 77, 0.9), rgba(28, 43, 77, 0.9)), url(../images/Untitled\ design\ \(1\).png);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

            .story-content {
            position: relative;
            z-index: 2;
           
            padding: 60px;
            border-radius: 16px;          
            margin: 0 auto;
            text-align: start;
            color: var(--white);
             backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(10px);
               background-color: rgba(28, 43, 77, .7);
             box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
               border: 1px solid rgba(255, 255, 255, 0.18);
        }


          .story-content h1{
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 24px;
            border-bottom: 1px solid var(--border-light);
            padding: 0 0 16px 0;
          }

          .story-content p{
            font-size: 16px;
            font-weight: 400;
            
            line-height: 1.7;
          }


        /* ---------------------------------- */
        /* -------- STRENGTH SECTION -------- */
        /* ---------------------------------- */
        .strength-section {
            padding: 100px 0;
            background-color: var(--dark-navy);
        }

        .strength-header {
            text-align: center;
            color: var(--white);
            margin-bottom: 60px;
        }

        .strength-header h2 {
            font-size: 42px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .strength-header p {
            font-size: 16px;
            color: var(--border-light);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .strength-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .strength-card {
            background-color: var(--white);
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .strength-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 16px;
            line-height: 1.4;
        }
        
        .strength-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }


                
        /* ---------------------------------- */
        /* -------- WHEN CMD SECTION -------- */
        /* ---------------------------------- */
        .when-cmd-section {
            padding: 100px 0;
            
            margin: 48px 0;
        }

        .when-cmd-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .when-cmd-content h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark-navy);
            margin-bottom: 40px;
            line-height: 1.3;
        }

        .when-cmd-content h2 span {
            color: var(--primary-blue);
        }

        .when-cmd-item {
            margin-bottom: 32px;
        }

        .when-cmd-item h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 12px;
        }

        .when-cmd-item p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .when-cmd-image img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        /* ---------------------------------- */
        /* -------- BENEFITS SECTION -------- */
        /* ---------------------------------- */
        .benefits-section {
            padding: 48px 0;
            background-color: var(--dark-navy);
            color: var(--white);
            overflow: hidden; /* To contain the absolute positioned image */
            position: relative;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: 45% 55%;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
            padding: 24px;
        }

        .benefits-image {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50%;
            height: 100%;
            z-index: 1;
        }

        .benefits-image img {
            width: 90%;
            height: auto;
          
            position: absolute;
            bottom: 0;
            left: 0;
        }
        
        .benefits-content {
            grid-column: 2 / 3; /* Content starts in the second column */
        }

        .benefits-content h2 {
            font-size: 42px;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1.3;
            margin-bottom: 24px;
        }
        
        .benefits-content p {
            font-size: 16px;
            color: var(--border-light);
           text-align: justify;
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.7;
        }
        
        .benefit-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .benefit-card {
            background-color: var(--white);
            color: var(--dark-navy);
            padding: 32px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .benefit-card .icon {
            font-size: 32px;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
        }


               /* ---------------------------------- */
        /* ------- AFFORDABLE SECTION ------- */
        /* ---------------------------------- */
        .affordable-section {
            padding: 100px 0;
            background-color: var(--white);
        }

        .affordable-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .affordable-content h2 {
            font-size: 40px;
            font-weight: 600;
            color: var(--dark-navy);
            line-height: 1.3;
            margin-bottom: 24px;
            text-transform: uppercase;
        }
        .affordable-content h2 span {
            color: var(--promo-cyan);
        }

        .affordable-content p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .affordable-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 20px;
        }
        
        .affordable-list {
            list-style: none;
            padding-left: 0;
        }

        .affordable-list li {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            position: relative;
            padding-left: 28px;
        }

        .affordable-list li::before {
            content: '•';
            color: var(--primary-blue);
            position: absolute;
            left: 0;
            font-size: 24px;
            line-height: 1;
        }
        
        .affordable-pricing {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 60px;
            
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        .price-point {
            margin-bottom: 40px;
        }

        .price-point .price {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.7;
        }
        
        .price-point .term {
            font-size: 18px;
            font-weight: 500;
        }
        
        .affordable-pricing .btn {
            background-color: var(--dark-navy);
            color: var(--white);
            padding: 16px 40px;
            font-size: 16px;
        }

        
        
               @media (max-width: 1024px) {
            .strength-grid {
                grid-template-columns: 1fr 1fr;
            }

             .when-cmd-grid {
                grid-template-columns: 1fr;
            }
            .benefits-image {
                display: none; /* Hide image on smaller screens */
            }
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .benefits-content {
                grid-column: 1 / 2;
                text-align: center;
            }
            .benefits-content p {
                margin: 0 auto 40px auto;
            }

            .affordable-grid {
                grid-template-columns: 1fr;
            }
        }
        
        

        @media (max-width: 768px) {
            .strength-section {
                padding: 60px 0;
            }
            .strength-header h2 {
                font-size: 32px;
            }
            .strength-header p {
                font-size: 16px;
            }
            .strength-grid {
                grid-template-columns: 1fr;
            }


             .when-cmd-section {
                padding: 60px 0;
            }
            .when-cmd-content h2 {
                font-size: 28px;
            }
            .when-cmd-item h3 {
                font-size: 20px;
            }
            .benefits-section {
                
                padding: 60px 0;
            }
            .benefits-content h2 {
                font-size: 32px;
            }
            .benefit-cards-grid {
                grid-template-columns: 1fr;
            }

            .affordable-section {
                padding: 60px 0;
            }
            .affordable-content h2 {
                font-size: 32px;
            }
            .affordable-pricing {
                padding: 40px;
            }
            .price-point .price {
                font-size: 48px;
            }

        }



        /* ---------------------------------- */
        /* --------- RESPONSIVE DESIGN ------ */
        /* ---------------------------------- */
        @media (max-width: 992px) {
            .main-nav {
                display: none; 
            }
            .hamburger {
                display: block;
            }
            .promo-container {
                margin: 24px;
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .services-container {
                padding: 60px;
            }
            .features-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-us-layout {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .why-choose-us-section {
                min-height: 100vh;
                padding: 100px 0;
            }
            .why-choose-us-image {
                display: block; /* Hide image on tablet for simplicity */
            }
            .why-choose-us-content {                
                left: 5%;
                top: 9%;
            }

           .pricing-descriptions-grid,
            .pricing-cards-grid {
                grid-template-columns: 1fr;
            }
            .pricing-descriptions-grid {
                margin-bottom: 24px;
                gap: 24px;
            }


        }






        
        @media (max-width: 768px) {

            .hero-section {
                padding: 60px 0;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .hero-content p {
                font-size: 16px;
            }

             .hero-image {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }


        .feature-hero-image{
            width: 100%;
            height: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }


            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            .hero-actions .btn {
                width: 100%;
                max-width: 300px;
            }

            .promo-section {
                padding: 60px 0;
            }
            .promo-card h2 {
                font-size: 28px;
            }
            .promo-features {
                grid-template-columns: 1fr;
            }
            
            .services-section {
                padding: 60px 0;
            }
            .services-container {
                padding: 40px 24px;
            }
            .services-header h2 {
                font-size: 30px;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }

            .core-features-section, .how-it-works-section {
                padding: 60px 0;
            }
            .section-header h2 {
                font-size: 30px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }

              .why-choose-us-content {
                padding: 40px;
            }

             .why-choose-us-content {
                padding: 40px;
            }

             .banner-actions {
                flex-direction: column;
            }

           .contact-form-section {
                justify-content: center;
                padding: 40px 0;
            }
            .contact-form-container {
                margin: 0 16px;
            }

                .contact-info-container {
                flex-direction: column;
                gap: 20px;
                padding: 40px 20px;
            }
            .contact-info-divider {
                width: 80%;
                height: 1px;
            }

            .affiliate-banner-section {
                padding: 80px 24px;
            }
            .affiliate-banner-content h2 {
                font-size: 32px;
            }
            .affiliate-banner-content h3, .affiliate-banner-content p {
                font-size: 16px;
            }

            .price-headline-section {
                padding: 60px 0;
            }
            .price-headline-container h1 {
                font-size: 32px;
            }
            .price-headline-container p {
                font-size: 16px;
            }

            .price-headline-section {
                padding: 60px 0;
            }
            .price-headline-container h1 {
                font-size: 32px;
            }
            .price-headline-container p {
                font-size: 16px;
            }
             .pricing-actions {
                display: flex;
                flex-direction: column;
                gap: 16px;
                align-items: center;
            }
            .pricing-actions .btn {
                width: 100%;
                max-width: 300px;
                margin: 0;
            }

             .feature-hero-section {
                padding: 60px 0;
            }
            .feature-hero-content h1 {
                font-size: 36px;
            }
            .feature-hero-content p {
                font-size: 16px;
            }
            .feature-hero-actions {
                flex-direction: column;
                align-items: center;
            }
            .feature-hero-actions .btn {
                width: 100%;
                max-width: 300px;
            }

            .patient-module-section {
                justify-content: center;
                text-align: center;
            }
            .patient-module-content {
                width: 100%;
                min-height: 70vh;
                padding: 40px 24px;
                background-color: rgba(40, 52, 85, 0.95);
            }
            .patient-module-list li {
                justify-content: center;
            }



            .doctor-module-section {
                justify-content: center;
                text-align: center;
            }
            .doctor-module-content {
                width: 100%;
                min-height: 70vh;
                padding: 40px 24px;
                background-color: rgba(40, 52, 85, 0.95);
            }
            .doctor-module-list li {
                justify-content: center;
            }

               .care-cards-section {
                padding: 60px 0;
            }
            .care-cards-header h2 {
                font-size: 32px;
            }
            .care-cards-grid {
                grid-template-columns: 1fr;
            }

            .faq .c .p p {
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 400;
            padding:2em;
            line-height: 1.7;
            }


        }


        /* ---------------------------------- */
        /* --------- FOOTER SECTION --------- */
        /* ---------------------------------- */
        .footer-section {
            background-color: var(--white);
            padding: 48px 0 0 0;
            color: var(--text-body);
            
        }

        .footer-top {
            text-align: center;
            margin-bottom: 60px;
        }

        .footer-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-bottom: 24px;
            
        }
        
      .footer-logo img{
        height: 120px;
      }
        
        .footer-description {
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto;
            color: var(--text-body);
            line-height: 1.7;
        }

        .footer-main {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 200px;
            margin-bottom: 40px;
        }

        .footer-column h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-heading);
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

      
        .footer-column ul span {
            color: var(--text-body);
            text-decoration: none;
            transition: color var(--transition-speed);
            font-size: 14px;
        }

          .footer-column ul a {
            color: var(--text-body);
            text-decoration: none;
            transition: color var(--transition-speed);
            font-size: 14px;
          }

        .footer-column ul a:hover {
            color: var(--primary-blue);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .contact-item .icon {
            background-color: var(--dark-navy);
            color: var(--white);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .footer-divider {
            border: 0;
            border-top: 1px solid var(--border-color);
            margin: 40px 0;
        }

        .footer-bottom {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 200px;
            align-items: center;
            align-content: center;
            justify-content: space-between;
           
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            max-width: 700px;
        }

        .newsletter-form input {
            flex-grow: 1;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: var(--font-family);
            font-size: 16px;
            
        }

        .newsletter-form button {
            background-color: var(--primary-blue);
            color: var(--white);
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }

        .newsletter-form button:hover {
            background-color: var(--primary-blue-dark);
        }

        .social-links {
            display: flex;
            gap: 12px;
            justify-content: flex-start;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 8px;
            font-size: 16px;
            text-decoration: none;
            transition: all var(--transition-speed);
        }

        .social-links a:hover {
            background-color: var(--primary-blue-dark);
            transform: translateY(-2px);
        }

        .footer-credits {
            display: flex;
            justify-content: space-between;
            padding: 24px 0;
            margin-top: 40px;
            font-size: 14px;
            color: var(--text-body);
            border-top: 1px solid var(--border-color);
            font-weight: 400;
        }

            .footer-credits a{           
            font-size: 14px;
            color: rgb(0, 0, 175);           
            font-weight: 600;
        }


        
        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-main {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-section {
                padding-top: 60px;
            }
            .footer-main, .footer-bottom {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-column ul {
                align-items: center;
            }
            .contact-item {
               justify-content: center;
            }
            .newsletter-form {
                flex-direction: column;
            }
            .social-links {
                justify-content: center;
            }
             .footer-credits {
                text-align: center;
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }


        }




        /* ---------------------------------- */
        /* -------- AFFILIATE SECTION ------- */
        /* ---------------------------------- */
        .affiliate-section {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 24px;
            min-height: 100vh;
            background: linear-gradient(rgba(28, 43, 77, 0.7), rgba(28, 43, 77, 0.7)), url(../images/4.png);
            opacity: ;
            background-size: cover;
            background-position: center;
        }

        /* This is the main form container with the glassmorphism effect */
        .CustomHtmlSignupForm {
            max-width: 800px;
            width: 100%;
            padding: 40px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.2);
            -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
        }

        /* General styles for the inner form elements */
        .SignupForm {
            color: var(--background-light);
        }
        
        /* Styling the fieldset and legend */
        .SignupForm fieldset {
            border: none;
            padding: 0;
            margin-bottom: 24px;
        }

        .SignupForm legend {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 24px;
            width: 100%;
            padding-bottom: 10px;
            border-bottom: 1px solid #f9f9f9;
        }

        /* Styling for labels */
        .SignupForm label {
            display: block;
            margin-bottom: 8px;
            font-weight: normal;
            font-size: 16px;
        }
        
        /* Styling for text inputs */
        .SignupForm input[type="text"] {
            width: 100%;
            padding: 16px;
            margin-bottom: 16px;
            border: 1px solid var(--border-light);
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.8);
            font-family: var(--font-family);
            font-size: 16px;
            text-transform: none;
        }

            .SignupForm input[type="password"] {
            width: 100%;
            padding: 16px;
            margin-bottom: 16px;
            border: 1px solid var(--border-light);
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.8);
            font-family: var(--font-family);
            font-size: 16px;
            text-transform: none;
        }
        
        
        /* Styling for helper text spans */
        .SignupForm span {
            display: block;
            font-size: 13px;
            color: var(--background-light);
            margin-top: -12px;
            margin-bottom: 16px;
        }
        
        /* Styling for the checkbox and its label */
        .SignupForm label[for="agreeWithTerms"] {
            display: inline-block;
            margin-right: 10px;
            
        }
        
        .SignupForm input[type="checkbox"] {
           vertical-align: middle;
           width: 24px;
           height: 24px;
           margin-right: 12px;
        }

        .clear { clear: both; }

        /* Styling for the submit button */
        .SignupForm input[type="submit"] {
            width: 100%;
            padding: 15px;
            margin-top: 24px;
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 8px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all var(--transition-speed);
        }
        .SignupForm input[type="submit"]:hover {
            background-color: var(--dark-navy);
        }





               /* ---------------------------------- */
        /* -------- WHY CMD MATTERS SECTION --- */
        /* ---------------------------------- */
        .why-cmd-matters-section {
            padding: 100px 0;
            background-color: var(--background-light);
        }
        
        .why-cmd-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .why-cmd-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--dark-navy);
            text-transform: uppercase;
        }
        
        .why-cmd-header h2 span {
            color: var(--promo-cyan);
        }
        
        .why-cmd-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: stretch;
        }
        
        .why-cmd-card {
            padding: 40px;
            border-radius: 16px;
            color: var(--white);
        }
        
        .why-cmd-card.problem {
            background-color: var(--primary-blue);
        }
        
        .why-cmd-card.solution {
            background-color: var(--dark-navy);
        }

        .why-cmd-card.solution p{
            font-size: 16px;
            line-height: 1.7;
        }

        .why-cmd-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
            text-transform: uppercase;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .why-cmd-card ul {
            list-style: none;
            padding-left: 0;
        }

        .why-cmd-card ul li {
            font-size: 16px;
            margin-bottom: 16px;
            line-height: 1.7;
            padding-left: 28px;
            position: relative;
        }

        .why-cmd-card ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            font-size: 24px;
            line-height: 1;
        }
        
        .why-cmd-card.solution ul li strong {
            display: block;
            color: var(--promo-cyan);
        }



               /* ---------------------------------- */
        /* ----- WHY JOIN AP SECTION -------- */
        /* ---------------------------------- */
        .why-join-our-ap-section {
            padding: 100px 0;
            background-color: var(--dark-navy);
            background-image: url('../images/Affiliate-banner-2.png');
            background-blend-mode: overlay;
            background-size: cover;
        }

        .why-join-header {
            text-align: center;
            margin-bottom: 60px;
            color: var(--white);
        }

        .why-join-header h2 {
            font-size: 42px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .why-join-header h2 span {
            color: var(--promo-cyan);
        }

        .why-join-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .why-join-card {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 32px;
            border-radius: 16px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }


               /* ---------------------------------- */
        /* --------- RESPONSIVE DESIGN ------ */
        /* ---------------------------------- */
        @media (max-width: 992px) {
           

            .why-cmd-grid {
                grid-template-columns: 1fr;
            }

            .why-join-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
             
            .why-cmd-matters-section,
            .why-join-our-ap-section {
                padding: 60px 0;
            }
            .why-cmd-header h2,
            .why-join-header h2  {
                font-size: 32px;
            }
        }



.faq-headline {
    margin-top: 10rem;
    min-height: 60vh;
    display: flex;
    background: linear-gradient(rgba(28, 43, 77, 0.7), rgba(28, 43, 77, 0.7)), url(../images/disclaimer-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--border-light);
}

.faq{
            margin-top: 48px;
        }

    .faq h2{
        font-size: 32px;
        font-weight: 600;
        color: var(--primary-blue-dark);
    }

.faq .c{
  position: relative;
  margin:2em;
}
.faq .c input{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity:0;
  visibility: 0;
}
.faq .c h1{
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-navy);
  padding:1em;
  position: relative;
}
.faq .c label::before{
  content:"";
  display: inline-block;
  border: 10px solid transparent;
  border-left: 15px solid var(--dark-navy);
  
}
.faq .c label{
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.faq .c .p{
  max-height: 0;
  overflow: hidden;
  transition:max-height 0.5s;
  border: .5px solid var(--text-secondary);
  border-radius: 5px;
 
}
.faq .c .p p {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 400;
  padding:2em;
  line-height: 1.7;
}
.faq input:checked ~ h1 label::before{
  border-left:10px solid transparent;
  border-top: 15px solid var(--dark-navy);
  margin-top:12px;
  margin-right:10px;
}
.faq input:checked ~ h1 ~ div.p{
  max-height: fit-content;
}




.doc-headline {
    margin-top: 10rem;
    min-height: 60vh;
    display: flex;
    background: linear-gradient(rgba(28, 43, 77, 0.7), rgba(28, 43, 77, 0.7)), url(../images/disclaimer-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.doc-headline h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--border-light);
    text-align: center;
}

.doc-headline p{
    font-size: 16px;
    font-weight: 400;
    color: var(--border-light);
    text-align: center;
    line-height: 1.7;
    margin-top: 2rem;
}

.doc-section{
    padding: 48px;
    
}

.doc-box{
    padding: 0 24px;
    margin-bottom: 64px;
   
}


.doc-box h1{
    font-size: 32px;
    color: var(--primary-blue-dark);
    margin-bottom: 16px;
}

.doc-box p{
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.7;
    padding-left: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}


.doc-container p{
    font-size: 16px;
    color: var(--text-primary);
    padding-bottom: 16px;
    border-bottom: 1px solid #bcbcbc;
    font-weight: 400;
}

.doc-points {
    list-style: none;
}

.doc-points li {
 font-size: 16px;
 color: var(--text-secondary);
 margin-bottom: 16px;
display: block;
justify-content: start;
 line-height: 1.7;
        }

        .doc-points li::before {
            content: '•';
            margin-right: 12px;
            color: var(--primary-blue);
            font-size: 16px;
            line-height: 1.5;
            font-weight: 800;
        }


    .download {
           
    margin-top: 10rem;
    min-height: 100vh;
    display: flex;
    background: linear-gradient(rgba(28, 43, 77, 0.9), rgba(28, 43, 77, 0.9)), url(../images/2153481880.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: column;
    align-items: center;
    justify-content: center;

        }

    .download h1{
        color: var(--hero-cyan);
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 4rem;
        text-align: center;
    }

       .download h2{
        color: var(--primary-blue);
        font-size: 64px;
        font-weight: 600;
        text-align: center;
    }