        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #8b5cf6;
            --accent: #a855f7;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --light-gray: #e2e8f0;
            --success: #10b981;
            --ai-blue: #3b82f6;
            --ai-purple: #8b5cf6;
            --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
            --gradient-secondary: linear-gradient(135deg, #8b5cf6, #a855f7);
            --gradient-ai: linear-gradient(135deg, #3b82f6, #8b5cf6);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --border-radius: 16px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.7;
            letter-spacing: 0.2px;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
            position: relative;
        }
        
        /* Pastel Gradient Background */
        /* OLD */
/*        .pastel-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #e0f2fe, #f0f9ff, #f9fafb, #fef3fe, #f5f3ff);
            animation: gradientShift 15s ease infinite;
            opacity: 0.3;
        }*/
        /* NEW */
        .pastel-gradient {
            position: fixed;
            inset: 0;
            z-index: -2;
            background:
                radial-gradient(circle at 15% 25%, #ffb6c1, transparent 40%),
                radial-gradient(circle at 85% 30%, #8fd3f4, transparent 40%),
                radial-gradient(circle at 40% 80%, #c3aed6, transparent 40%),
                linear-gradient(135deg, #ffffff, #f5f7fa);
            animation: gradientMove 18s ease infinite;
        }

/*        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }*/
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Floating Digits Background */
        .floating-digits {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .digit {
            position: absolute;
            font-family: 'Courier New', monospace;
            font-size: 200px;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
            animation: floatDigit 15s linear infinite;
        }
        
        @keyframes floatDigit {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--light-gray);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: var(--transition);
        }
        
        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-md);
        }
        
        .navbar-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-link {
            color: var(--dark) !important;
            font-weight: 600;
            font-size: 0.95rem;
            margin: 0 0.5rem;
            position: relative;
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: var(--transition);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }

        h1, h2, h3, h4, h5, h6,
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            letter-spacing: -0.5px;
        }
        
        /* Hero Section */

        /* Sections */
        .section {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        /* Cards */
        .card-modern {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            border: 1px solid var(--light-gray);
            position: relative;
            overflow: hidden;
        }
        
        .card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-ai);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .card-modern:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(99, 102, 241, 0.2);
        }
        
        .card-modern:hover::before {
            transform: scaleX(1);
        }
        
        .card-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            /*background: var(--gradient-primary);*/
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: var(--transition);

            background: linear-gradient(135deg, #ff7eb3, #8b5cf6);
        }
        
        .card-modern:hover .card-icon {
            transform: scale(1.1);
            background: var(--gradient-secondary);
        }
        
        .card-icon i {
/*            font-size: 2rem;
            color: white; */
            font-size: 1.8rem;
            opacity: 0.95;
            color: white;
        }
        
        .card-modern h4 {
            margin-bottom: 1rem;
            color: var(--dark);
            background: linear-gradient(135deg, #ff7eb3, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;

        }
        
        .card-modern p {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* Portfolio Experience - Tabs */
        .portfolio-section {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .portfolio-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: var(--gradient-ai);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .portfolio-header p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .stats-counter {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .stat-item .label {
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }
        
        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        
        .filter-btn {
            background: white;
            border: 1px solid var(--light-gray);
            color: var(--dark);
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .portfolio-item {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--light-gray);
            display: flex;
            align-items: center;
/*            display: none; */
        }
        
/*        .portfolio-item.filtered-in {
            display: flex; /* Show when matches filter */
        }
*/        
        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }
        
        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(99, 102, 241, 0.3);
        }
        
        .portfolio-item:hover::before {
            transform: scaleY(1);
        }
        
        .portfolio-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }
        
        .portfolio-info {
            flex: 1;
        }
        
        .portfolio-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-weight: 600;
        }
        
        .portfolio-item .category {
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .portfolio-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--light-gray);
        }
        
        .portfolio-stats span {
            font-size: 0.85rem;
            color: var(--gray);
        }
        
        /* Load More Button */
        .load-more-btn {
            display: none;
            margin: 2rem auto 0;
            background: var(--gradient-primary);
            color: white;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            transition: var(--transition);
            font-size: 1rem;
            box-shadow: var(--shadow-md);
            cursor: pointer;
        }
        
        .load-more-btn.show {
            display: block;
        }
        
        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background: var(--gradient-secondary);
        }
        
        .portfolio-item.is-hidden {
            display: none !important;
        }
        
        
        /* Certifications - Two Columns */
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .cert-item {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
            border-left: 3px solid var(--primary);
            transition: var(--transition);
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .cert-item:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-md);
        }
        
        .cert-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
            color: white;
        }
        
        .cert-content h5 {
            margin: 0;
            color: var(--dark);
        }
        
        .cert-content p {
            margin: 0;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Team Section */
        .team-section {
            background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .team-carousel {
            position: relative;
            padding: 2rem 0;
        }
        
        .team-member {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--light-gray);
        }
        
        .team-member:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(99, 102, 241, 0.3);
        }
        
        .team-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 4px solid var(--light-gray);
        }
        
        .team-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        
        .team-position {
            font-size: 1rem;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .team-description {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        .carousel-control-team {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            z-index: 10;
        }
        
        .carousel-control-team:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-control-prev-team {
            left: -30px; color: #4f46e5;
        }
        
        .carousel-control-next-team {
            right: -30px; color: #4f46e5;
        }
        
        /* Contact Section - Two Columns */
        .contact-section {
            background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .contact-container {
            display: flex;
            gap: 2rem;
            align-items: stretch;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .contact-left {
            flex: 0 0 60%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 15% 25%, #ffb6c1, transparent 30%),
                radial-gradient(circle at 85% 30%, #8fd3f4, transparent 90%),
                radial-gradient(circle at 40% 80%, #c3aed6, transparent 50%),
                linear-gradient(135deg, #ffffff, #f5f7fa);

        }
        
        .contact-left-content {
            position: relative;
            z-index: 2;
        }
        
        .contact-left h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
            background: linear-gradient(135deg, #ff7eb3, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .contact-left p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: white;
            background: linear-gradient(135deg, #4f46e5, #8547d7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .contact-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .contact-features li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.95);
            background: linear-gradient(135deg, #4696e5, #934fec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .contact-features i {
            margin-right: 1rem;
            font-size: 1.2rem;
            color: white;
        }
        
        .contact-right {
            flex: 0 0 40%;
            background: white;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .contact-detail-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        
        .contact-detail-text h4 {
            margin: 0 0 0.25rem 0;
            color: var(--dark);
        }
        
        .contact-detail-text p {
            margin: 0;
            color: var(--gray);
        }
        
        /* Carousel */

        /* Contact Section */
        .contact-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-ai);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        
        .contact-card:hover::before {
            opacity: 0.1;
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .contact-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .contact-info h4 {
            margin-bottom: 0.5rem;
            color: var(--dark);
            position: relative;
            z-index: 1;
        }
        
        .contact-info p {
            color: var(--gray);
            position: relative;
            z-index: 1;
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,105,180,0.35), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(99,102,241,0.35), transparent 45%),
        linear-gradient(135deg, #466a85, #1b3197);
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 250px;
            background: radial-gradient(circle at top, rgba(99, 102, 241, 0.1), transparent 70%);
        }
        
        .footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer a:hover {
            color: white;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: var(--shadow-lg);
        }
        
        /* AI Elements */
        .ai-badge {
            background: var(--gradient-ai);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 3s ease-in-out infinite;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            .section {
                padding: 4rem 0;
            }
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            .contact-container {
                flex-direction: column;
            }
            .contact-left,
            .contact-right {
                flex: 1;
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .navbar-nav {
                text-align: center;
            }
            .nav-link {
                margin: 0.5rem 0;
            }
            .section-title h2,
            .portfolio-header h2 {
                font-size: 2rem;
            }
            .stats-counter {
                gap: 1.5rem;
            }
            .stat-item .number {
                font-size: 2rem;
            }
            .filter-tabs {
                flex-direction: column;
                align-items: center;
            }
        }
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .btn-gradient {
                width: 100%;
            }
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 15px;
                right: 15px;
            }
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }


        .cert-modern {
            background: linear-gradient(135deg, #f8fafc, #eef2ff);
        }

        .cert-modern-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
        }

        .cert-modern-card {
            background: white;
            border-radius: 18px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 25px 60px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }

        .cert-modern-card i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #ff7eb3, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .cert-modern-card h5 {
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .cert-modern-card span {
            font-size: 0.9rem;
            color: #64748b;
        }

        .cert-modern-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 40px 90px rgba(0,0,0,0.15);
        }


/* =====================================================
   WHO WE ARE – MONSTROID STYLE
===================================================== */

        .who-monstroid {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #ffffff, #f8fafc);
        }

        .who-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* ---------- TEXT ---------- */
        .who-label {
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #6366f1;
            margin-bottom: 1.2rem;
        }

        .who-content h2 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.8rem;
        }

        .who-content h2 span {
            background: linear-gradient(135deg, #ff7eb3, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .who-lead {
            font-size: 1.15rem;
            font-weight: 600;
            color: #334155;
            margin-bottom: 1.5rem;
        }

        .who-content p {
            font-size: 1rem;
            color: #475569;
            margin-bottom: 1.5rem;
        }

        /* ---------- HIGHLIGHTS ---------- */
        .who-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.2rem;
            margin-top: 2.2rem;
        }

        .who-item {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            background: #ffffff;
            padding: 0.9rem 1.2rem;
            border-radius: 14px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .who-item i {
            font-size: 1.3rem;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ---------- VISUAL ---------- */
        .who-visual {
            display: grid;
            gap: 1.5rem;
        }

        .who-card {
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(14px);
            padding: 2.5rem 2.2rem;
            border-radius: 22px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.12);
        }

        .who-card h3 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 0.4rem;
        }

        .who-card p {
            font-size: 0.95rem;
            color: #475569;
        }

        .who-card.accent {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: #ffffff;
        }

        .who-card.accent p {
            color: rgba(255,255,255,0.9);
        }

        /* ---------- BACKGROUND BLOBS ---------- */
        .who-bg {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
        }

        .who-bg-1 {
            width: 380px;
            height: 380px;
            background: rgba(255,126,179,0.35);
            top: -120px;
            left: -120px;
        }

        .who-bg-2 {
            width: 420px;
            height: 420px;
            background: rgba(139,92,246,0.35);
            bottom: -150px;
            right: -150px;
        }
        @media (max-width: 992px) {
            .who-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .who-content h2 {
                font-size: 2.4rem;
            }
        }

    /* =====================================================
    WHAT WE DO – MONSTROID ICON GRID
    ===================================================== */

    .what-monstroid {
        position: relative;
        background: linear-gradient(135deg, #f8fafc, #ffffff);
        overflow: hidden;
    }

    /* Eyebrow text */
    .section-eyebrow {
        display: inline-block;
        font-family: 'Poppins', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #6366f1;
        margin-bottom: 1rem;
    }

    /* Title enhancement */
    .what-monstroid .section-title h2 span {
        background: linear-gradient(135deg, #ff7eb3, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Grid */
    .what-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2.5rem;
        margin-top: 4rem;
    }

    /* Card */
    .what-card {
        background: #ffffff;
        border-radius: 22px;
        padding: 3rem 2.4rem;
        text-align: center;
        box-shadow: 0 20px 55px rgba(0,0,0,0.08);
        transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    /* Gradient top border */
    .what-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .what-card:hover::before {
        opacity: 1;
    }

    .what-card:hover {
        transform: translateY(-14px);
        box-shadow: 0 40px 90px rgba(0,0,0,0.15);
    }

    /* Icon */
    .what-icon {
        width: 68px;
        height: 68px;
        border-radius: 18px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        margin-bottom: 1.8rem;

        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow: 0 18px 40px rgba(99,102,241,0.45);
    }

    /* WRAPPER – KUNCI UTAMA */
    .what-icon .icon-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    /* ICON ITSELF */
    .what-icon i {
        display: block;
        font-size: 1.9rem;
        line-height: 1;
        color: #ffffff;

        /* ⚠️ MAGIC PIXEL FIX (STANDARD TEMPLATE PREMIUM) */
        transform: translateY(1px);
    }

    /* Text */
    .what-card h4 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.9rem;
        color: #0f172a;
    }

    .what-card p {
        font-size: 0.95rem;
        color: #475569;
        line-height: 1.7;
    }

    /* Background glow */
    .what-monstroid::after {
        content: '';
        position: absolute;
        width: 480px;
        height: 480px;
        background: rgba(139,92,246,0.25);
        filter: blur(120px);
        bottom: -200px;
        right: -200px;
        z-index: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .what-grid {
            gap: 1.8rem;
        }

        .what-card {
            padding: 2.4rem 2rem;
        }
    }


/* =====================================================
   PROJECT EXPERIENCE – COUNTER ANIMATION
===================================================== */

    .stats-counter {
        display: flex;
        justify-content: center;
        gap: 4rem;
        margin-top: 3rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        min-width: 200px;
    }
    
    .stat-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 1rem;
        border-radius: 18px;
        background: linear-gradient(135deg, #ff7eb3, #8b5cf6);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 18px 40px rgba(99,102,241,0.45);
    }
    
    .stat-icon i {
        font-size: 1.8rem;
        color: #ffffff;
        line-height: 1;
    }
    
    .stat-item .number {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.6rem;
        font-weight: 800;
        line-height: 1;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .stat-item .suffix {
        font-size: 1.6rem;
        font-weight: 700;
    }
    
    .stat-item .label {
        margin-top: 0.6rem;
        font-size: 0.95rem;
        color: #475569;
        font-family: 'Poppins', sans-serif;
    }
    
    /* Entrance animation */
    .stat-animate {
        opacity: 0;
        transform: translateY(25px);
        transition: all 0.6s ease;
    }
    
    .stat-animate.show {
        opacity: 1;
        transform: translateY(0);
    }
