
        /* ========== CSS VARIABLES ========== */
        :root {
    /* Primary */
    --primary: #25a9d9;
    --primary-dark: #1b81a6;
    --primary-light: #2bb2e3;

    /* Accent */
    --accent: #F59E0B;
    --accent-light: #FCD34D;

    /* Neutrals */
    --dark: #0B1220;
    --dark-secondary: #1A2433;

    /* Text */
    --text: #1F2A37;
    --text-light: #6B7280;

    /* Backgrounds */
    --light: #F5F7FB;
    --white: #FFFFFF;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.25);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 40px rgba(11, 99, 182, 0.25);

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Motion */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

        /* ========== BASE STYLES ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            /*scroll-behavior: smooth;*/
            overflow-x:hidden;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--light);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;

        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            color: var(--dark);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        ::selection {
            background: var(--primary);
            color: var(--white);
        }

        /* ========== CUSTOM SCROLLBAR ========== */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* ========== REUSABLE CLASSES ========== */
        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 6px 12px;
            border-radius: var(--radius-md);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary-custom::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: 0.5s;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
            color: var(--white);
        }

        .btn-primary-custom:hover::before {
            left: 100%;
        }

        .btn-secondary-custom {
            background: var(--white);
            color: var(--primary);
            padding: 14px 32px;
            border-radius: var(--radius-md);
            font-weight: 600;
            border: 2px solid var(--primary);
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary-custom:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            color: var(--dark);
            padding: 14px 32px;
            border-radius: var(--radius-md);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
            color: var(--dark);
        }

        /* ========== GLASSMORPHISM CARD ========== */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: var(--transition);
        }

        .glass-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        /* ========== NAVIGATION ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow-md);
            padding: 12px 0;
        }

        .navbar-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-dark) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand svg {
            width: 40px;
            height: 40px;
            color: var(--primary) !important;
        }

        .nav-link {
            color: var(--text) !important;
            font-weight: 500;
            padding: 10px 20px !important;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary) !important;
        }

        .navbar-toggler {
            border: none;
            padding: 10px;
            background: var(--glass-bg);
            border-radius: var(--radius-sm);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Mobile Navigation */
        @media (max-width: 991px) {
            .navbar-collapse {
                position: fixed;
                top: 0;
                left: -100%;
                width: 280px;
                height: 100vh;
                background: var(--white);
                padding: 100px 30px 30px;
                transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: var(--shadow-lg);
                z-index: 999;
            }

            .navbar-collapse.show {
                left: 0;
            }

            .nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(5px);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 998;
            }

            .nav-overlay.show {
                opacity: 1;
                visibility: visible;
            }

            .navbar-nav {
                flex-direction: column;
                gap: 10px;
            }

            .nav-link {
                padding: 15px 20px !important;
                border-radius: var(--radius-sm);
            }

            .nav-link:hover {
                background: var(--light);
            }

            .close-nav {
                position: absolute;
                top: 25px;
                right: 25px;
                width: 40px;
                height: 40px;
                background: var(--light);
                border: none;
                border-radius: 50%;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: #ffffff;
        }


        /* soft background gradient */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,169,217,0.15), transparent 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 70%);
    z-index: 0;
}


        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            display: none;
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
        }

        .hero-shape-1 {
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            top: -200px;
            right: -200px;
            animation: float 8s ease-in-out infinite;
        }

        .hero-shape-2 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--accent-light), var(--accent));
            bottom: -100px;
            left: -100px;
            animation: float 10s ease-in-out infinite reverse;
        }

        .hero-shape-3 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #A5F3FC, #67E8F9);
            top: 50%;
            left: 30%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(5deg); }
            66% { transform: translate(-20px, 20px) rotate(-5deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary);
            box-shadow: var(--shadow-sm);
            margin-bottom: 1.5rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.4); }
            50% { box-shadow: 0 0 0 15px rgba(13, 148, 136, 0); }
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            margin-top: 5rem;
            padding-top: 10px;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 500px;
            margin: 15px 0;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: norap;
            margin-bottom: 3rem;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Hero SVG Illustration */
        .hero-illustration {
            position: relative;
            z-index: 2;
        }

        .hero-phone {
            max-width: 400px;
            margin: 0 auto;
            filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
        }

        .floating-message {
            position: absolute;
            background: var(--white);
            padding: 15px 20px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: floatMessage 4s ease-in-out infinite;
        }

        .floating-message-1 {
            top: 10%;
            right: -20px;
            animation-delay: 0s;
        }

        .floating-message-2 {
            top: 40%;
            left: -30px;
            animation-delay: 1s;
        }

        .floating-message-3 {
            bottom: 20%;
            right: -10px;
            animation-delay: 2s;
        }

        @keyframes floatMessage {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .msg-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .msg-icon.success { background: rgba(16, 185, 129, 0.1); color: #10B981; }
        .msg-icon.primary { background: rgba(13, 148, 136, 0.1); color: var(--primary); }
        .msg-icon.accent { background: rgba(245, 158, 11, 0.1); color: var(--accent); }

        .msg-text {
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* ========== SECTION TRANSITIONS ========== */
        .section-wrapper {
            position: relative;
            overflow: hidden;
        }

        .section-envelope {
            position: relative;
            transform-origin: center;
        }

        .section-envelope.fold-out {
            animation: envelopeOpen 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .section-envelope.fold-in {
            animation: envelopeClose 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes envelopeOpen {
            0% {
                opacity: 0;
                transform: perspective(1000px) rotateX(-90deg) scale(0.8);
                clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
            }
            50% {
                opacity: 0.5;
                clip-path: polygon(0 25%, 100% 25%, 100% 75%, 0 75%);
            }
            100% {
                opacity: 1;
                transform: perspective(1000px) rotateX(0deg) scale(1);
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
        }

        @keyframes envelopeClose {
            0% {
                opacity: 1;
                transform: perspective(1000px) rotateX(0deg) scale(1);
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            50% {
                opacity: 0.5;
                clip-path: polygon(0 25%, 100% 25%, 100% 75%, 0 75%);
            }
            100% {
                opacity: 0;
                transform: perspective(1000px) rotateX(90deg) scale(0.8);
                clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
            }
        }

        /* ========== ABOUT SECTION ========== */
        .about {
            background: var(--white);
            position: relative;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 991px) {
            .about-content {
                grid-template-columns: 1fr;
            }
        }

        .about-image {
            position: relative;
        }

        .about-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-xl);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .about-card-content {
            position: relative;
            z-index: 1;
        }

        .about-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .about-card h4 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .about-card p {
            color: rgba(255, 255, 255, 0.8);
        }

        .about-points {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
        }

        .about-point {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .about-point-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-point h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .about-point p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* ========== FEATURES SECTION ========== */
        .features {
            background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230D9488' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            transform: rotate(-5deg) scale(1.1);
        }

        .feature-card:hover .feature-icon svg {
            stroke: var(--white);
        }

        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* ========== PRICING / PLANS ========== */
        .pricing {
            background: var(--white);
            position: relative;
        }

        .pricing-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            border: 2px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
            transition: var(--transition);
        }

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.02);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured:hover {
            transform: scale(1.02) translateY(-10px);
        }

        .pricing-header {
            text-align: center;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            margin-bottom: 1.5rem;
        }

        .pricing-name {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark);
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            color: var(--text);
        }

        .pricing-features li svg {
            flex-shrink: 0;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.3) 0%, transparent 70%);
        }

        .testimonials::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
        }

        .testimonials .section-title {
            color: var(--white);
        }

        .testimonials .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .testimonial-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-card {
            flex: 0 0 100%;
            padding: 0 15px;
        }

        @media (min-width: 768px) {
            .testimonial-card {
                flex: 0 0 50%;
            }
        }

        @media (min-width: 992px) {
            .testimonial-card {
                flex: 0 0 33.333%;
            }
        }

        .testimonial-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 2rem;
            height: 100%;
            transition: var(--transition);
        }

        .testimonial-content:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .testimonial-quote {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            color: var(--dark);
        }

        .author-info h5 {
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .author-info span {
            color: var(--primary-light);
            font-size: 0.85rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 3rem;
        }

        .testimonial-nav button {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: var(--white);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-nav button:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-dot.active {
            background: var(--primary);
            width: 30px;
            border-radius: 5px;
        }

        /* ========== CTA SECTION ========== */
        .cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta h2 {
            color: var(--white);
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }

        .cta p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        /* ========== CONTACT SECTION ========== */
        .contact {
            background: var(--light);
            position: relative;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }

        @media (max-width: 991px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .contact-info > p {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item h5 {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .contact-item p {
            color: var(--text-light);
            margin: 0;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 2rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

        .contact-form-wrapper {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 3rem;
            box-shadow: var(--shadow-md);
        }

        .form-floating {
            margin-bottom: 25px;
        }

        .form-floating .form-control {
            border: 2px solid rgba(0, 0, 0, 0.08);
            border-radius: var(--radius-sm);
            padding: 20px 16px;
            font-size: 1rem;
            transition: var(--transition);
            height: auto;
        }

        .form-floating .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
        }

        .form-floating label {
            color: var(--text-light);
            padding: 20px 16px;
        }

        .form-floating textarea.form-control {
            min-height: 150px;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px;
        }

        .footer-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.6);
            max-width: 300px;
        }

        .footer-title {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
            max-width: none;
        }

        /* ========== ANIMATIONS ========== */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-slide-up {
            animation: slideUp 0.6s ease-out forwards;
        }

        .animate-slide-in {
            animation: slideIn 0.6s ease-out forwards;
        }

        .animate-scale-in {
            animation: scaleIn 0.6s ease-out forwards;
        }

        /* ========== REDUCED MOTION ========== */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            html {
                scroll-behavior: auto;
            }
        }

        /* ========== FOCUS STATES ========== */
        *:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
        }



/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.floating-contact.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

/* WhatsApp */
.contact-btn.whatsapp {
    background: #25D366;
}

.contact-btn.whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Call */
.contact-btn.call {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.contact-btn.call:hover {
    transform: translateY(-5px) scale(1.1);
}

.contact-btn::after {
    content: attr(data-label);
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    white-space: nowrap;
}

.contact-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}


/* ========== USE CASES SECTION ========== */
.use-cases {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* CARD */
.use-case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 3.5rem;
}

/* subtle gradient overlay */
.use-case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

/* hover main */
.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.use-case-card:hover::before {
    opacity: 0.05;
}

/* ICON WRAPPER */
.use-case-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

/* ICON */
.use-case-icon i {
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
}

/* keep content visible */
.use-case-card h5,
.use-case-card p {
    opacity: 1 !important;
    transform: none !important;
}

/* create space so icon can grow */
.use-case-card {
    padding-top: 3.5rem;
}



.use-case-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 🔥 HOVER EFFECT MAGIC */
.use-case-card:hover .use-case-icon {
    transform: scale(1.2);
    box-shadow: var(--shadow-glow);
}

/* ICON grows smoothly */
.use-case-card:hover .use-case-icon i {
    transform: scale(1.2) rotate(6deg);
}

/* fade text out smoothly */
.use-case-card:hover h5,
.use-case-card:hover p {
    opacity: 0;
    transform: translateY(10px);
}

/* smooth restore when mouse leaves */
.use-case-card h5,
.use-case-card p,
.use-case-icon {
    transition: all 0.4s ease;
}


/* ========== API SECTION (ENHANCED HOVER) ========== */
.api-section {
    background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 50%, #F0F9FF 100%);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.api-section .section-title {
    color: var(--dark-secondary);
}

.api-section .section-subtitle {
    color: rgba(0,0,0,0.7);
}

.api-image-wrapper {
    position: relative;
    text-align: center;
}

.api-image {
    max-width: 100%;
    animation: floatY 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* API CARD */
.api-card {
    background: rgba(0,0,0,0.01);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* gradient hover effect */
.api-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

/* hover */
.api-card:hover {
    transform: translateX(8px) scale(1.02);
}

.api-card:hover::before {
    opacity: 0.08;
}

/* ICON STYLE */
.api-card h6 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.api-card h6 i {
    margin-right: 10px;
    transition: var(--transition);
}

/* icon animation */
.api-card:hover h6 i {
    transform: scale(1.3) rotate(8deg);
    color: var(--accent);
}

.api-card p {
    color: rgba(0,0,0,0.7);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* FLOAT ANIMATION */
@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}