        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
        
/* ===== CSS Variables ===== */
        :root {
            --primary-color: #0066FF;
            --primary-dark: #0052CC;
            --primary-light: #4D94FF;
            --secondary-color: #00D4AA;
            --accent-color: #FF6B35;
            --light-bg: #FFFFFF;
            --light-bg-secondary: #F8FAFC;
            --light-bg-tertiary: #F1F5F9;
            --card-bg: #FFFFFF;
            --card-bg-hover: #F8FAFC;
            --text-primary: #1E293B;
            --text-secondary: #475569;
            --text-muted: #94A3B8;
            --border-color: #E2E8F0;
            --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
            --gradient-hero: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 50%, #F8FAFC 100%);
            --gradient-glow: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
            --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
            --shadow-glow: 0 0 60px rgba(0, 102, 255, 0.15);
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --font-primary: 'Inter', sans-serif;
            --font-display: 'Space Grotesk', sans-serif;
        }

        /* ===== Reset & Base Styles ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            /* ensure in-page anchors account for fixed navbar */
            scroll-padding-top: 140px;
        }

        body {
            font-family: var(--font-primary);
            background-color: var(--light-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== Navigation ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 5%; /* slightly larger to fit wider logo */
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition-smooth);
            min-height: 120px; /* ensures the navbar has room for the logo */
        }

        .navbar.scrolled {
            padding: 1rem 5%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-soft);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon { display: none; }

        .logo-img {
            width: 230px;
            height: 100px;
            border-radius: 14px;
            display: inline-block;
            object-fit: cover;
            padding: 8px 10px; /* keep rectangular padding */
        }

        /* hide textual logo in navbar */
        .logo-text { display: none; }

        .logo-text {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .logo-text span {
            color: var(--primary-color);
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: var(--transition-smooth);
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-primary);
            color: white !important;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
            transition: var(--transition-smooth);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(0, 102, 255, 0.5);
        }

        .nav-cta::after {
            display: none !important;
        }

        .logout-btn {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #EF4444, #DC2626);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--text-primary);
            transition: var(--transition-smooth);
        }

        /* ===== Hero Section ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 160px 5% 80px; /* increased top padding to clear taller navbar */
            background: var(--gradient-hero);
            overflow: hidden;
        }

        /* Offset for sections when navigating to anchors */
        section { scroll-margin-top: 200px; }

        /* Animated Background Elements */
        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }

        .hero-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .hero-glow-1 {
            top: -200px;
            right: -200px;
            background: rgba(0, 102, 255, 0.2);
        }

        .hero-glow-2 {
            bottom: -300px;
            left: -200px;
            background: rgba(0, 212, 170, 0.15);
            animation-delay: -10s;
        }

        .hero-glow-3 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: rgba(0, 102, 255, 0.08);
            animation-delay: -5s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(50px, -50px) scale(1.1); }
            50% { transform: translate(-30px, 30px) scale(0.95); }
            75% { transform: translate(30px, 50px) scale(1.05); }
        }

        /* Grid Pattern */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }

        /* Floating Particles */
        .particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 50%;
            opacity: 0.4;
            animation: particle-float 15s linear infinite;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
        .particle:nth-child(2) { left: 20%; animation-delay: -2s; animation-duration: 18s; }
        .particle:nth-child(3) { left: 30%; animation-delay: -4s; animation-duration: 22s; }
        .particle:nth-child(4) { left: 40%; animation-delay: -6s; animation-duration: 16s; }
        .particle:nth-child(5) { left: 50%; animation-delay: -8s; animation-duration: 19s; }
        .particle:nth-child(6) { left: 60%; animation-delay: -10s; animation-duration: 21s; }
        .particle:nth-child(7) { left: 70%; animation-delay: -12s; animation-duration: 17s; }
        .particle:nth-child(8) { left: 80%; animation-delay: -14s; animation-duration: 23s; }
        .particle:nth-child(9) { left: 90%; animation-delay: -16s; animation-duration: 15s; }

        @keyframes particle-float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 102, 255, 0.08);
            border: 1px solid rgba(0, 102, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-badge i {
            font-size: 0.75rem;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title .line {
            display: block;
        }

        .hero-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 540px;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: var(--transition-smooth);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 30px rgba(0, 102, 255, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(0, 102, 255, 0.5);
        }

        .btn-secondary {
            background: var(--light-bg);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-soft);
        }

        .btn-secondary:hover {
            background: var(--light-bg-secondary);
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border-color);
            animation: fadeInUp 1s ease-out 1s both;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            max-width: 550px;
        }

        .hero-main-visual {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            background: var(--gradient-primary);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-glow);
            overflow: hidden;
        }

        .hero-main-visual::before {
            content: '';
            position: absolute;
            inset: 2px;
            background: var(--card-bg);
            border-radius: 28px;
        }

        .visual-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 2rem;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 28px;
        }

        .visual-content::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(0, 102, 255, 0.3) 50%, rgba(10, 14, 39, 0.9) 100%);
            border-radius: 28px;
            z-index: -1;
        }

        .visual-icon {
            font-size: 5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.5));
        }

        .visual-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: #FFFFFF;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* Floating Cards */
        .floating-cards-wrapper {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 10;
        }

        .floating-card {
            position: absolute;
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: var(--shadow-medium);
            animation: float-card 6s ease-in-out infinite;
            pointer-events: auto;
            z-index: 10;
        }

        .floating-card-1 {
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 20%;
            right: -5%;
            animation-delay: -2s;
        }

        .floating-card-3 {
            bottom: 5%;
            left: 5%;
            animation-delay: -4s;
        }

        @keyframes float-card {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .floating-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .floating-card-icon.blue {
            background: rgba(0, 102, 255, 0.2);
            color: var(--primary-color);
        }

        .floating-card-icon.green {
            background: rgba(0, 212, 170, 0.2);
            color: var(--secondary-color);
        }

        .floating-card-icon.orange {
            background: rgba(255, 107, 53, 0.2);
            color: var(--accent-color);
        }

        .floating-card-text {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .floating-card-text span {
            display: block;
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        /* Orbit Animation */
        .orbit-container {
            position: absolute;
            width: 120%;
            height: 120%;
            top: -10%;
            left: -10%;
            animation: orbit-rotate 30s linear infinite;
        }

        @keyframes orbit-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .orbit-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--primary-color);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--primary-color);
        }

        .orbit-dot-1 { top: 0; left: 50%; transform: translateX(-50%); }
        .orbit-dot-2 { bottom: 0; left: 50%; transform: translateX(-50%); }
        .orbit-dot-3 { top: 50%; left: 0; transform: translateY(-50%); }
        .orbit-dot-4 { top: 50%; right: 0; transform: translateY(-50%); }

        /* ===== Responsive Design ===== */
        @media (max-width: 1024px) {
            .hero{
                margin-top: 100px;
            }
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero-text {
                order: 1;
            }

            .hero-visual {
                order: 0;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .floating-card-1 {
                left: 0;
            }

            .floating-card-2 {
                right: 0;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.98);
                padding: 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid var(--border-color);
                box-shadow: var(--shadow-medium);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero {
                padding: 100px 5% 60px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
            }

            .stat-item {
                text-align: center;
            }

            .hero-image-container {
                max-width: 350px;
                margin-bottom: 1rem;
            }

            .floating-cards-wrapper {
                position: relative;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
                margin-top: 1.5rem;
            }

            .floating-card {
                position: relative;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                animation: none;
                flex-shrink: 0;
            }

            .hero-visual {
                flex-direction: column;
            }

            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* ===== About Section ===== */
        .about-section {
            padding: 100px 5%;
            background: var(--light-bg);
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 102, 255, 0.08);
            border: 1px solid rgba(0, 102, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* About Company */
        .about-company {
            max-width: 1400px;
            margin: 0 auto 6rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content {
            animation: fadeInUp 1s ease-out;
        }

        .about-content h3 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .about-content p {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-features {
            display: grid;
            gap: 1rem;
            margin-top: 2rem;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: var(--light-bg-secondary);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .about-feature:hover {
            background: var(--card-bg);
            border-color: var(--primary-color);
            transform: translateX(5px);
            box-shadow: var(--shadow-soft);
        }

        .about-feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .about-feature-text h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: var(--text-primary);
        }

        .about-feature-text p {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin: 0;
        }

        .about-image {
            position: relative;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .about-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            opacity: 0.1;
            z-index: 1;
        }

        .about-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            aspect-ratio: 4/3;
        }

        .about-image-badge {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow-medium);
            z-index: 2;
            backdrop-filter: blur(20px);
        }

        .about-image-badge-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .about-image-badge-text {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        /* Mission & Vision */
        .mission-vision {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .mv-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition-smooth);
        }

        .mv-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary-color);
        }

        .mv-card:hover::before {
            transform: scaleX(1);
        }

        .mv-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            background: rgba(0, 102, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .mv-card h3 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .mv-card p {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .mv-list {
            list-style: none;
            display: grid;
            gap: 0.75rem;
        }

        .mv-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9375rem;
            color: var(--text-secondary);
        }

        .mv-list li i {
            color: var(--primary-color);
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        /* Responsive About Section */
        @media (max-width: 1024px) {
            .about-company {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image {
                order: -1;
            }

            .mission-vision {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 60px 5%;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .about-company {
                margin-bottom: 4rem;
            }

            .mv-card {
                padding: 2rem;
            }

            .about-image-badge {
                bottom: 1rem;
                right: 1rem;
                padding: 1rem;
            }

            .about-image-badge-number {
                font-size: 2rem;
            }
        }

        /* ===== Services Section ===== */
        .services-section {
            padding: 100px 5%;
            background: var(--light-bg-secondary);
            position: relative;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition-smooth);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary-color);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-header {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
        }

        .service-title-wrapper h3 {
            font-family: var(--font-display);
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .service-subtitle {
            font-size: 0.9375rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .service-description {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .service-features {
            list-style: none;
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .service-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9375rem;
            color: var(--text-secondary);
            padding: 0.75rem;
            background: var(--light-bg-secondary);
            border-radius: 10px;
            transition: var(--transition-smooth);
        }

        .service-features li:hover {
            background: rgba(0, 102, 255, 0.05);
            transform: translateX(5px);
        }

        .service-features li i {
            color: var(--primary-color);
            margin-top: 0.25rem;
            flex-shrink: 0;
            font-size: 1rem;
        }

        .service-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .service-highlight {
            text-align: center;
            padding: 1rem;
            background: var(--light-bg-secondary);
            border-radius: 12px;
        }

        .service-highlight-number {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .service-highlight-label {
            font-size: 0.8125rem;
            color: var(--text-muted);
        }

        .service-cta {
            margin-top: auto;
            padding-top: 2rem;
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
        }

        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4);
        }

        .service-btn i {
            transition: var(--transition-smooth);
        }

        .service-btn:hover i {
            transform: translateX(5px);
        }

        /* Responsive Services Section */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 60px 5%;
            }

            .service-card {
                padding: 2rem;
            }

            .service-header {
                flex-direction: column;
                gap: 1rem;
            }

            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .service-title-wrapper h3 {
                font-size: 1.5rem;
            }

            .service-highlights {
                grid-template-columns: 1fr;
            }
        }

        /* ===== Scrolling Services Section ===== */
        .scrolling-services-section {
            padding: 80px 0;
            background: var(--light-bg);
            overflow: hidden;
            position: relative;
        }

        .scrolling-services-header {
            text-align: center;
            padding: 0 5%;
            margin-bottom: 3rem;
        }

        .scrolling-services-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .scrolling-services-header p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .scrolling-services-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 0 60px;
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }

        .scrolling-services-track {
            display: flex;
            gap: 2rem;
            /* All items merged: 27 items total (9 × 3 copies) */
            width: max-content;
            animation: scroll-right 140s linear infinite;
            will-change: transform;
            padding: 1rem 0;
        }

        .scrolling-services-track__inner {
            display: flex;
            gap: 2rem;
        }

        @keyframes scroll-right {
            /* Seamless infinite loop: scroll through 9 items then instantly restart */
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-300px * 9 - 2rem * 8)); }
        }

        .scroll-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-soft);
        }

        .scroll-nav-btn:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary-color);
            box-shadow: var(--shadow-medium);
        }

        .scroll-nav-btn.left {
            left: 10px;
        }

        .scroll-nav-btn.right {
            right: 10px;
        }

        .scroll-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .scroll-nav-btn:disabled:hover {
            background: var(--card-bg);
            color: var(--text-primary);
            border-color: var(--border-color);
        }

        .scrolling-service-item {
            flex: 0 0 320px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: var(--transition-smooth);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .scrolling-service-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 102, 255, 0.12);
            border-color: var(--primary-color);
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 212, 170, 0.02) 100%);
        }

        .scrolling-service-icon {
            width: 72px;
            height: 72px;
            border-radius: 18px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: white;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
            transition: var(--transition-smooth);
        }

        .scrolling-service-item:hover .scrolling-service-icon {
            transform: scale(1.05);
            box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
        }

        .scrolling-service-item h3 {
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .scrolling-service-item p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.5;
            flex-grow: 1;
        }

        .scrolling-services-cta {
            text-align: center;
            margin-top: 3rem;
            padding: 0 5%;
        }

        .view-all-services-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 4px 30px rgba(0, 102, 255, 0.4);
            transition: var(--transition-smooth);
        }

        .view-all-services-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(0, 102, 255, 0.5);
        }

        .view-all-services-btn i {
            transition: var(--transition-smooth);
        }

        .view-all-services-btn:hover i {
            transform: translateX(5px);
        }

        /* Responsive Scrolling Services */
        @media (max-width: 768px) {
            .scrolling-services-section {
                padding: 60px 0;
            }

            .scrolling-service-item {
                flex: 0 0 280px;
                padding: 1.5rem;
            }

            .scrolling-service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
            }
        }

        /* ===== Training Highlights Section ===== */
        .training-section {
            padding: 80px 0;
            background: var(--light-bg-secondary);
        }

        .training-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 2rem;
            padding: 0 1rem;
        }

        .training-header h2 {
            font-family: var(--font-display);
            font-size: clamp(1.9rem, 3.2vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .training-header p {
            color: rgba(30, 41, 59, 0.9);
            font-size: 1rem;
            margin: 0 auto;
            max-width: 720px;
        }

        /* Mirror mission/vision grid behavior for Training Highlights */
        .training-container {
            max-width: 1200px;
            margin: 2rem auto 0;
            padding: 0 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            align-items: stretch;
        }

        /* On wide screens, show two larger columns to better fill the layout */
        @media (min-width: 1200px) {
            .training-container { grid-template-columns: repeat(2, 640px); justify-content: center; gap: 3rem; }
        }

        .training-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1rem;
            min-height: 460px; /* larger cards to occupy vertical space */
        }

        .training-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(1);
            transform-origin: left;
            transition: var(--transition-smooth);
        }

        .training-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary-color);
        }

        .training-cta {
            text-align: center;
            margin-top: 2.25rem;
        }

        .view-programs-btn {
            padding: 0.9rem 1.6rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .card-badge { margin-bottom: 0.6rem; }
        .badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.85rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 700;
            background: linear-gradient(90deg, rgba(0, 102, 255, 0.12), rgba(0, 82, 204, 0.06));
            color: var(--primary-dark);
            border: 1px solid rgba(0, 102, 255, 0.06);
        }

        .badge-pill i { color: var(--primary-color); font-size: 1rem; }

        .training-card h3 {
            font-family: var(--font-display);
            margin: 0 0 0.25rem 0;
            font-size: 1.125rem;
            color: var(--text-primary);
        }

        .training-card .muted {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .card-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1rem 0;
            display: grid;
            gap: 0.5rem;
        }

        .card-features li {
            font-size: 0.95rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .card-features li i {
            color: var(--primary-color);
            width: 20px;
            text-align: center;
            font-size: 0.95rem;
        }

        /* Hover micro-animations disabled — Training Highlights now static and fully visible */
        @media (hover: hover) and (pointer: fine) {
            .card-badge,
            .training-card h3,
            .card-features li,
            .card-footer .btn {
                transform: none !important;
                opacity: 1 !important;
                transition: none !important;
            }

            /* Also neutralize any hover state rules */
            .training-card:hover .card-badge,
            .training-card:hover h3,
            .training-card:hover .card-features li,
            .training-card:hover .card-footer .btn {
                transform: none !important;
                opacity: 1 !important;
            }
        }

        .card-footer { display: flex; justify-content: flex-end; }

        .btn.btn-primary {
            padding: 0.75rem 1.25rem;
            border-radius: 14px;
            font-weight: 700;
            text-transform: none;
            letter-spacing: 0.2px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
            box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
            border: none;
        }

        .btn .fa-arrow-right { margin-left: 0.5rem; transition: var(--transition-smooth); }
        .btn:hover .fa-arrow-right { transform: translateX(4px); }

        @media (max-width: 768px) {
            .training-section { padding: 40px 0; }
            .training-container { flex-direction: column; gap: 1rem; }
            .training-card { padding: 1.25rem; }
            .card-footer { justify-content: flex-start; }
        }

        /* ===== Contact Section ===== */
        .contact-section {
            padding: 100px 5%;
            background: var(--light-bg);
            position: relative;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-info h3 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .contact-info p {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .contact-details {
            display: grid;
            gap: 1.5rem;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.5rem;
            background: var(--light-bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            transition: var(--transition-smooth);
        }

        .contact-detail:hover {
            background: var(--card-bg);
            border-color: var(--primary-color);
            transform: translateX(5px);
            box-shadow: var(--shadow-soft);
        }

        .contact-detail-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .contact-detail-text h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .contact-detail-text p {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .contact-detail-text a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .contact-detail-text a:hover {
            color: var(--primary-dark);
        }

        .contact-social {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--light-bg-secondary);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 1.25rem;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .social-link:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow-soft);
        }

        .uch-shop {
            position: relative;
            background: #ffffff;
            padding: 7rem 0 0;
            overflow: hidden;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .uch-shop-bg {
            position: absolute; inset: 0; pointer-events: none; z-index: 0;
            background:
                radial-gradient(ellipse 60% 55% at 95% 10%, rgba(251,191,36,0.07) 0%, transparent 60%),
                radial-gradient(ellipse 50% 50% at 5%  90%, rgba(59,130,246,0.06) 0%, transparent 55%);
        }

        .uch-shop-inner {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        /* ══ TOP SPLIT ══════════════════════════════════════════════ */
        .shop-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            padding-bottom: 6rem;
        }

        .shop-tag {
            display: inline-flex; align-items: center; gap: 0.5rem;
            font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
            text-transform: uppercase; color: #1d4ed8;
            background: #eff6ff; border: 1px solid #bfdbfe;
            padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
        }

        .shop-h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 4.5vw, 3.8rem);
            font-weight: 900; line-height: 1.1;
            color: #0f172a; margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .shop-h2 .ital { font-style: italic; color: #1d4ed8; }

        .shop-lead {
            font-size: 1.0625rem; line-height: 1.8;
            color: #475569; margin-bottom: 2.5rem; max-width: 460px;
        }

        .shop-feats { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2.75rem; }

        .shop-feat {
            display: flex; align-items: flex-start; gap: 1rem;
            padding: 1rem 1.25rem;
            background: #f8fafc; border: 1px solid #e2e8f0;
            border-radius: 14px; transition: border-color 0.2s, box-shadow 0.2s;
        }

        .shop-feat:hover { border-color: #bfdbfe; box-shadow: 0 4px 20px rgba(29,78,216,0.07); }

        .feat-ic {
            width: 40px; height: 40px; flex-shrink: 0;
            border-radius: 10px; display: flex; align-items: center;
            justify-content: center; font-size: 0.95rem;
        }

        .feat-ic.b { background: #eff6ff; color: #1d4ed8; }
        .feat-ic.g { background: #f0fdf4; color: #16a34a; }
        .feat-ic.a { background: #fffbeb; color: #d97706; }
        .feat-ic.r { background: #fdf4ff; color: #9333ea; }

        .feat-body strong { display: block; font-size: 0.9rem; font-weight: 700; color: #0f172a; margin-bottom: 0.15rem; }
        .feat-body span   { font-size: 0.8rem; color: #64748b; line-height: 1.5; }

        .shop-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

        .btn-shop-fill {
            display: inline-flex; align-items: center; gap: 0.6rem;
            padding: 0.875rem 2rem; background: #1d4ed8; color: white;
            border-radius: 100px; font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9375rem; font-weight: 700; text-decoration: none;
            box-shadow: 0 6px 24px rgba(29,78,216,0.3); transition: all 0.25s;
        }

        .btn-shop-fill:hover { background: #1e40af; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(29,78,216,0.38); color: white; text-decoration: none; }

        .btn-shop-line {
            display: inline-flex; align-items: center; gap: 0.6rem;
            padding: 0.875rem 2rem; background: transparent; color: #1d4ed8;
            border: 2px solid #bfdbfe; border-radius: 100px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9375rem; font-weight: 600; text-decoration: none; transition: all 0.25s;
        }

        .btn-shop-line:hover { background: #eff6ff; border-color: #1d4ed8; color: #1d4ed8; transform: translateY(-2px); text-decoration: none; }

        /* ── Right visual ── */
        .shop-split-visual { position: relative; height: 500px; }

        .pcard {
            position: absolute; background: #fff;
            border-radius: 20px; border: 1px solid #e2e8f0;
            box-shadow: 0 8px 40px rgba(15,23,42,0.08); overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* .pcard:hover { transform: translateY(-6px) !important; box-shadow: 0 20px 60px rgba(15,23,42,0.13); } */

        .pcard-main {
            width: 260px; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            animation: pcardFloat 5s ease-in-out infinite; z-index: 3;
        }

        @keyframes pcardFloat {
            0%, 100% { top: 50%; }
            50%       { top: calc(50% - 16px); }
        }

        .pcard-img {
            height: 155px;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            display: flex; align-items: center; justify-content: center;
            font-size: 3.5rem; position: relative;
        }

        .pcard-discount {
            position: absolute; top: 12px; right: 12px;
            background: #ef4444; color: white; font-size: 0.68rem;
            font-weight: 800; padding: 0.2rem 0.55rem; border-radius: 100px;
        }

        .pcard-body { padding: 1.1rem 1.25rem; }
        .pcard-cat  { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #1d4ed8; margin-bottom: 0.3rem; }
        .pcard-name { font-weight: 700; font-size: 0.9375rem; color: #0f172a; margin-bottom: 0.5rem; }
        .pcard-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #0f172a; }
        .pcard-price del { font-size: 0.9rem; color: #94a3b8; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400; margin-left: 0.4rem; }
        .pcard-rating { display: flex; align-items: center; gap: 0.3rem; font-size: 0.78rem; color: #64748b; margin-top: 0.5rem; }
        .pcard-rating i { color: #f59e0b; font-size: 0.7rem; }

        .pcard-sm { width: 185px; padding: 1rem 1.1rem; z-index: 2; }
        .pcard-sm-1 { top: 4%; right: 2%; animation: smF1 6s ease-in-out infinite; }
        .pcard-sm-2 { bottom: 4%; left: 2%; animation: smF2 7s ease-in-out infinite; }
        .pcard-sm-3 { bottom: 22%; right: 4%; animation: smF3 5.5s ease-in-out infinite; }

        @keyframes smF1 { 0%,100%{transform:rotate(-2deg) translateY(0)} 50%{transform:rotate(-1deg) translateY(-10px)} }
        @keyframes smF2 { 0%,100%{transform:rotate(2deg) translateY(0)}  50%{transform:rotate(3deg)  translateY(-12px)} }
        @keyframes smF3 { 0%,100%{transform:rotate(-1deg) translateY(0)} 50%{transform:rotate(-2deg) translateY(-14px)} }

        .sm-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 0.6rem; }
        .sm-label { font-weight: 700; font-size: 0.85rem; color: #0f172a; }
        .sm-sub   { font-size: 0.75rem; color: #64748b; margin-top: 0.15rem; }

        /* ══ CATEGORY GRID ══════════════════════════════════════════ */
        .shop-cats-wrap { padding: 4rem 0 5rem; border-top: 1px solid #f1f5f9; }

        .shop-cats-head {
            display: flex; align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem;
        }

        .shop-cats-head h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 900; color: #0f172a; line-height: 1.15;
        }

        .shop-cats-head h3 span { color: #1d4ed8; }

        .shop-see-all {
            font-size: 0.875rem; font-weight: 600; color: #1d4ed8;
            text-decoration: none; display: flex; align-items: center; gap: 0.4rem;
        }

        .shop-see-all:hover { text-decoration: underline; }

        .cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

        .cat-card {
            background: #f8fafc; border: 1px solid #e2e8f0;
            border-radius: 18px; padding: 1.75rem 1.25rem;
            text-align: center; text-decoration: none;
            transition: all 0.25s ease;
            display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
        }

        .cat-card:hover {
            background: #fff; border-color: #bfdbfe;
            box-shadow: 0 8px 30px rgba(29,78,216,0.10);
            transform: translateY(-4px); text-decoration: none;
        }

        .cat-emoji { font-size: 2rem; line-height: 1; }
        .cat-name  { font-size: 0.82rem; font-weight: 700; color: #0f172a; }
        .cat-count { font-size: 0.72rem; color: #94a3b8; font-weight: 500; }

        /* ══ DARK BANNER ════════════════════════════════════════════ */
        .shop-banner {
            background: #0f172a; position: relative;
            overflow: hidden; padding: 5.5rem 2rem;
        }

        .shop-banner::before {
            content: ''; position: absolute; inset: 0; pointer-events: none;
            background:
                radial-gradient(ellipse 60% 70% at 100% 50%, rgba(29,78,216,0.2) 0%, transparent 60%),
                radial-gradient(ellipse 40% 50% at 0%   30%, rgba(251,191,36,0.08) 0%, transparent 60%);
        }

        .shop-banner::after {
            content: ''; position: absolute; inset: 0; pointer-events: none;
            background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 28px 28px;
        }

        .banner-inner {
            max-width: 1240px; margin: 0 auto;
            display: flex; align-items: center;
            justify-content: space-between;
            gap: 3rem; flex-wrap: wrap;
            position: relative; z-index: 1;
        }

        .banner-kicker {
            font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
            text-transform: uppercase; color: #fbbf24;
            margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem;
        }

        .banner-h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
            color: #fff; line-height: 1.1; margin-bottom: 1rem;
        }

        .banner-h3 em { font-style: italic; color: #93c5fd; }

        .banner-sub { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }

        .banner-stats { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }

        .bstat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
        .bstat-num span { color: #fbbf24; }
        .bstat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; }

        .btn-banner {
            display: inline-flex; align-items: center; gap: 0.65rem;
            padding: 1rem 2.25rem; background: #fff; color: #0f172a;
            border-radius: 100px; font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem; font-weight: 700; text-decoration: none;
            box-shadow: 0 8px 30px rgba(0,0,0,0.25); transition: all 0.25s; white-space: nowrap;
        }

        .btn-banner:hover { background: #eff6ff; color: #1d4ed8; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.3); text-decoration: none; }

        .btn-banner-ghost {
            display: inline-flex; align-items: center; gap: 0.65rem;
            padding: 1rem 2.25rem; background: transparent;
            color: rgba(255,255,255,0.75);
            border: 1.5px solid rgba(255,255,255,0.2); border-radius: 100px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem; font-weight: 600; text-decoration: none;
            transition: all 0.25s; white-space: nowrap; margin-top: 1rem;
        }

        .btn-banner-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.06); text-decoration: none; }

        /* ── Responsive ── */
        @media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

        @media (max-width: 860px) {
            .shop-split { grid-template-columns: 1fr; gap: 3rem; padding-bottom: 4rem; }
            .shop-split-visual { height: 320px; }
            .pcard-sm-1, .pcard-sm-2, .pcard-sm-3 { display: none; }
            .pcard-main { width: 230px; }
        }

        @media (max-width: 640px) {
            .uch-shop { padding: 5rem 0 0; }
            .cat-grid { grid-template-columns: repeat(2, 1fr); }
            .shop-btns { flex-direction: column; }
            .btn-shop-fill, .btn-shop-line { justify-content: center; }
            .banner-stats { gap: 1.5rem; }
            .banner-inner { flex-direction: column; }
        }

        

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow-soft);
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 1rem 1.25rem;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            font-size: 0.9375rem;
            font-family: var(--font-primary);
            color: var(--text-primary);
            background: var(--light-bg);
            transition: var(--transition-smooth);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            background: var(--card-bg);
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-submit {
            padding: 1.125rem 2.5rem;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4);
        }

        .form-submit i {
            transition: var(--transition-smooth);
        }

        .form-submit:hover i {
            transform: translateX(5px);
        }

        /* ===== Footer ===== */
        .footer {
            background: linear-gradient(135deg, #0A0E27 0%, #1E293B 100%);
            color: #E2E8F0;
            padding: 4rem 5% 2rem;
            position: relative;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .footer-logo-icon { display: none; }

        .footer-logo-img {
            width: 200px;
            height: 100px;
            border-radius: 14px;
            display: inline-block;
            object-fit: cover;
            padding: 8px 10px;
        }

        .footer-logo-text {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            color: white;
        }

        .footer-logo-text span {
            color: var(--primary-light);
        }

        .footer-description {
            font-size: 0.9375rem;
            line-height: 1.8;
            color: #94A3B8;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social-link {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94A3B8;
            font-size: 1.125rem;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .footer-social-link:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: #94A3B8;
            text-decoration: none;
            font-size: 0.9375rem;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 0.75rem;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .footer-links a:hover i {
            opacity: 1;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright {
            font-size: 0.875rem;
            color: #94A3B8;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-bottom-links a {
            color: #94A3B8;
            text-decoration: none;
            font-size: 0.875rem;
            transition: var(--transition-smooth);
        }

        .footer-bottom-links a:hover {
            color: var(--primary-light);
        }

        /* Responsive Contact & Footer */
        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 5%;
            }

            .contact-form-wrapper {
                padding: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer {
                padding: 3rem 5% 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 0.75rem;
            }
        }

        /* ══ EXPERTISE CAROUSEL ══ */
.expertise-section {
    padding: 6rem 0 5rem;
    overflow: hidden;
    background: var(--bg, #f0f3ff);
    position: relative;
}

.expertise-header {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.expertise-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(61,90,241,0.08); border: 1px solid rgba(61,90,241,0.18);
    color: #3d5af1; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.45rem 1.1rem; border-radius: 100px; margin-bottom: 1.25rem;
}

.expertise-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: #1a1f3c;
    margin-bottom: 0.75rem; letter-spacing: -0.02em;
}

.expertise-header h2 span {
    background: linear-gradient(90deg, #3d5af1, #7c3aed);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.expertise-header p { font-size: 1rem; color: #6270a0; }

/* Stage */
.expertise-stage {
    position: relative;
    padding: 0 1rem;
}

.carousel-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: white; border: 1.5px solid rgba(61,90,241,0.2);
    color: #3d5af1; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(61,90,241,0.12);
}

.carousel-nav-btn:hover {
    background: #3d5af1; color: white;
    box-shadow: 0 6px 20px rgba(61,90,241,0.3);
    transform: translateY(-50%) scale(1.1);
}

#carouselPrev { left: 0.5rem; }
#carouselNext { right: 0.5rem; }

/* Carousel track */
.expertise-carousel {
    display: flex; gap: 1.25rem;
    overflow-x: auto; overflow-y: visible;
    padding: 1.5rem 3.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.2s;
}

.expertise-carousel::-webkit-scrollbar { display: none; }
.expertise-carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; }

/* Cards */
.expertise-card {
    flex: 0 0 280px;
    background: white;
    border: 1px solid rgba(61,90,241,0.10);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    scroll-snap-align: start;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
    overflow: hidden;
    will-change: transform;
}

/* Coloured top glow */
.expertise-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--card-color, #3d5af1);
    border-radius: 20px 20px 0 0;
}

/* Bottom glow blob */
.expertise-card::after {
    content: '';
    position: absolute; bottom: -30px; right: -30px;
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--card-color, #3d5af1);
    opacity: 0.06; filter: blur(20px);
    transition: opacity 0.35s;
}

.expertise-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.10); }
.expertise-card:hover::after { opacity: 0.12; }

.ec-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
    color: rgba(0,0,0,0.15); margin-bottom: 1rem;
    text-transform: uppercase;
}

.ec-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: color-mix(in srgb, var(--card-color, #3d5af1) 12%, white);
    color: var(--card-color, #3d5af1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1.25rem;
    transition: transform 0.25s;
}

.expertise-card:hover .ec-icon { transform: scale(1.1) rotate(-5deg); }

.expertise-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: #1a1f3c; margin-bottom: 0.5rem; line-height: 1.3;
}

.expertise-card p {
    font-size: 0.8375rem; line-height: 1.65;
    color: #6270a0; margin-bottom: 1.5rem;
}

.ec-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; font-weight: 700;
    color: var(--card-color, #3d5af1);
    text-decoration: none; transition: gap 0.2s;
}

.ec-link:hover { gap: 0.65rem; }

/* Progress */
.carousel-progress-wrap {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem 4rem 0;
}

.carousel-progress-track {
    flex: 1; height: 3px; background: rgba(61,90,241,0.1);
    border-radius: 100px; overflow: hidden;
}

.carousel-progress-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, #3d5af1, #7c3aed);
    border-radius: 100px;
    transition: width 0.15s ease;
}

.carousel-hint {
    font-size: 0.72rem; color: #9ba5cc; font-weight: 500;
    white-space: nowrap; display: flex; align-items: center; gap: 0.35rem;
}

.expertise-cta {
    text-align: center; margin-top: 2.5rem;
}

.view-all-services-btn {
    display: inline-flex; align-items: center; gap: 0.65rem;
    padding: 0.875rem 2rem;
    background: white; color: #3d5af1;
    border: 1.5px solid rgba(61,90,241,0.25); border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif; font-size: 0.9375rem; font-weight: 700;
    text-decoration: none; transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(61,90,241,0.10);
}

.view-all-services-btn:hover {
    background: #3d5af1; color: white; gap: 0.9rem;
    box-shadow: 0 8px 24px rgba(61,90,241,0.28);
}