* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.8rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(43, 78, 135, 0.1);
    min-height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    height: 40px;
}

.logo-icon {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    display: none;
}

.logo:hover .site-logo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Main Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 1.5rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.nav-links > li > a:hover {
    color: #2b4e87;
}

.nav-links > li > a .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-links > li:hover > a .arrow {
    transform: rotate(180deg);
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 78, 135, 0.1);
}

.nav-links > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown li a:hover {
    background: linear-gradient(135deg, rgba(43, 78, 135, 0.08) 0%, rgba(119, 199, 181, 0.08) 100%);
    color: #2b4e87;
    padding-left: 1.8rem;
}

/* Mega Menu for Offerings */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    width: 800px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 78, 135, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    z-index: 1000;
}


.nav-links > li:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-column h4 {
    color: #2b4e87;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(43, 78, 135, 0.2);
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li a {
    display: block;
    padding: 0.5rem 0;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.mega-menu-column ul li a:hover {
    color: #2b4e87;
    padding-left: 8px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(43, 78, 135, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(43, 78, 135, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #2b4e87;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 50%, #f4c632 100%);
    color: white;
    padding: 180px 5% 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(119, 199, 181, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 198, 50, 0.15) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(244, 198, 50, 0.2);
    border: 1px solid rgba(244, 198, 50, 0.5);
    color: #f4c632;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-gradient-text {
    background: linear-gradient(135deg, #f4c632 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #f4c632 0%, #f8d96c 100%);
    color: #2b4e87;
    padding: 1.1rem 2.8rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(244, 198, 50, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(244, 198, 50, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1.1rem 2.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 120px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.8rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid rgba(43, 78, 135, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(43, 78, 135, 0.15);
    border-color: rgba(43, 78, 135, 0.3);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
    box-shadow: 0 4px 20px rgba(43, 78, 135, 0.3);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* Locations Section */
.locations {
    padding: 120px 5%;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.location-card {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 2.2rem;
    border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid rgba(43, 78, 135, 0.1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(43, 78, 135, 0.12);
    border-color: rgba(43, 78, 135, 0.2);
}

.location-card h3 {
    color: #2b4e87;
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.location-card ul {
    list-style: none;
}

.location-card ul li {
    padding: 0.65rem 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(43, 78, 135, 0.08);
    transition: color 0.3s;
}

.location-card ul li:hover {
    color: #2b4e87;
    padding-left: 5px;
}

.location-card ul li:last-child {
    border-bottom: none;
}

/* Solutions Section */
.solutions {
    padding: 120px 5%;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid rgba(43, 78, 135, 0.1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(43, 78, 135, 0.15);
}

.solution-image {
    height: 180px;
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.solution-content {
    padding: 2rem;
}

.solution-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
    font-weight: 700;
}

.solution-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(43, 78, 135, 0.1) 0%, rgba(119, 199, 181, 0.1) 100%);
    color: #2b4e87;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.learn-more {
    color: #2b4e87;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 10px;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 5%;
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 100%);
    color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4c632 0%, #f8d96c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #2b4e87;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(244, 198, 50, 0.4);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Payment Methods Section */
.payment-methods {
    padding: 100px 5%;
    background: white;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-item {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    color: #1a1a2e;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(43, 78, 135, 0.1);
    transition: all 0.3s;
}

.payment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 78, 135, 0.15);
    border-color: #2b4e87;
}

/* Stats Section */
.stats {
    padding: 80px 5%;
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: white;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-secondary-dark {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Footer */
footer {
    background: #0d1321;
    color: white;
    padding: 80px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #77c7b5;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #77c7b5;
}

.contact-info p {
    /* Enable multiline alignment */
    text-indent: -1.3em; /* Pulls the icon (first line) to the left */
    padding-left: 1.3em; /* Pushes the rest of the content (including subsequent lines) to the right */
    
    margin-bottom: 0.5rem;
    
    /* Ensure only the contact details get the text color/size from the footer-section p styles */
    /* You may want to add:
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    ... if .footer-section p doesn't override it properly.
    */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #77c7b5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mega-menu {
        width: 600px;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fix for mobile menu scrolling */
@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        overflow-y: auto;
        z-index: 999;
        height: calc(100vh - 70px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links > li > a {
        padding: 1rem 0;
        width: 100%;
    }

    .dropdown, .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        width: 100%;
        padding: 0 1rem;
        display: none;
        max-height: none;
        overflow: visible;
    }

    .nav-links > li:hover > .dropdown,
    .nav-links > li:hover > .mega-menu {
        display: block;
    }

    .mega-menu {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-height: none;
        overflow-y: visible;
    }

    .cta-button {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .logo-icon {
        width: 100px;
        height: 100px;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-icon {
        width: 80px;
        height: 80px;
    }
    
    nav {
        padding: 0.6rem 5%;
        min-height: 60px;
    }
    
    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* ===== Fix Offerings Mega Menu on Mobile ===== */
@media (max-width: 768px) {

    /* Mega-menu full width & centered */
    .mega-menu {
        width: 95% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        grid-template-columns: 1fr !important;
        padding: 1.5rem !important;
        text-align: center !important;
    }

    /* Center headings */
    .mega-menu-column h4 {
        text-align: center !important;
    }

    /* Center items */
    .mega-menu-column ul li a {
        text-align: center !important;
        padding-left: 0 !important;
    }

    /* Remove hover padding shift for mobile */
    .mega-menu-column ul li a:hover {
        padding-left: 0 !important;
    }
}

/* ===== Fix Offerings Mega-Menu on Mobile ===== */
@media (max-width: 768px) {

    .mega-menu {
        width: 95% !important;                   /* Fit inside mobile screen */
        left: 50% !important;                    /* Keep centered */
        transform: translateX(-50%) !important;  /* Perfect centering */
        grid-template-columns: 1fr !important;   /* Stack columns vertically */
        padding: 1.5rem !important;
        text-align: center !important;
    }

    /* Center section titles */
    .mega-menu-column h4 {
        text-align: center !important;
    }

    /* Center item links */
    .mega-menu-column ul li a {
        text-align: center !important;
        padding-left: 0 !important;              /* Remove shift */
    }

    /* Prevent left-slide hover on mobile */
    .mega-menu-column ul li a:hover {
        padding-left: 0 !important;
    }
}


/* ===== Fix Mobile Menu Positioning ===== */
@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        overflow-y: auto;
        z-index: 999;
        height: calc(100vh - 70px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links > li > a {
        padding: 1rem 0;
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid rgba(43, 78, 135, 0.1);
    }

    /* Fix dropdown positioning on mobile */
    .dropdown, .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        width: 100%;
        padding: 0;
        display: none;
        max-height: none;
        overflow: visible;
        background: rgba(43, 78, 135, 0.03);
        border-radius: 8px;
        margin-top: 0.5rem;
    }

    /* Show dropdown when parent is active */
    .nav-links > li.active > .dropdown,
    .nav-links > li.active > .mega-menu {
        display: block;
    }

    /* Fix mega menu for mobile */
    .mega-menu {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        max-height: none;
        overflow-y: visible;
        padding: 1rem !important;
        text-align: left;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }

    .mega-menu-column {
        margin-bottom: 1.5rem;
    }

    .mega-menu-column:last-child {
        margin-bottom: 0;
    }

    .mega-menu-column h4 {
        text-align: left;
        color: #2b4e87;
        font-size: 1rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(43, 78, 135, 0.2);
    }

    .mega-menu-column ul li a {
        text-align: left;
        padding: 0.7rem 0;
        color: #555;
        border-bottom: 1px solid rgba(43, 78, 135, 0.05);
    }

    .mega-menu-column ul li:last-child a {
        border-bottom: none;
    }

    .mega-menu-column ul li a:hover {
        padding-left: 0.5rem;
        background: rgba(43, 78, 135, 0.05);
    }

    .cta-button {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .logo-icon {
        width: 100px;
        height: 100px;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-icon {
        width: 80px;
        height: 80px;
    }
    
    nav {
        padding: 0.6rem 5%;
        min-height: 60px;
    }
    
    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    /* Further refine mega menu for very small screens */
    .mega-menu {
        padding: 0.8rem !important;
    }
    
    .mega-menu-column h4 {
        font-size: 0.9rem;
    }
    
    .mega-menu-column ul li a {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
}














