 /* --- CORE STYLES --- */
 
        :root {
            --brand-primary: #24586c;
            --brand-secondary: #7fb6e2;
            --text-white: #ffffff;
            --bg-light: #f4f7f8;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, sans-serif;
        }

        body {
            background-color: var(--bg-light);
            line-height: 1.6;
        }

        .container {
    max-width: 1200px; /* Prevents the "stretched" look on large monitors */
    margin: 0 auto;    /* Centers the container */
    padding: 0 20px;   /* Prevents text from touching the screen edges on mobile */
    width: 100%;       /* Ensures it takes full width on small screens */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

        /* --- STICKY DOUBLE HEADER --- */

    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
    background-color: var(--brand-primary);
    
    /* The Rich Shadow Layers */
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 
        0 10px 15px -3px rgba(0, 0, 0, 0.2),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
        
    /* Optional: subtle border to define the edge against the gradient */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

        .top-header {
            background-color: var(--brand-primary);
            color: white !important;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
              font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em; /* Adds a premium 'airy' feel */
  transition: all 0.3s ease;
        }

        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
         
         
        .contact-details span { 
            margin-right: 15px; 
            text-decoration: none; 
            color:white;
            font-size: 1.2rem;
            font-family: 'Public Sans', sans-serif;
            
        }
        
         .contact-details a
         {
             text-decoration: none; 
             color:white;
             
             
         }
        .search-bar {
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 5px 15px;
            display: flex;
            align-items: center;
        }

        .search-bar input {
            background: none;
            border: none;
            color: white;
            outline: none;
            padding-left: 8px;
        }

        .main-header {
            background-color: var(--brand-primary) !important;
            padding: 15px 0;
        }
        
        .logo-img {
  /* Horizontal offset | Vertical offset | Blur radius | Spread radius | Color | Inset keyword */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  padding: 0px; /* Add padding to prevent the shadow from overlapping content */
}

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

       .nav-links a {
    /* Choose one: 'Public Sans' for a Gov-Tech look, or 'Montserrat' for Modern-Corporate */
    color: var(--text-white);
 /* Bold enough to show authority */
    font-size: 0.85rem; /* Slightly smaller for a sophisticated look */
    text-decoration: none;
    transition: var(--transition);
    position: relative;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em; /* Adds a premium 'airy' feel */
  transition: all 0.3s ease;
}

/* Add a 3D depth effect on hover */
nav a:hover {
  text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}
}

/* Elegant Underline Hover Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-secondary); /* #7fb6e2 */
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--brand-secondary);
}

        /* Submenu */
        .has-submenu { position: relative; }
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            padding: 10px 0;
            display: none;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 5px;
        }
        .submenu li { list-style: none; }
        .submenu a { color: var(--brand-primary); padding: 8px 20px; display: block; }
        .has-submenu:hover .submenu { display: block; }


/* --- Top Header Mobile Optimization --- */
:root {
    --brand-blue: #7fb6e2;
}

/* --- Top Header Mobile Optimization --- */
.top-header {
    padding: 10px 0;
}

.top-header .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything */
    gap: 12px;
}

.contact-details {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-details {
        overflow-x: auto; /* Allows swiping through contacts */
        white-space: nowrap;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start; /* Better for swiping */
    }

    .contact-item {
        flex-shrink: 0;
        background: rgba(127, 182, 226, 0.15);
        border: 1px solid var(--brand-blue);
        padding: 6px 12px;
        border-radius: 50px;
        font-size: 12px;
        color: white;
    }
    
    .search-bar {
        width: 90%; /* Center the search bar */
        max-width: 300px;
    }
}

/* --- Main Header & Hamburger Logic --- */
.main-header {
    background: #fff;
    position: relative;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Hide Hamburger on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--brand-blue);
    transition: 0.3s;
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden */
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: block !important; 
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin-bottom: 25px;
    }

    .nav-links li a {
        font-size: 18px;
        color: #333;
    }

    /* Submenu adjustment for Mobile */
    .submenu {
        display: none;
        padding-left: 15px;
        position: static;
        box-shadow: none;
        border-left: 2px solid var(--brand-blue);
        margin-top: 10px;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    /* Make Login Button fit the drawer */
    .nav-links li:last-child a {
        background: var(--brand-blue) !important;
        color: white !important;
        display: block;
        text-align: center;
    }
}

/* Hamburger Animation to X */
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Ensure the hamburger has dimensions */
.hamburger {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above the Vanta globe */
    background: transparent;
    border: none;
    padding: 0;
}

/* IMPORTANT: Give the spans life */
.hamburger span {
    display: block; 
    width: 100%;
    height: 3px;
    background-color: #7fb6e2; /* Your brand color */
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Show it only on mobile/tablets */
@media (max-width: 992px) {
    .hamburger {
        display: flex; /* This makes it appear */
    }
    
    .nav-links {
        display: none; /* Hide the text links until the menu is active */
    }

    .nav-links.active {
        display: flex !important; /* Shows when JS toggles it */
    }
}
/* Tablet and Mobile Styles */
@media screen and (max-width: 768px) {
    /* Stack columns on top of each other */
    .column, .sidebar, .main-content {
        width: 100% !important;
        display: block;
    }

    /* Make images fit the screen */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Adjust font size for readability */
    body {
        font-size: 16px;
    }
}

        /* --- HERO SECTION --- */
        .hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: 60px 0;
            color: white;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        

        /* Floating Form Card */
        .form-card {
            background: white;
            color: #333;
            padding: 40px;
            border-radius: 16px;
            /*box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);*/
            transform: translateY(0);
            transition: var(--transition);
        }

        .form-card:hover { transform: translateY(-10px); }

        .form-card h2 { color: var(--brand-primary); margin-bottom: 20px; }

        .form-group { margin-bottom: 15px; }
        
        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            outline: none;
        }
        .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Ensure mobile responsiveness */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Style the optgroup for better readability */
select optgroup {
    font-weight: 700;
    color: var(--brand-primary);
    background: #f8fbff;
    font-style: normal;
}

select option {
    padding: 10px;
    font-weight: 400;
    color: #333;
}

        /* File Upload Zone */
        .upload-zone {
            border: 2px dashed var(--brand-secondary);
            background: #f8fafc;
            padding: 25px;
            text-align: center;
            border-radius: 8px;
            cursor: pointer;
            margin: 20px 0;
        }

        .upload-zone i { font-size: 2rem; color: var(--brand-primary); }

        .btn-verify {
            width: 100%;
            background: var(--brand-primary);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            font-size: 1rem;
        }

        /* Floating Image */
        .image-side {
            display: flex;
            justify-content: center;
            position: relative;
        }

        .floating-img {
            max-width: 100%;
            height: auto;
            /*filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));*/
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-30px); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-grid { grid-template-columns: 1fr; }
            .image-side { display: none; }
            .top-header { display: none; }
        }
        
        .features-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Trust Bar Styling */
.trust-bar {
    text-align: center;
    margin-bottom: 80px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.trust-bar span {
    display: block;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.logo-strip {
    display: flex;
    justify-content: center;
    gap: 50px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-strip:hover { opacity: 1; filter: grayscale(0%); }

.trust-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-primary);
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(36, 88, 108, 0.1); /* Light version of your #24586c */
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--brand-primary);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-grid { grid-template-columns: 1fr; }
    .logo-strip { flex-wrap: wrap; gap: 20px; }
}

.how-it-works {
    padding: 100px 0;
    background-color: #f0f7ff; /* Extremely light blue tint */
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--brand-primary);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(36, 88, 108, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(36, 88, 108, 0.1);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(127, 182, 226, 0.1); /* Your #7fb6e2 at 10% opacity */
    position: absolute;
    top: -10px;
    right: 10px;
}

.step-content h4 {
    color: var(--brand-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: var(--brand-primary);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-secondary); /* #7fb6e2 */
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

.final-cta {
    padding: 120px 0;
    background: #ffffff;
}

.cta-card {
    position: relative;
    /* Replace the URL with your high-res corporate asset */
    background: linear-gradient(90deg, rgba(36, 88, 108, 0.95) 30%, rgba(36, 88, 108, 0.7) 100%), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: Creates a slight parallax effect */
    padding: 80px 60px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-text {
    max-width: 600px;
    z-index: 2; /* Keeps text above the background */
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    z-index: 2;
    flex-wrap: wrap;
}

/* Subtle glass effect for the outline button to pop against the image */
.btn-outline {
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--brand-primary);
}

@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-top: 30px;
    }
}

.cta-text {
    max-width: 600px;
    z-index: 2; /* Keeps text above the background */
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    z-index: 2;
    flex-wrap: wrap;
}

/* Subtle glass effect for the outline button to pop against the image */
.btn-outline {
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--brand-primary);
}

@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-top: 30px;
    }
}
.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* This creates uniform space between buttons without overlapping */
    flex-wrap: wrap; /* Critical: allows buttons to stack on very small screens instead of overlapping */
}

.btn-primary, .btn-outline {
    margin: 0; /* Remove the margin-left that was causing the offset math to fail */
    white-space: nowrap; /* Prevents text from breaking inside the button */
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--brand-secondary);
    color: white;
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

/* Responsive adjustment for Mobile */
@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column; /* Stacks buttons on mobile for better touch targets */
        width: 100%;
    }
    
    .btn-primary, .btn-outline {
        width: 100%; /* Full width buttons on mobile look much cleaner */
        text-align: center;
    }
}

@media (max-width: 992px) {
    .cta-card { flex-direction: column; text-align: center; gap: 30px; }
}




/*Footer Section*/
.main-footer {
    position: relative; /* Essential for Vanta positioning */
    width: 100%;
    min-height: 400px; /* Give it space to be seen */
    background-color: #24586c; /* Fallback color */
    overflow: hidden;
    color: white;
    padding: 80px 0 0 0; /* No bottom padding because of the bottom bar */
    border-top: 5px solid var(--brand-secondary);
    
}

.footer-content-wrapper {
    position: relative;
    z-index: 2; /* Sits ABOVE the waves */
}

/* Force the Vanta Canvas to stay in the back */
#vanta-footer canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Sits BELOW the text */
}

.footer-bottom {
    background: rgba(0,0,0,0.2); /* Darken the bottom bar slightly */
    padding: 20px 0;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* Logo Section inside Footer */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--brand-secondary);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 25px;
}

/* Navigation Lists */
.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--brand-secondary);
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--brand-secondary);
    transform: translateY(-3px);
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #1a4252; /* Slightly darker shade of #24586c */
    padding: 25px 0;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
}

.reg-info span {
    margin: 0 10px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* The Actual Cookie Button */
.cookie-trigger-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #ffffff; /* White BG */
    color: #7fb6e2;      /* Content Color */
    border: 2px solid #7fb6e2;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(127, 182, 226, 0.3);
    z-index: 9999;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-trigger-btn:hover {
    background: #7fb6e2;
    color: #ffffff;
    transform: scale(1.1);
}

/* Updated Side Panel Styling */
.cookie-side-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.08);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.cookie-side-panel.active {
    right: 0;
}

.panel-header {
    padding: 40px;
    background: #f8fbff;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eef4f9;
}

.header-icon-box {
    background: #7fb6e2;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.header-text h3 { color: #24586c; margin: 0; font-size: 1.2rem; }
.header-text p { color: #7fb6e2; margin: 0; font-size: 0.8rem; font-weight: 600; }

.panel-body { padding: 40px; flex-grow: 1; }

.privacy-notice {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #7fb6e2;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 30px;
}

/* Custom Toggle Switch Style */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px; width: 16px;
    left: 3px; bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider { background-color: #7fb6e2; }
input:checked + .slider:before { transform: translateX(22px); }

.btn-save {
    background: #24586c;
    color: white;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-save:hover { background: #7fb6e2; }

.panel-footer { padding: 40px; border-top: 1px solid #eef4f9; }



/*Whatsapp*/
.whatsapp-corporate-btn {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Opposite side of the cookie button */
    height: 60px;
    background: #ffffff;
    border: 2px solid #7fb6e2;
    color: #7fb6e2;
    border-radius: 20px; /* Pill shape instead of a perfect circle for a more modern look */
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Public Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(127, 182, 226, 0.2);
    z-index: 9998;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-corporate-btn i {
    font-size: 1.8rem;
}

/* Hover State: Inverse Colors */
.whatsapp-corporate-btn:hover {
    background: #7fb6e2;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(127, 182, 226, 0.4);
}

/* Hide label on mobile to keep it as a circle */
@media (max-width: 600px) {
    .whatsapp-corporate-btn {
        width: 60px;
        padding: 0;
        justify-content: center;
    }
    .btn-label {
        display: none;
    }
}


.construction-toast {
    position: fixed;
    right: -300px; /* Start off-screen */
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border-left: 5px solid #7fb6e2;
    box-shadow: -5px 5px 20px rgba(0,0,0,0.15);
    padding: 20px 25px;
    border-radius: 8px 0 0 8px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: right 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy slow slide */
}

.construction-toast.show {
    right: 0; /* Slide in */
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.toast-content i {
    color: #7fb6e2;
    font-size: 20px;
}

/* Progress bar that shows time remaining */
.progress-bar {
    height: 3px;
    background: #eee;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #7fb6e2;
    animation: shrink 4s linear forwards;
}

@keyframes shrink {
    from { width: 100%; }
    to { width: 0%; }
}


/**Vanta footer background/
#vanta-canvas {
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Make content readable against the blue */
    text-align: center;
}

.content {
    z-index: 10; /* Ensures content stays on top of the Vanta animation */
    pointer-events: none; /* Optional: allows clicks to pass through to the background */
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* About Page*/
/* --- Sections --- */
.content-section {
    padding: 120px 10%;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.white-bg { background-color: var(--white); }
.gradient-bg { 
    background: var(--primary-grad); 
    color: var(--text-light);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.container.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Floating Images & Cards --- */
.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.glass-card {
    background-color: transparent;
    padding: 20px;
    border-radius: 24px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /*box-shadow: 0 20px 40px rgba(0,0,0,0.1);*/
}

.glass-card img {
    max-width: 100%;
    border-radius: 15px;
    display: block;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 5s ease-in-out infinite;
}

/* --- Scroll Animations --- */
.animate-left, .animate-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-left { transform: translateX(-50px); }
.animate-right { transform: translateX(50px); }

.appear {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .container, .container.reverse {
        flex-direction: column;
        text-align: center;
    }
    h2 { font-size: 2.2rem; }
}

/* --- Impact Grid Styles --- */
.container.column {
    flex-direction: column;
    align-items: flex-start;
}

.section-header {
    margin-bottom: 50px;
    max-width: 800px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.impact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.impact-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.impact-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

/* --- The Interactive Hover State --- */
.impact-card:hover {
    transform: translateY(-12px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(51, 169, 216, 0.15);
}

/* Pseudo-element for the gradient border effect on hover */
.impact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    padding: 2px; /* Border thickness */
    background: var(--primary-grad);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card:hover h3 {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animation Class */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-up.appear {
    opacity: 1;
    transform: translateY(0);
}



/*Payments*/

.payment-trust-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.payment-gateways, 
.card-networks {
    display: flex;
    align-items: center;
    gap: 15px;
}

.divider-line {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.payment-trust-bar img {
    height: 20px; /* Uniform height for a "clean" look */
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1); /* Matches your dark footer theme */
    transition: all 0.3s ease;
}

.payment-trust-bar img:hover {
    opacity: 1;
    filter: none; /* Shows original brand colors on hover for a high-end feel */
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .payment-trust-bar {
        flex-direction: column;
        gap: 10px;
    }
    .divider-line { display: none; }
}