
        /* ===== ROOT VARIABLES ===== */
        :root {
            --primary: #4B2364;
            --primary-dark: #3a1b4f;
            --primary-light: #6b3a8a;
            --primary-gradient: linear-gradient(135deg, #4B2364, #6b3a8a);
            --text-dark: #0a0a0a;
            --text-gray: #3d3d3d;
            --text-light: #6b6b6b;
            --bg-light: #f8f6fa;
            --bg-white: #ffffff;
            --border-light: #e8e4ed;
            --shadow-sm: 0 4px 20px rgba(75, 35, 100, 0.06);
            --shadow-md: 0 8px 32px rgba(75, 35, 100, 0.10);
            --shadow-lg: 0 16px 48px rgba(75, 35, 100, 0.12);
            --radius-lg: 32px;
            --radius-md: 24px;
            --radius-sm: 16px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --secondary: #553c9a;
            --accent: #8b5cf6;
            --text: #1f2937;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
  scrollbar-gutter: stable;
}

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 72px;
        }

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

        /* ===== BUTTONS ===== */
        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: default;
            transition: var(--transition);
            box-shadow: 0 12px 28px rgba(75, 35, 100, 0.30);
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(75, 35, 100, 0.35);
        }

        .btn-secondary {
            background: var(--bg-white);
            color: var(--text-dark);
            border: 1.5px solid var(--border-light);
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: default;
            transition: var(--transition);
            display: inline-block;
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: #f5eff9;
            transform: translateY(-3px);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--primary);
            color: var(--primary);
            padding: 10px 26px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            cursor: default;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 8px 24px rgba(75, 35, 100, 0.25);
        }

        /* ===== HERO ===== */
        .hero {
            padding: 72px 0 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(75, 35, 100, 0.05) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .hero .badge {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            background: rgba(75, 35, 100, 0.08);
            padding: 8px 24px;
            border-radius: 60px;
            display: inline-block;
            margin-bottom: 20px;
            letter-spacing: 0.3px;
        }

        .hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            max-width: 820px;
            line-height: 1.15;
            color: var(--text-dark);
        }

        .hero h1 .highlight {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-gray);
            max-width: 640px;
            margin: 16px auto 36px;
            font-weight: 400;
        }

        .hero .cta-group {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* ===== SECTION HEADERS ===== */
        .section-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header .label {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            background: rgba(75, 35, 100, 0.08);
            padding: 6px 20px;
            border-radius: 40px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text-dark);
        }

        .section-sub {
            color: var(--text-gray);
            max-width: 560px;
            font-size: 1.1rem;
            margin-top: 6px;
        }

        /* ===== SERVICES ===== */
        .services {
            padding: 40px 0 50px;
        }

        .services-wrapper {
            background: var(--bg-white);
            padding: 60px 50px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: var(--radius-md);
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .service-card:hover {
            border-color: var(--primary);
            background: rgba(75, 35, 100, 0.03);
            transform: translateY(-4px);
        }

        .service-card i {
            font-size: 2.6rem;
            color: var(--primary);
            display: block;
            margin-bottom: 12px;
            background: rgba(75, 35, 100, 0.06);
            width: 68px;
            height: 68px;
            line-height: 68px;
            border-radius: 50%;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card h4 {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .service-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* ===== WHY CHOOSE - Like Team/Leadership style ===== */
        .why {
            padding: 40px 0 50px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .why-item {
            padding: 34px 24px 30px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .why-item:hover {
            transform: translateY(-6px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .why-item .why-icon {
            width: 72px;
            height: 72px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            color: white;
            font-size: 2rem;
        }

        .why-item h4 {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .why-item p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* ===== STATS ===== */
        .stats {
            padding: 40px 0 30px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            background: var(--primary-gradient);
            padding: 50px 36px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: white;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            margin-top: 4px;
            font-size: 1rem;
        }

        .stat-item i {
            font-size: 2.2rem;
            color: rgba(255, 255, 255, 0.3);
            display: block;
            margin-bottom: 8px;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 50px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .testimonial-wrapper {
            overflow: hidden;
            position: relative;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 30px;
        }

        .testimonial-card {
            flex: 0 0 calc(50% - 15px);
            background: var(--bg-white);
            padding: 36px 30px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            min-width: 0;
        }

        .testimonial-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .testimonial-card .stars {
            color: #f59e0b;
            letter-spacing: 3px;
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        .testimonial-card .quote {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 450;
            margin-bottom: 18px;
            line-height: 1.7;
        }

        .testimonial-card .quote::before {
            content: '"';
            font-size: 2rem;
            color: var(--primary);
            opacity: 0.25;
            margin-right: 4px;
        }

        .testimonial-card .quote::after {
            content: '"';
            font-size: 2rem;
            color: var(--primary);
            opacity: 0.25;
            margin-left: 4px;
        }

        .testimonial-author .name {
            font-weight: 700;
            color: var(--text-dark);
        }

        .testimonial-author .role {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* slider controls */
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 32px;
        }

        .slider-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1.5px solid var(--border-light);
            background: var(--bg-white);
            color: var(--text-dark);
            font-size: 1.2rem;
            cursor: default;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 8px 20px rgba(75, 35, 100, 0.25);
        }

        .slider-dots {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border-light);
            transition: var(--transition);
            cursor: default;
        }

        .slider-dot.active {
            background: var(--primary);
            width: 28px;
            border-radius: 20px;
        }

        /* ===== CTA ===== */
        .cta-final {
            padding: 60px 0 30px;
        }

        .cta-box {
            background: var(--primary-gradient);
            color: white;
            border-radius: var(--radius-lg);
            padding: 64px 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-box h2 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            max-width: 640px;
            position: relative;
        }

        .cta-box .btn-primary {
            background: white;
            color: var(--primary);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
            margin-top: 20px;
            padding: 16px 48px;
            font-weight: 700;
            position: relative;
        }

        .cta-box .btn-primary:hover {
            background: #f5eff9;
            transform: translateY(-3px);
        }

        /* ===== TRUST BADGE ===== */
        .trust-badge {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            padding: 20px 0 10px;
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .trust-badge i {
            color: var(--primary);
            margin-right: 8px;
        }

        .trust-badge span {
            display: flex;
            align-items: center;
        }

        .footer {
            background: var(--primary);
            color: #e5e7eb;
            padding-top: 40px;
        }

        /* GRID */
        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 50px;
            padding: 0 20px;
        }

        /* LOGO */
        .footer-logo img {
            height: 60px;
            margin-bottom: 15px;
            filter: brightness(75)
        }

        /* TEXT */
        .footer-col p {
            font-size: 14px;
            line-height: 1.7;
            color: #d1d5db;
        }

        /* MINI STATS */
        .footer-stats {
            margin-top: 15px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .footer-stats span {
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
        }

        /* HEADINGS */
        .footer-col h3 {
            color: #fff;
            margin-bottom: 18px;
            font-size: 18px;
            position: relative;
        }

        .footer-col h3::after {
            content: "";
            width: 45px;
            height: 3px;
            background: #a78bfa;
            position: absolute;
            bottom: -6px;
            left: 0;
        }

        /* LINKS */
        .footer-col a {
            display: block;
            color: #d1d5db;
            text-decoration: none;
            margin: 10px 0;
            transition: 0.3s ease;
        }

        /* 🔥 Smooth hover */
        .footer-col a:hover {
            color: #fff;
            transform: translateX(6px);
        }

        /* SOCIAL */
        .socials {
            margin-top: 15px;
        }

        .socials a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            margin-right: 10px;

            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: 0.3s;
        }

        /* 🔥 Glow effect */
        .socials a:hover {
            background: #a78bfa;
            box-shadow: 0 0 15px rgba(167, 139, 250, 0.9);
            transform: translateY(-4px);
        }

        /* CONTACT ICONS FIX */
        .footer-col p {
            color: #d1d5db;
        }

        /* icon ko white force */
        .footer-col p i {
            color: #ffffff;
            margin-right: 8px;
        }

        #selected {
            color: #a78bfa;
        }

        /* BOTTOM */
        .footer-bottom {
            text-align: center;
            padding: 25px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #cbd5f5;
        }

        /* 📱 RESPONSIVE */
        @media (max-width: 900px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 500px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }


        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: 1fr 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .testimonial-card {
                flex: 0 0 calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.6rem;
            }

            .cta-box h2 {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
                padding: 36px 24px;
            }

            .cta-box {
                padding: 40px 24px;
            }

            .navbar {
                flex-direction: column;
                align-items: center;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px 28px;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr 1fr;
            }

            .testimonial-card {
                flex: 0 0 100%;
            }

            .testimonial-track {
                gap: 20px;
            }

            .services-wrapper,
            .why-wrapper {
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .trust-badge {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .testimonial-card {
                padding: 24px 20px;
            }

            .services-wrapper,
            .why-wrapper {
                padding: 30px 16px;
            }
        }