/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    font-weight: 400;
}

.tech-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
            position: relative;
            overflow: hidden;
        }

        /* Moving Background Bubbles */
        .tech-section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.80), rgba(4, 120, 87, 0.10));
            border-radius: 50%;
            z-index: 1;
            animation: floatTechBubble1 12s ease-in-out infinite;
        }

        .tech-section::after {
            content: '';
            position: absolute;
            bottom: -200px;
            left: -100px;
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.25), rgba(4, 120, 87, 0.10));
            border-radius: 50%;
            z-index: 1;
            animation: floatTechBubble2 15s ease-in-out infinite reverse;
        }

        /* Additional floating elements */
        .tech-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .tech-bubble {
            position: absolute;
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.25), rgba(4, 120, 87, 0.10));
            border-radius: 50%;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        .tech-bubble-1 {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 10%;
            animation: floatSmallBubble 8s infinite;
            animation-delay: 0s;
        }

        .tech-bubble-2 {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 15%;
            animation: floatMediumBubble 10s infinite;
            animation-delay: 2s;
        }

        .tech-bubble-3 {
            width: 45px;
            height: 45px;
            bottom: 30%;
            left: 20%;
            animation: floatSmallBubble 7s infinite;
            animation-delay: 4s;
        }

        .tech-bubble-4 {
            width: 100px;
            height: 100px;
            top: 10%;
            right: 30%;
            animation: floatLargeBubble 14s infinite;
            animation-delay: 1s;
        }

        .tech-bubble-5 {
            width: 35px;
            height: 35px;
            bottom: 20%;
            right: 25%;
            animation: floatTinyBubble 6s infinite;
            animation-delay: 3s;
        }

        .tech-bubble-6 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 5%;
    animation: floatMediumBubble 9s infinite;
    animation-delay: 5s;
}

.tech-bubble-7 {
    width: 25px;
    height: 25px;
    top: 75%;
    left: 40%;
    animation: floatTinyBubble 5s infinite;
    animation-delay: 1.5s;
}

.tech-bubble-8 {
    width: 90px;
    height: 90px;
    bottom: 40%;
    right: 10%;
    animation: floatDiagonalBubble 13s infinite; /* New animation */
    animation-delay: 6s;
}

.tech-bubble-9 {
    width: 40px;
    height: 40px;
    top: 15%;
    left: 35%;
    animation: floatSmallBubble 7.5s infinite;
    animation-delay: 2.5s;
}

.tech-bubble-10 {
    width: 55px;
    height: 55px;
    bottom: 15%;
    left: 60%;
    animation: floatMediumBubble 11s infinite;
    animation-delay: 4.5s;
}

.tech-bubble-11 {
    width: 30px;
    height: 30px;
    top: 85%;
    right: 40%;
    animation: floatTinyBubble 6.5s infinite;
    animation-delay: 3.5s;
}

.tech-bubble-12 {
    width: 110px;
    height: 110px;
    top: 50%;
    left: 75%;
    animation: floatPulseBubble 16s infinite; /* New animation */
    animation-delay: 7s;
}



@keyframes floatDiagonalBubble {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) rotate(0deg); 
        opacity: 0.4;
    }
    50% { 
        transform: translateX(30px) translateY(-30px) rotate(180deg); 
        opacity: 0.7;
    }
}

@keyframes floatCircularBubble {
    0% { 
        transform: translateX(0px) translateY(0px) rotate(0deg); 
        opacity: 0.5;
    }
    25% { 
        transform: translateX(15px) translateY(-10px) rotate(90deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translateX(0px) translateY(-20px) rotate(180deg); 
        opacity: 0.6;
    }
    75% { 
        transform: translateX(-15px) translateY(-10px) rotate(270deg); 
        opacity: 0.8;
    }
    100% { 
        transform: translateX(0px) translateY(0px) rotate(360deg); 
        opacity: 0.5;
    }
}

@keyframes floatPulseBubble {
    0%, 100% { 
        transform: scale(1) translateY(0px); 
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.3) translateY(-15px); 
        opacity: 0.9;
    }
}


/* Hero-Wide Floating Bubbles */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: all 0.3s ease;
}

/* Left Side Bubbles (Behind/Around Text Content) */
.hero-bubble-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 5%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(4, 120, 87, 0.06));
    animation: heroFloatLarge 12s infinite;
    animation-delay: 0s;
}

.hero-bubble-2 {
    width: 45px;
    height: 45px;
    top: 35%;
    left: 15%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.10), rgba(5, 150, 105, 0.05));
    animation: heroFloatMedium 8s infinite;
    animation-delay: 2s;
}

.hero-bubble-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 8%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.08));
    animation: heroFloatLarge 10s infinite;
    animation-delay: 4s;
}

.hero-bubble-4 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 25%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(8, 145, 178, 0.06));
    animation: heroFloatSmall 6s infinite;
    animation-delay: 1s;
}

.hero-bubble-5 {
    width: 25px;
    height: 25px;
    bottom: 15%;
    left: 20%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.10), rgba(37, 99, 235, 0.05));
    animation: heroFloatSmall 7s infinite;
    animation-delay: 3s;
}

/* Center Area Bubbles */
.hero-bubble-6 {
    width: 40px;
    height: 40px;
    top: 25%;
    left: 45%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(4, 120, 87, 0.04));
    animation: heroFloatMedium 9s infinite;
    animation-delay: 1.5s;
}

.hero-bubble-7 {
    width: 20px;
    height: 20px;
    bottom: 40%;
    left: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.06));
    animation: heroFloatTiny 5s infinite;
    animation-delay: 2.5s;
}

.hero-bubble-8 {
    width: 35px;
    height: 35px;
    top: 70%;
    left: 40%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.10), rgba(22, 163, 74, 0.05));
    animation: heroFloatMedium 8s infinite;
    animation-delay: 4.5s;
}

/* Right Side Bubbles (Behind/Around Quote Section) */
.hero-bubble-9 {
    width: 70px;
    height: 70px;
    top: 20%;
    right: 10%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.14), rgba(4, 120, 87, 0.07));
    animation: heroFloatLarge 11s infinite;
    animation-delay: 0.5s;
}

.hero-bubble-10 {
    width: 50px;
    height: 50px;
    top: 50%;
    right: 20%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(8, 145, 178, 0.08));
    animation: heroFloatMedium 9s infinite;
    animation-delay: 3.5s;
}

.hero-bubble-11 {
    width: 35px;
    height: 35px;
    bottom: 25%;
    right: 15%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.06));
    animation: heroFloatMedium 7s infinite;
    animation-delay: 1.8s;
}

.hero-bubble-12 {
    width: 25px;
    height: 25px;
    top: 40%;
    right: 5%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.04));
    animation: heroFloatSmall 6s infinite;
    animation-delay: 2.8s;
}

.hero-bubble-13 {
    width: 45px;
    height: 45px;
    bottom: 10%;
    right: 25%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(22, 163, 74, 0.06));
    animation: heroFloatMedium 10s infinite;
    animation-delay: 4.2s;
}

/* Top and Bottom Edge Bubbles */
.hero-bubble-14 {
    width: 30px;
    height: 30px;
    top: 5%;
    left: 60%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.10), rgba(4, 120, 87, 0.05));
    animation: heroFloatSmall 8s infinite;
    animation-delay: 1.2s;
}

.hero-bubble-15 {
    width: 40px;
    height: 40px;
    bottom: 5%;
    left: 70%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.10), rgba(8, 145, 178, 0.05));
    animation: heroFloatMedium 9s infinite;
    animation-delay: 3.8s;
}

/* Enhanced Animation Variations */
@keyframes heroFloatLarge {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-25px) translateX(15px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) translateX(0px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) translateX(-10px) rotate(270deg);
        opacity: 0.9;
    }
}

@keyframes heroFloatMedium {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-20px) translateX(12px) scale(1.1) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translateY(-30px) translateX(-8px) scale(0.9) rotate(240deg);
        opacity: 0.7;
    }
}

@keyframes heroFloatSmall {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) translateX(8px) rotate(180deg);
        opacity: 0.9;
    }
}

@keyframes heroFloatTiny {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-8px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-12px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-6px) scale(1.1);
        opacity: 0.9;
    }
}

/* Interactive Hover Effects */
.hero:hover .hero-bubble {
    animation-play-state: paused;
    transform: scale(1.1) !important;
    opacity: 0.8 !important;
}

/* Ensure content stays above bubbles */
.hero .container {
    position: relative;
    z-index: 2;
}




        /* Bubble Animations */
        @keyframes floatTechBubble1 {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
            }
            33% { 
                transform: translateY(-30px) rotate(120deg); 
            }
            66% { 
                transform: translateY(-15px) rotate(240deg); 
            }
        }

        @keyframes floatTechBubble2 {
            0%, 100% { 
                transform: translateX(0px) translateY(0px) rotate(0deg); 
            }
            50% { 
                transform: translateX(20px) translateY(-25px) rotate(180deg); 
            }
        }

        @keyframes floatSmallBubble {
            0%, 100% { 
                transform: translateY(0px) translateX(0px); 
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-20px) translateX(15px); 
                opacity: 0.8;
            }
        }

        @keyframes floatMediumBubble {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) scale(1); 
                opacity: 0.5;
            }
            50% { 
                transform: translateY(-25px) translateX(-10px) scale(1.1); 
                opacity: 0.7;
            }
        }

        @keyframes floatLargeBubble {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
                opacity: 0.4;
            }
            33% { 
                transform: translateY(-20px) rotate(120deg); 
                opacity: 0.6;
            }
            66% { 
                transform: translateY(-10px) rotate(240deg); 
                opacity: 0.5;
            }
        }

        @keyframes floatTinyBubble {
            0%, 100% { 
                transform: translateY(0px) scale(1); 
                opacity: 0.7;
            }
            50% { 
                transform: translateY(-15px) scale(1.2); 
                opacity: 0.9;
            }
        }

        /* Ensure content is above bubbles */
        .tech-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .tech-text {
            position: relative;
            z-index: 2;
        }

        .tech-visual {
            position: relative;
            z-index: 2;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {

               .hero-bubble-1, .hero-bubble-3, .hero-bubble-9 {
        width: 50px;
        height: 50px;
    }
    
    .hero-bubble-2, .hero-bubble-6, .hero-bubble-10, .hero-bubble-13, .hero-bubble-15 {
        width: 30px;
        height: 30px;
    }
    
    .hero-bubble-4, .hero-bubble-8, .hero-bubble-11, .hero-bubble-14 {
        width: 25px;
        height: 25px;
    }
    
    .hero-bubble-5, .hero-bubble-7, .hero-bubble-12 {
        width: 20px;
        height: 20px;
    }
    
    /* Adjust some positions for mobile layout */
    .hero-bubble-6 {
        left: 35%;
    }
    
    .hero-bubble-7 {
        left: 45%;
    }
    
    .hero-bubble-8 {
        left: 35%;
    }


            .tech-section::before {
                width: 250px;
                height: 250px;
                top: -100px;
                right: -100px;
            }

            .tech-section::after {
                width: 200px;
                height: 200px;
                bottom: -100px;
                left: -50px;
            }

            .tech-bubble-1, .tech-bubble-3, .tech-bubble-5 {
                width: 30px;
                height: 30px;
            }

            .tech-bubble-2 {
                width: 50px;
                height: 50px;
            }

            .tech-bubble-4 {
                width: 60px;
                height: 60px;
            }

            .tech-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 480px) {

            .hero-bubble-5, .hero-bubble-7, .hero-bubble-12, .hero-bubble-14 {
        display: none;
    }
    
    /* Make remaining bubbles even smaller */
    .hero-bubble {
        width: 20px !important;
        height: 20px !important;
    }
    
    .hero-bubble-1, .hero-bubble-3, .hero-bubble-9 {
        width: 35px !important;
        height: 35px !important;
    }

            .tech-section::before,
            .tech-section::after {
                display: none;
            }

            .tech-bubble {
                display: none;
            }
        }

        /* Pause animations on reduced motion preference */
        @media (prefers-reduced-motion: reduce) {
            .tech-section::before,
            .tech-section::after,
            .tech-bubble {
                animation: none;
            }
        }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
#header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo a:focus {
    outline: 2px solid #059669;
    outline-offset: 4px;
    border-radius: 8px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 100px;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: linear-gradient(135deg, #059669, #047857);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #059669;
    transform: translateY(-1px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.client-login-btn {
    background: linear-gradient(135deg, #059669, #047857) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.client-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.client-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.client-login-btn:hover::before {
    left: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 20px 0;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    border-radius: 8px;
    margin: 0 10px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #059669;
    transform: translateX(5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Hero Section with Fixed Layout */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(4, 120, 87, 0.08));
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(4, 120, 87, 0.06));
    border-radius: 50%;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}



.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-highlight {
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    margin-bottom: 60px;
}

.cta-primary {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.4);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 30px;
    border: 2px solid #059669;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #059669;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.cta-secondary:hover::before {
    left: 0;
}

/* Floating Statistics - Enhanced from hero_stats_designs.html */
.floating-stats-section {
    position: relative;
    height: 200px;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.stats-bubbles {
    position: relative;
    height: 100%;
    width: 100%;
}

.stat-bubble {
    position: absolute;
    background: linear-gradient(135deg, #047857, #065f46); 
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: floatBubble 6s ease-in-out infinite;
}

.stat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.4);
    animation-play-state: paused;
}

/* Three Main Bubbles */
.stat-bubble.bubble-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.stat-bubble.bubble-2 {
    width: 130px;
    height: 130px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
    z-index: 3;
}

.stat-bubble.bubble-3 {
    width: 110px;
    height: 110px;
    bottom: 20%; /* Changed from 10% to 20% - move up more */
    right: 15%; /* Changed from 20% to 15% - move left slightly */
    animation-delay: 4s;
}

.stat-value {
    font-size: 1.6rem; /* Increased from 1.3rem */
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem; /* Increased from 0.7rem */
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.2;
}

.growing-badge {
    position: absolute;
    bottom: 5%; /* Changed from 15% to 5% - move down more */
    right: 2%; /* Changed from 5% to 2% - move further right */
    background: linear-gradient(135deg, #047857, #065f46); /* Same as stat bubbles */
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
    animation: gentlePulse 3s ease-in-out infinite;
    z-index: 4;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

@keyframes gentlePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes floatBubble {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

/* Special animation for center bubble */
.stat-bubble.bubble-2 {
    animation: floatBubbleCenter 6s ease-in-out infinite;
}

@keyframes floatBubbleCenter {
    0%, 100% { 
        transform: translate(-50%, -50%); 
    }
    50% { 
        transform: translate(-50%, calc(-50% - 20px)); 
    }
}

/* COMPLETELY FIXED: Hero Visual with Stable Quote Layout */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    /* Add some breathing room */
    padding: 20px;
}

.quote-carousel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 450px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(5, 150, 105, 0.1);
    backdrop-filter: blur(20px);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Add subtle pattern overlay */
    background-image: radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.02) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.02) 0%, transparent 50%);
}

/* Add a subtle border highlight */
.quote-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.3), transparent);
    border-radius: 20px 20px 0 0;
}

.quote-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(15px);
}

.quote-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add quotation marks */
.quote-slide::before {
    content: '';
    font-size: 3rem;
    color: rgba(5, 150, 105, 0.15);
    font-family: 'Georgia', serif;
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
    pointer-events: none;
}

.quote-slide::after {
    content: '';
    font-size: 3rem;
    color: rgba(5, 150, 105, 0.15);
    font-family: 'Georgia', serif;
    position: absolute;
    bottom: 8px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
    transform: rotate(180deg);
}

.quote-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
    position: relative;
    z-index: 2;
    /* Add subtle text shadow for better readability */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.quote-subtext {
    color: #059669;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    font-style: italic;
    margin-top: 8px;
    word-wrap: break-word;
    position: relative;
    z-index: 2;
    /* Add a subtle underline effect */
    position: relative;
}

.quote-subtext::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #059669, transparent);
}

@keyframes floatQuote {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-3px); 
    }
}

.quote-carousel:hover {
    animation: floatQuote 3s ease-in-out infinite;
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Progress indicator dots (optional) */
.quote-carousel::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: rgba(5, 150, 105, 0.2);
    border-radius: 2px;
    animation: progressBar 4s linear infinite;
}

@keyframes progressBar {
    0% { width: 0; background: rgba(5, 150, 105, 0.4); }
    95% { width: 30px; background: #059669; }
    100% { width: 30px; background: rgba(5, 150, 105, 0.2); }
}


/* Coming Soon Modal */
.coming-soon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.coming-soon-modal.active .modal-content {
    transform: scale(1);
}

.modal-content h2 {
    color: #1a202c;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.modal-content p {
    color: #4a5568;
    margin-bottom: 24px;
}

.modal-close {
    background: #059669;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close:hover {
    background: #047857;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.founder-intro {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
}

.credentials {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
    grid-template-columns: 1fr 1fr;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.credential-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #059669, #047857);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.credential-item:hover {
    transform: translateY(-5px);
    border-color: #059669;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.15);
}

.credential-item:hover::before {
    transform: scaleX(1);
}

.credential-item:has(img[alt*="CFP"]) .credential-icon {
    background: white;
    padding: 2px;
}

.credential-icon img[alt*="CFP"] {
    filter: none;
    padding: 0;
    transform: scale(1.2);
}

.credential-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669, #047857);
}

.credential-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain */
    filter: brightness(0) invert(1);
    padding: 1px; /* Add small padding to prevent edge clipping */
}
.credential-item:has(img[alt*="CFP"]) .credential-icon {
    background: white;
    padding: 0px; /* Add padding for CFP logo */
}

.credential-icon img[alt*="CFP"] {
    filter: none;
    padding: 0; /* Remove padding for CFP since container has it */
}

.credential-item h4 {
    color: #1a202c;
    margin-bottom: 4px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.credential-item p {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

blockquote {
    border-left: 4px solid #059669;
    padding-left: 20px;
    font-style: italic;
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.6;
    grid-column: 1 / -1;
    font-weight: 500;
    position: relative;
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.03), transparent);
    padding: 20px;
    border-radius: 12px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.about-image:hover img {
    transform: scale(1.05);
}

.overlay-content {
    text-align: left;
}

.overlay-content h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.btn-overlay {
    background: #059669;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-overlay:hover {
    background: #047857;
    transform: translateY(-2px);
}

/* Process Section */
.process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
}

.process-interactive {
    position: relative;
    padding-top: 30px;
    margin-top: 10px;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 40px;
    margin-top: 20px;
    min-height: 400px;
}

.process-step-card {
    background: white;
    border-radius: 20px;
    padding: 30px 24px 24px 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    height: fit-content;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.process-step-card:hover,
.process-step-card.active {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #059669;
}

.step-number-badge {
    position: absolute;
    top: -22px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #059669;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
    flex: 1;
}

.process-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-dot.active {
    background: linear-gradient(135deg, #059669, #047857);
    transform: scale(1.3);
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.3);
}

.progress-text {
    margin-left: 20px;
    color: #4a5568;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.process-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.process-cta h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.process-cta p {
    color: #4a5568;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.process-cta-btn {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.process-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.process-cta-btn:hover::before {
    left: 100%;
}

/* Vision Mission Section */
.vision-mission {
    padding: 80px 0;
    background: white;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vm-card {
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #059669, #047857);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-card:hover {
    transform: translateY(-8px);
    border-color: #059669;
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.15);
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.vm-card p {
    color: #4a5568;
    line-height: 1.7;
    font-weight: 400;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
}

.services-grid {
    margin-bottom: 50px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-item-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #059669, #047857);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #059669;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 24px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-content h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.service-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
    font-weight: 400;
}

.service-arrow {
    align-self: flex-end;
    color: #059669;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-arrow {
    transform: translateX(8px);
}

.services-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.services-cta h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.services-cta p {
    color: #4a5568;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.services-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.service-cta-btn {
    background: linear-gradient(135deg, #f1f5f9, #f0fdf4);
    color: #059669;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #059669, #047857);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.service-cta-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.service-cta-btn:hover::before {
    left: 0;
}

/* COMPLETELY FIXED: Tech Enabled Section */
.tech-section {
    padding: 80px 0;
    background: white;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-text h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.tech-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: #059669;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
    color: #059669;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #1a202c;
    margin-bottom: 4px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.feature-item p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tech-cta-btn {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25);
}

.tech-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.3);
}

/* COMPLETELY FIXED: Screenshot Carousel */
.tech-visual {
    position: relative;
}

.screenshot-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
    padding: 20px;
}

.screenshot-container {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.screenshot-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.screenshot-slide.active {
    opacity: 1;
}

.screenshot-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    background: #f8fafc;
    /* Ensure images load properly */
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.screenshot-navigation {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.screenshot-dots {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.screenshot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-dot.active {
    background: #059669;
    transform: scale(1.2);
}

.screenshot-dot:hover {
    background: #4a5568;
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    background: white;
    margin-bottom: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
    border-bottom-color: transparent;
    padding: 0 20px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 20px;
    cursor: pointer;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    color: #059669;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    padding-right: 20px;
    font-family: 'Poppins', sans-serif;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-top: 4px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #059669;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 20px 28px 20px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 400;
}

.faq-answer ul {
    padding-left: 24px;
    color: #4a5568;
    margin-bottom: 16px;
}

.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 400;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover {
    transform: scale(1.02);
}

.contact-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover .contact-image {
    transform: scale(1.05);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.1);
    width: 100%;
}

.contact-form h3 {
    color: #059669;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.form-paragraph {
    margin-bottom: 24px;
}

.form-paragraph p {
    color: #2d3748;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

.inline-input {
    border: none;
    border-bottom: 2px solid #e2e8f0;
    padding: 8px 0;
    font-size: 1rem;
    color: #2d3748;
    background: transparent;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 4px;
    font-family: 'Poppins', sans-serif;
}

.inline-input:focus {
    outline: none;
    border-bottom-color: #059669;
}

.inline-input.short {
    width: 60px;
}

.services-textarea {
    width: 100%;
    min-height: 120px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    color: #2d3748;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    margin-top: 12px;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
}

.services-textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 24px;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.contact-item {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #059669, #047857);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item-combined {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 32px;
    border: 2px solid #e2e8f0;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-sub-item {
    flex: 1;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.contact-sub-item:hover {
    background: linear-gradient(135deg, #e6fffa, #dcfce7);
    transform: translateY(-5px);
    border-color: #059669;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
}

.contact-item:hover {
    transform: translateY(-8px);
    border-color: #059669;
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.15);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item i {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.contact-item p {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.contact-item a {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item a:hover {
    color: #047857;
}

.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(5, 150, 105, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.map-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
}

.view-larger-map {
    background: rgba(5, 150, 105, 0.95);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-larger-map:hover {
    background: rgba(4, 120, 87, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    color: white !important;
}

.view-larger-map i {
    font-size: 0.85rem;
}

.contact-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(5, 150, 105, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-cta h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-cta p {
    color: #4a5568;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 400;
}

.contact-cta-btn {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.contact-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.3);
}

.contact-cta-btn:hover::before {
    left: 100%;
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669, #047857, #065f46);
}

footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section {
    position: relative;
}

.footer-section h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.footer-logo img {
    height: 65px;
    width: auto;
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    padding-left: 16px;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #a7f3d0;
    transform: translateX(8px);
}

.footer-links a:hover::before {
    color: #a7f3d0;
    transform: translateX(-4px);
}

.footer-contact p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
}

.footer-contact p:hover {
    color: #a7f3d0;
    transform: translateX(4px);
}

.footer-contact i {
    width: 20px;
    color: #a7f3d0;
    font-size: 1.1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact a:hover {
    color: #a7f3d0;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Enhanced AMFI Section */
.footer-amfi {
    margin: 0 auto 25px auto;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.footer-amfi img {
    height: 50px;
    width: auto;
    background-color: white;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-amfi p {
    max-width: 500px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
}

/* Enhanced Disclosure Section - More Blended Design */
.disclosure-section {
    margin: 25px auto;
    max-width: 600px;
}

.disclosure-toggle {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(3px);
}

.disclosure-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
}

.disclosure-toggle.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.disclosure-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.65rem;
    opacity: 0.5;
}

.disclosure-toggle.active .disclosure-arrow {
    transform: rotate(180deg);
}

.disclosure-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.015);
    border-radius: 0 0 6px 6px;
    backdrop-filter: blur(3px);
}

.disclosure-content.show {
    max-height: 400px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: none;
}

.disclosure-content h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.brokerage-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.brokerage-table th,
.brokerage-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brokerage-table th {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brokerage-table td {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.brokerage-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.brokerage-table tr:last-child td {
    border-bottom: none;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 400;
}

.footer-disclaimer {
    margin-top: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #128c7e, #075e54);
    color: white;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.scroll-to-top {
    position: fixed;
    bottom: 120px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

/* Form Validation Messages */
.success-message {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    display: none;
    border: 2px solid #10b981;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.error-message {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    display: none;
    border: 2px solid #ef4444;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.validation-error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 4px;
    font-weight: 500;
    animation: slideInUp 0.3s ease;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .quote-carousel {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-visual {
        order: -1;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-image {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-amfi {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-amfi p {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 80px;
        padding: 15px 0;
    }
    
    .logo img {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        opacity: 1;
        visibility: visible;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        height: calc(100vh - 80px);
        max-height: calc(100vh - 80px);
        backdrop-filter: blur(15px);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu > li {
        margin-bottom: 8px;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 8px;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 12px 0;
        font-size: 16px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 48px;
        font-weight: 500;
    }
    
    .client-login-btn {
        margin-top: 15px !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 14px 28px !important;
        font-size: 15px !important;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: linear-gradient(135deg, #f8fafc, #f0fdf4);
        border-radius: 12px;
        margin-top: 8px;
        padding: 12px 16px;
        border: none;
        min-width: unset;
        max-height: none;
    }
    
    .dropdown > a {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu a {
        font-size: 14px;
        padding: 8px 0;
        border-bottom: 1px solid #e2e8f0;
        margin: 0;
        border-radius: 0;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        top: 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quote-carousel {
        padding: 28px 24px;
        min-height: 160px;
        max-width: 400px;
        border-radius: 18px;
        box-shadow: 0 6px 24px rgba(5, 150, 105, 0.1), 0 2px 6px rgba(0, 0, 0, 0.03);
    }
    
    .quote-slide {
        padding: 20px;
    }
    
    .quote-slide::before,
    .quote-slide::after {
        font-size: 2.5rem;
    }
    
    .quote-text {
        font-size: 1.05rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .quote-subtext {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .process-step-card {
        min-height: auto;
    }
    
    .vm-grid, 
    .service-items, 
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item-combined {
        flex-direction: column;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 30px;
        right: 30px;
    }
    
    .scroll-to-top {
        bottom: 100px;
        right: 30px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .brokerage-table {
        font-size: 0.85rem;
    }
    
    .brokerage-table th,
    .brokerage-table td {
        padding: 8px 12px;
    }
    
    /* Fixed floating stats for mobile */
    .floating-stats-section {
        height: 280px;
    }
    
    .stat-bubble.bubble-1 {
        width: 100px;
        height: 100px;
    }
    
    .stat-bubble.bubble-2 {
        width: 110px;
        height: 110px;
    }
    
    .stat-bubble.bubble-3 {
        width: 90px;
        height: 90px;
        bottom: 25%;
        right: 12%;
    }
    
.stat-value {
    font-size: 1.2rem; /* Increased from 1rem */
}

.stat-label {
    font-size: 0.7rem; /* Increased from 0.6rem */
}

}

@media (max-width: 480px) {
    .map-container {
        height: 250px;
        border-radius: 16px;
    }
    
    .map-container iframe {
        border-radius: 16px;
    }
    
    .view-larger-map {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-primary,
    .cta-secondary {
        text-align: center;
        justify-content: center;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .inline-input {
        display: block;
        width: 100%;
        margin: 8px 0;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        padding: 12px;
        background: white;
    }
    
    .inline-input.short {
        width: 100%;
    }
    
    .form-paragraph p {
        line-height: 2.2;
    }
    
    .nav-menu {
        padding: 15px;
    }
    
    .nav-menu a {
        font-size: 15px;
        padding: 10px 0;
        min-height: 44px;
    }
    
    .nav-menu > li {
        margin-bottom: 5px;
        padding-bottom: 5px;
    }
    
    .dropdown-menu a {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-amfi {
        padding: 15px;
    }
    
    .footer-amfi p {
        font-size: 0.85rem;
    }
    
    .brokerage-table {
        font-size: 0.8rem;
    }
    
    .disclosure-toggle {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
    
    .floating-stats-section {
        height: 220px;
    }
    
    .stat-bubble.bubble-1 {
        width: 80px;
        height: 80px;
    }
    
    .stat-bubble.bubble-3 {
        width: 75px;
        height: 75px;
        bottom: 30%; /* Move up even more */
        right: 10%;
    }
    
    .stat-bubble.bubble-3 {
        width: 75px;
        height: 75px;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .growing-badge {
        bottom: 10%;
        right: 2%;
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    .quote-carousel {
        padding: 24px 20px;
        min-height: 140px;
        max-width: 340px;
        border-radius: 16px;
    }
    
    .quote-slide {
        padding: 16px;
    }
    
    .quote-slide::before,
    .quote-slide::after {
        font-size: 2rem;
        top: 4px;
        bottom: 4px;
    }
    
    .quote-text {
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 8px;
    }
    
    .quote-subtext {
        font-size: 0.8rem;
        margin-top: 6px;
    }
    
    .quote-subtext::before {
        width: 30px;
    }
    
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Accessibility and Loading States */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 3px solid rgba(5, 150, 105, 0.3);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Print styles */
@media print {
    .whatsapp-float,
    .scroll-to-top,
    #header,
    footer,
    .mobile-menu {
        display: none !important;
    }
    
    .hero {
        padding-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .process-step-card,
    .service-item,
    .vm-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: white;
    }
    
    .cta-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .cta-secondary {
        background: white;
        border: 2px solid #000;
        color: #000;
    }
    
    .section-header h2 {
        color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .whatsapp-float {
        animation: none;
    }
    
    .hero::before,
    .hero::after {
        animation: none;
    }
    
    .stat-bubble {
        animation: none;
    }
    
    .growing-badge {
        animation: none;
    }
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Additional smooth transitions for all interactive elements */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced focus management for better accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Enhanced button states */
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Improved form field states */
input:invalid,
textarea:invalid {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

input:valid,
textarea:valid {
    border-color: #059669;
}

/* Enhanced loading animations */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Performance optimizations */
.hero-visual,
.about-image,
.service-image,
.screenshot-container {
    will-change: transform;
}

.stat-bubble {
    will-change: transform, box-shadow;
}

/* Enhanced hover states for touch devices */
@media (hover: none) {
    .service-item:hover,
    .process-step-card:hover,
    .vm-card:hover {
        transform: none;
    }
    
    .service-item:active,
    .process-step-card:active,
    .vm-card:active {
        transform: scale(0.98);
    }
}
@media (min-width: 1025px) {
    .hero .container {
        gap: 80px; /* Increase gap between content and quote */
    }
    
    .quote-carousel {
        max-width: 480px; /* Slightly larger on desktop */
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bubble {
        animation: none;
    }
}
