 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dark-blue: #1C3565;
            --light-blue: #8FBDFD;
            --yellow: #EEE40A;
            --black: #191919;
            --gray: #595959;
            --white: #FFFFFF;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px; /* Offset for sticky header */
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--black);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .logo-text {
            font-family: 'Roboto', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--yellow);
            background: var(--dark-blue);
            padding: 8px 20px;
            border-radius: 4px;
        }

        .logo-text sup {
            font-size: 14px;
            vertical-align: super;
            position: relative;
            top: -4px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: var(--light-blue);
        }

        .nav-dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
           
        }

        /* .dropdown-toggle::after {
            content: '▼';
            font-size: 10px;
        } */

        .dropdown-content {
            display: none;
            position: absolute;
            background: var(--white);
            min-width: 280px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            border-radius: 4px;
            padding: 10px 0;
            top: 100%;
            left: 0;
            margin-top: 0px; /* NO GAP - this is the fix! */
        }

        .nav-dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--dark-blue);
            white-space: nowrap;
        }

        .dropdown-content a:hover {
            background: var(--light-blue);
            color: var(--white);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
            color: var(--white);
            padding: 100px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            color: var(--white);
        }

        .hero p {
            font-size: 24px;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--yellow);
            color: var(--dark-blue);
        }

        .btn-primary:hover {
            background: #1c3565;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--dark-blue);
        }

        /* Section Styles */
        .section {
            padding: 80px 20px;
        }

        .section-alt {
            background: #f9f9f9;
        }

        .section-dark {
            background: var(--dark-blue);
            color: var(--white);
        }

        .section-title {
            font-size: 42px;
            text-align: center;
            margin-bottom: 20px;
            color: var(--dark-blue);
        }

        .section-dark .section-title {
            color: var(--white);
        }

        .section-subtitle {
            font-size: 20px;
            text-align: center;
            margin-bottom: 60px;
            color: var(--gray);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .card {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }

        .card h3 {
            color: var(--dark-blue);
            margin-bottom: 15px;
            font-size: 24px;
        }

        .card p {
            color: var(--gray);
            margin-bottom: 15px;
        }

        .card ul {
            list-style: none;
            padding-left: 0;
        }

        .card ul li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: var(--gray);
        }

        .card ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-weight: bold;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 48px;
            color: var(--dark-blue);
            margin-bottom: 10px;
        }

        .stat-item p {
            color: var(--gray);
            font-size: 18px;
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-item {
            text-align: center;
            padding: 30px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--light-blue);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
        }

        .feature-item h3 {
            color: var(--dark-blue);
            margin-bottom: 15px;
            font-size: 22px;
        }

        /* How It Works */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--yellow);
            color: var(--dark-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step h3 {
            color: var(--dark-blue);
            margin-bottom: 15px;
            font-size: 26px;
        }

        /* Benefits List */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-column h4 {
            color: var(--dark-blue);
            margin-bottom: 20px;
            font-size: 22px;
        }

        .benefit-column ul {
            list-style: none;
        }

        .benefit-column li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: var(--gray);
        }

        .benefit-column li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-weight: bold;
            font-size: 20px;
        }

        /* Highlight boxes */
        .highlight-box {
            background: var(--light-blue);
            color: var(--white);
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            margin: 60px 0;
        }

        .highlight-box h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 32px;
        }

        .highlight-box p {
            color: var(--white);
        }

        /* Solution Section Specific */
        .solution-section {
            padding: 80px 20px;
            border-bottom: 3px solid var(--light-blue);
        }

        .solution-section:nth-child(even) {
            background: #f9f9f9;
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: var(--white);
            padding: 60px 20px 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .footer-section h4 {
            color: var(--yellow);
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
            cursor: pointer;
        }

        .footer-section a:hover {
            color: var(--yellow);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--light-blue);
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-blue);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border-radius: 6px;
            border: 1px solid #ddd;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        /* Success Message */
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px 20px;
            border-radius: 6px;
            margin-bottom: 25px;
            border: 1px solid #c3e6cb;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: fadeIn 0.5s ease-in;
        }

        .success-message::before {
            content: "✓";
            font-size: 20px;
            font-weight: bold;
            color: #155724;
        }

        .section-dark .success-message {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .section-title {
                font-size: 32px;
            }

            .nav-links {
                display: none;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .logo-text {
                font-size: 24px;
            }
        }

        
.custom-nav {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding:0;
      background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border: none;
}

.navbar-toggler {
  border: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.close-btn {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 22px;
}

#menuNav {
    
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.45s ease;
}
#menuNav.show {
    max-height: 400px;
    opacity: 1;
    padding-top: 25px;
    position: absolute;
    top: 70px;
    background: #fff;
    right: 0px;
    left: 0;
    padding-bottom: 25px;
}
.navbar-nav .dropdown-menu {
    position: static;
    border: none;
    padding: 0px;
}
.footer-section ul {
    list-style: none;
    padding-left: 0px;
}
/* Mobile */
@media (max-width: 991px) {
  #menuNav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }

#menuNav.show {
    max-height: 400px;
    opacity: 1;
    padding-top: 25px;
    position: absolute;
    top: 70px;
    background: #fff;
    right: 0px;
    left: 0;
    padding-bottom: 25px;
}
.navbar-nav {
    padding-left: 10px;
    gap: 15px;
  }
 
}
.nav-link {
         color: var(--dark-blue);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
                margin: 0px 15px;
    padding: 0px !important;
            cursor: pointer;
}
 

        .nav-link a:hover {
            color: var(--light-blue);
        }

@media (max-width:767px) {
.hero { 
    padding: 40px 20px; 
}
.section {
    padding: 40px 20px;
}
.highlight-box { 
    padding: 40px 20px; 
        margin: 60px 0 0;
}
.feature-item {
    text-align: center;
    padding: 0;
}
.section-subtitle { 
    margin-bottom: 20px; 
}
.benefit-column ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.section-subtitle { 
    margin-bottom: 20px; 
}
.feature-item {
    text-align: center;
    padding: 0;
}
.footer-section ul {
    list-style: none;
    padding-left: 0px;
}
}