        :root {
            --bg-dark: #05070f;
            --bg-soft: #0b0f1a;
            --panel: #0f1426;
            --accent: #9358f7;
            --accent-glow: rgba(147, 88, 247, 0.4);
            --accent-gradient: linear-gradient(90deg, #9358f7 0%, #10d7fc 100%);
            --accent-soft: rgba(147, 88, 247, 0.15);
            --text-primary: #E0E0E0;
            --text-secondary: #A0A8C0;
            --text-light: #ffffff;
            --success: #10d7fc;
            --cta-alt: #10d7fc;
            --border: rgba(255, 255, 255, 0.1);
            --silver-glow: rgba(224, 224, 224, 0.15);
            --panel-gradient: linear-gradient(145deg, rgba(15, 20, 38, 0.9), rgba(11, 15, 26, 0.9));
        }

        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        /* CHANGED BODY FONT TO MANROPE */
        body {
            font-family: 'Manrope', sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
            position: relative;
            line-height: 1.7;
            font-weight: 400;
        }

        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background:
                radial-gradient(circle at 20% 10%, rgba(147, 88, 247, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 90%, rgba(16, 215, 252, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 40% 60%, rgba(147, 88, 247, 0.08) 0%, transparent 40%);
            animation: gradientShift 20s ease infinite;
            background-size: 200% 200%;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(5, 7, 15, 0.8);
            backdrop-filter: blur(10px);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-gradient);
            border-radius: 6px;
            border: 2px solid rgba(5, 7, 15, 0.8);
            transition: all 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, #a675f9 0%, #46e1ff 100%);
            transform: scale(1.05);
        }


        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Manrope', sans-serif;
            color: var(--text-light);
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        h1 {
            font-size: clamp(3.2rem, 6vw, 4.5rem);
            line-height: 1.05;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #E0E0E0 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 20px rgba(147, 88, 247, 0.2);
        }

        h2 {
            font-size: clamp(2.2rem, 4vw, 3rem);
            line-height: 1.15;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        /* CHANGED LEAD TO MANROPE */
        .lead {
            font-family: 'Manrope', sans-serif;
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }

        /* TRANSPARENT NAVBAR MODIFICATION */
        .navbar {
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-bottom: none;
            padding: 1.2rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            position: fixed;
            width: 100%;
            top: 0;
        }

        .navbar.scrolled {
            padding: 0.8rem 0;
            background: rgba(5, 7, 15, 0.97);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(25px);
        }

        .navbar-brand {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 1.6rem;
            background: var(--accent-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* CHANGED NAV-LINK TO MANROPE */
        .nav-link {
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
            padding: 0.5rem 1.5rem !important;
            position: relative;
            color: var(--text-secondary) !important;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--text-light) !important;
        }

        /* CHANGED CTA-BUTTON TO MANROPE */
        .cta-button {
            font-family: 'Manrope', sans-serif;
            background: var(--accent-gradient);
            border: none;
            padding: 1rem 2.2rem;
            border-radius: 12px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px var(--accent-glow);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            text-align: center;
            width: auto;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(147, 88, 247, 0.5);
        }

        .button-wrapper {
            display: flex;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6) contrast(0.9) saturate(1.2);
        }

        .hero-overlay {
            position: absolute;
            opacity: 0.8;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(5, 7, 15, 0.85) 10%,
                    rgba(11, 15, 26, 0.75) 80%,
                    rgba(5, 7, 15, 0.95) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1000px;
            margin: 0 auto;
            padding: 3rem 2rem;
            text-align: center;
        }

        /* In your CSS, find the .eyebrow class and adjust the padding */
        .eyebrow {
            font-family: 'Manrope', sans-serif;
            display: inline-block;
            color: #10d7fc;
            /* Keep the color */
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            white-space: nowrap;
        }

        /* CHANGED TRUST-BADGES TO MANROPE */
        .trust-badges {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: nowrap;
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow-x: auto;
        }

        .trust-badges::-webkit-scrollbar {
            display: none;
        }

        .trust-badges::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: var(--accent-gradient);
            border-radius: 1px;
        }

        .trust-badge {
            font-family: 'Manrope', sans-serif;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--text-primary);
            font-size: 0.85rem;
            font-weight: 500;
            padding: 0.8rem 1.2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .trust-badge:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
            border-color: rgba(16, 215, 252, 0.2);
        }

        .trust-badge i {
            color: var(--success) !important;
            font-size: 1.1rem;
            filter: drop-shadow(0 0 8px rgba(16, 215, 252, 0.3));
        }

        .section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.04;
            z-index: 0;
            pointer-events: none;
            filter: blur(20px) brightness(1.2);
        }

        .section>.container {
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        /* CHANGED PREMIUM-CARD TEXT TO MANROPE */
        .premium-card {
            font-family: 'Manrope', sans-serif;
            background: var(--panel-gradient);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .premium-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .premium-card:hover::before {
            transform: scaleX(1);
        }

        .premium-card:hover {
            transform: translateY(-5px);
            /* Changed from -10px to -5px to match first site */
            /* Ensures the border turns purple - EXACT from first website */
            border-color: var(--accent);
            /* Changed from rgba(147, 88, 247, 0.3) to var(--accent) */
            /* Adds a multi-layered purple glow effect - EXACT from first website */
            box-shadow: 0 15px 40px var(--accent-glow), 0 0 15px -5px var(--accent);
            /* Removed the second box-shadow from your second website */
        }

        .stat-container {
            text-align: center;
            padding: 2.5rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            font-family: 'Manrope', sans-serif;
            background: var(--accent-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .stat-number::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        .image-card {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            height: 300px;
            margin-bottom: 2rem;
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .image-card:hover img {
            transform: scale(1.08);
        }

        .image-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: white;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .image-card:hover .image-card-overlay {
            opacity: 1;
        }

        /* CHANGED PROCESS-STEP TEXT TO MANROPE */
        .process-step {
            font-family: 'Manrope', sans-serif;
            position: relative;
            padding: 2.5rem;
            background: var(--panel-gradient);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            text-align: left;
        }

        .process-step:hover {
            border-color: rgba(147, 88, 247, 0.3);
            transform: translateY(-5px);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 50px;
            height: 50px;
            background: var(--accent-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.2rem;
            color: white;
            font-family: 'Manrope', sans-serif;
            box-shadow: 0 8px 25px var(--accent-glow);
        }

        /* CHANGED TESTIMONIAL-CARD TEXT TO MANROPE */
        .testimonial-card {
            font-family: 'Manrope', sans-serif;
            background: var(--panel-gradient);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            right: 2rem;
            font-size: 6rem;
            font-family: 'Manrope', sans-serif;
            color: rgba(255, 255, 255, 0.05);
            line-height: 1;
        }

        /* CHANGED PRICING-CARD TEXT TO MANROPE */
        .pricing-card {
            font-family: 'Manrope', sans-serif;
            background: var(--panel-gradient);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
            text-align: center;
        }

        .pricing-card.featured {
            border: 2px solid var(--accent);
            transform: scale(1.02);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--accent-gradient);
            color: white;
            padding: 0.5rem 2.5rem;
            transform: rotate(45deg);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .price-tag {
            font-size: 3rem;
            font-weight: 900;
            font-family: 'Manrope', sans-serif;
            background: var(--accent-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 1.5rem 0;
            position: relative;
        }

        .price-tag::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        .cta-section {
            position: relative;
            overflow: hidden;
            padding: 6rem 0;
            text-align: center;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: var(--accent-gradient);
            z-index: 1;
        }

        .cta-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        /* CHANGED CONTACT-FORM TEXT TO MANROPE */
        .contact-form {
            font-family: 'Manrope', sans-serif;
            background: var(--panel-gradient);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
        }

        /* CHANGED FORM-CONTROL TO MANROPE */
        .form-control {
            font-family: 'Manrope', sans-serif;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-primary);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            width: 100%;
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(147, 88, 247, 0.2);
            color: var(--text-primary);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        .floating-cta:hover {
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .section {
                padding: 80px 0;
            }

            .trust-badges {
                justify-content: flex-start;
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .trust-badge {
                width: auto;
            }

            .pricing-card.featured {
                transform: none;
                margin: 2rem 0;
            }

            .floating-cta {
                bottom: 1rem;
                right: 1rem;
                left: 1rem;
            }

            .floating-cta .cta-button {
                width: 100%;
                justify-content: center;
            }

            .button-wrapper {
                flex-direction: column;
                gap: 1rem;
            }

            .button-wrapper .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }

        .text-gradient {
            background: var(--accent-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-center {
            text-align: center !important;
        }

        .hover-lift {
            transition: transform 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-5px);
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1001;
        }

        .scroll-progress-bar {
            height: 100%;
            background: var(--accent-gradient);
            width: 0%;
            transition: width 0.1s ease;
        }

        .glow-effect {
            position: relative;
        }

        .glow-effect::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: var(--accent-gradient);
            filter: blur(20px);
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .glow-effect:hover::after {
            opacity: 0.3;
        }

        @keyframes subtlePulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.9;
            }
        }

        .subtle-pulse {
            animation: subtlePulse 3s ease-in-out infinite;
        }

        /* CHANGED LOGO-STRIP TEXT TO MANROPE */
        .logo-strip-section {
            font-family: 'Manrope', sans-serif;
            background: var(--bg-soft);
            position: relative;
            overflow: hidden;
            padding: 4rem 0;
        }

        .logo-strip-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--accent-gradient);
            opacity: 0.3;
        }

        .logo-strip-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        /* Marquee Container */
        .logo-marquee {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        /* Marquee Content */
        .marquee-content {
            display: flex;
            width: fit-content;
            animation: scrollLogos 40s linear infinite;
        }

        .marquee-content:hover {
            animation-play-state: paused;
        }

        /* Individual track */
        .logo-track {
            display: flex;
            gap: 4rem;
            padding: 0 2rem;
            flex-shrink: 0;
            align-items: center;
        }

        /* Logo items - SIMPLIFIED */
        .logo-item {
            flex: 0 0 auto;
        }

        .logo-wrapper {
            width: 200px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 1rem;
        }

        /* Logo image styling - REMOVED ALL FILTERS */
        .logo-img {
            max-width: 100%;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
            opacity: 0.9;
        }

        /* Hover effects - SUBTLE */
        .logo-item:hover .logo-img {
            transform: scale(1.1);
            opacity: 1;
        }

        .logo-item:hover .logo-wrapper {
            transform: translateY(-3px);
        }

        /* Animation for infinite scroll */
        @keyframes scrollLogos {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Divider line */
        .divider-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-top: 4rem;
            opacity: 0.5;
        }

        .line {
            height: 1px;
            width: 100px;
            background: var(--accent-gradient);
        }

        .dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent);
        }

        /* Responsive styles */
        @media (max-width: 1200px) {
            .logo-wrapper {
                width: 140px;
                height: 70px;
            }

            .logo-track {
                gap: 3rem;
            }
        }

        @media (max-width: 992px) {
            .logo-wrapper {
                width: 120px;
                height: 60px;
            }

            .logo-track {
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .logo-strip-section {
                padding: 3rem 0;
            }

            .logo-wrapper {
                width: 100px;
                height: 50px;
                padding: 0.5rem;
            }

            .logo-track {
                gap: 2rem;
                padding: 0 1rem;
            }

            .logo-img {
                max-height: 40px;
            }

            .marquee-content {
                animation: scrollLogos 35s linear infinite;
            }
        }

        @media (max-width: 576px) {
            .logo-wrapper {
                width: 90px;
                height: 45px;
            }

            .logo-track {
                gap: 1.5rem;
            }

            .logo-img {
                max-height: 35px;
            }

            .divider-line {
                margin-top: 3rem;
            }

            .line {
                width: 50px;
            }

            .marquee-content {
                animation: scrollLogos 30s linear infinite;
            }
        }

        /* ======= Portfolio Section Styles ======= */
        .portfolio-section {
            position: relative;
            overflow: hidden;
        }

        .portfolio-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 4rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .section-title-left {
            text-align: left;
        }

        .section-title-left h2 {
            display: inline-block;
            margin-bottom: 0;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.8rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .view-all-btn:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(147, 88, 247, 0.3);
            transform: translateX(5px);
        }

        .view-all-btn .arrow {
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover .arrow {
            transform: translateX(3px);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(2, 300px);
            gap: 2rem;
        }

        .portfolio-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transition: transform 0.6s ease;
            transform-origin: left;
            z-index: 5;
        }

        .portfolio-item:hover::before {
            transform: scaleX(1);
        }

        .portfolio-item.large {
            grid-column: span 6;
            grid-row: span 1;
        }

        .portfolio-item:not(.large) {
            grid-column: span 4;
            grid-row: span 1;
        }

        .portfolio-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .portfolio-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(5, 7, 15, 0.9) 100%);
            z-index: 3;
            opacity: 0.7;
        }

        .portfolio-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            z-index: 4;
            transform: translateY(20px);
            transition: transform 0.6s ease;
        }

        .portfolio-item:hover .portfolio-content {
            transform: translateY(0);
        }

        .portfolio-item:hover .portfolio-video {
            opacity: 1;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 15px 40px var(--accent-glow), 0 0 15px -5px var(--accent);
        }

        .category {
            display: inline-block;
            background: rgba(147, 88, 247, 0.2);
            color: #9358f7;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid rgba(147, 88, 247, 0.3);
        }

        .portfolio-content h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .portfolio-content .client {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .portfolio-grid {
                grid-template-rows: repeat(2, 280px);
                gap: 1.5rem;
            }
        }

        @media (max-width: 992px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 250px);
            }

            .portfolio-item.large,
            .portfolio-item:not(.large) {
                grid-column: span 1;
            }

            .portfolio-item:nth-child(1),
            .portfolio-item:nth-child(2) {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .portfolio-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(5, 250px);
                gap: 1.5rem;
            }

            .portfolio-item.large,
            .portfolio-item:not(.large),
            .portfolio-item:nth-child(1),
            .portfolio-item:nth-child(2) {
                grid-column: span 1;
            }

            .portfolio-content {
                padding: 1.5rem;
            }

            .portfolio-content h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 576px) {
            .portfolio-grid {
                grid-template-rows: repeat(5, 220px);
                gap: 1rem;
            }

            .portfolio-content {
                padding: 1.2rem;
            }

            .portfolio-content h3 {
                font-size: 1.2rem;
            }
        }

        /* ======= WhatsApp Screenshots Marquee Section Styles ======= */
        /* Marquee Animation */
        @keyframes scrollMarquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Pause animation on hover */
        .whatsapp-marquee-track:hover {
            animation-play-state: paused;
        }

        /* Screenshot hover effects */
        .screenshot-container {
            transition: all 0.3s ease !important;
            cursor: pointer;
        }

        .screenshot-container:hover {
            transform: scale(1.05) !important;
            box-shadow: 0 25px 50px rgba(147, 88, 247, 0.5) !important;
            border-color: rgba(147, 88, 247, 0.6) !important;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .whatsapp-screenshot-item {
                width: 240px !important;
            }

            .screenshot-container {
                width: 240px !important;
                height: 480px !important;
            }

            @keyframes scrollMarquee {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(-50%);
                }
            }
        }

        @media (max-width: 576px) {
            .whatsapp-screenshot-item {
                width: 220px !important;
            }

            .screenshot-container {
                width: 220px !important;
                height: 440px !important;
            }

            .screenshot-overlay {
                padding: 1rem !important;
            }
        }

        /* ======= Ends WhatsApp Screenshots Marquee Section Styles ======= */
/* Duplicated scrubber styles removed */

        /* Scrubber Comparison Styles */
        .scrubber-container {
            position: relative;
            width: 100%;
            height: 600px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            cursor: ew-resize;
            user-select: none;
        }

        .video-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .before-layer {
            width: 100%;
            z-index: 2;
            clip-path: inset(0 0 0 0);
        }

        .after-layer {
            z-index: 1;
        }

        .scrub-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .label-badge {
            position: absolute;
            top: 20px;
            padding: 0.5rem 1.5rem;
            background: rgba(5, 7, 15, 0.9);
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .label-badge.before {
            left: 20px;
            border-left: 3px solid #10d7fc;
        }

        .label-badge.after {
            right: 20px;
            border-right: 3px solid #9358f7;
        }

        .scroller-handle {
            position: absolute;
            top: 0;
            left: 50%;
            height: 100%;
            width: 4px;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateX(-50%);
        }

        .handle-circle {
            width: 60px;
            height: 60px;
            background: var(--accent-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(147, 88, 247, 0.5);
            cursor: grab;
            position: relative;
            z-index: 4;
            transition: all 0.3s ease;
        }

        .handle-circle:active,
        .scrubber-container:active .handle-circle {
            cursor: grabbing;
            transform: scale(0.95);
            box-shadow: 0 5px 20px rgba(147, 88, 247, 0.7);
        }

        .handle-circle i {
            color: white;
            font-size: 1.2rem;
            position: absolute;
        }

        .handle-circle .bi-chevron-left {
            left: 5px;
        }

        .handle-circle .bi-chevron-right {
            right: 5px;
        }

        .handle-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            height: 100%;
            width: 2px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            z-index: 3;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .scrubber-container {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            .scrubber-container {
                height: 400px;
            }

            .handle-circle {
                width: 50px;
                height: 50px;
            }

            .label-badge {
                padding: 0.4rem 1.2rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 576px) {
            .scrubber-container {
                height: 350px;
            }

            .label-badge {
                padding: 0.3rem 1rem;
                font-size: 0.75rem;
            }
        }

        /* Ends here */

        /* Team Section Styles */
        .team-member-img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(16, 215, 252, 0.5);
            padding: 3px;
        }

        .team-member-img.accent-border {
            border-color: rgba(147, 88, 247, 0.7);
        }

        .team-role {
            color: var(--success);
            letter-spacing: 1.5px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .team-role.accent {
            color: var(--accent);
        }

        .team-role.light {
            color: var(--text-light);
        }

        .team-connect-btn {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .team-connect-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(147, 88, 247, 0.3);
            transform: translateY(-2px);
        }

        /* Responsive adjustments for team section */
        @media (max-width: 768px) {
            .team-member-img {
                width: 110px;
                height: 110px;
            }
        }

        @media (max-width: 576px) {
            .team-member-img {
                width: 100px;
                height: 100px;
            }
        }

        /* Process Section Styles */
        .process-step-card {
            background: var(--panel-gradient);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            height: 100%;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .process-step-card:hover {
            transform: translateY(-10px);
            border-color: rgba(147, 88, 247, 0.3);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        .process-step-card.featured-process {
            border: 2px solid var(--accent);
            position: relative;
        }

        .process-step-card.featured-process::before {
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--accent-gradient);
            color: white;
            padding: 0.4rem 2.5rem;
            transform: rotate(45deg);
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .process-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.05);
            line-height: 1;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .process-number.accent-number {
            color: rgba(147, 88, 247, 0.15);
        }

        .process-step-card h5 {
            position: relative;
            z-index: 2;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .process-step-card p {
            position: relative;
            z-index: 2;
            font-size: 0.9rem;
        }

        /* Responsive styles for process section */
        @media (max-width: 992px) {
            .process-step-card {
                padding: 2rem 1.2rem;
            }

            .process-number {
                font-size: 3rem;
            }

            .process-step-card.featured-process::before {
                right: -35px;
                padding: 0.35rem 2.2rem;
                font-size: 0.6rem;
            }
        }

        @media (max-width: 768px) {
            .process-step-card {
                padding: 1.8rem 1rem;
            }

            .process-number {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .process-step-card h5 {
                font-size: 1.1rem;
            }

            .process-step-card.featured-process::before {
                right: -40px;
                padding: 0.3rem 2rem;
                font-size: 0.55rem;
                top: 12px;
            }
        }

        @media (max-width: 576px) {
            .process-step-card {
                padding: 1.5rem;
            }

            .process-step-card.featured-process::before {
                right: -45px;
                padding: 0.25rem 1.8rem;
                font-size: 0.5rem;
                top: 10px;
            }
        }

        /* ======= Engagement Section Styles ======= */
        #engagement .badge {
            padding: 0.4rem 1rem;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-radius: 6px;
        }

        #engagement .premium-card {
            padding: 2rem;
        }

        #engagement .premium-card h4 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--text-light);
        }

        #engagement .premium-card .text-secondary.small {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        #engagement ul.list-unstyled li {
            display: flex;
            align-items: flex-start;
            padding: 0.4rem 0;
            font-size: 0.85rem;
            line-height: 1.5;
        }

        #engagement ul.list-unstyled li i {
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        #engagement .cta-button-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        #engagement .cta-button-outline:hover {
            border-color: var(--accent);
            background: rgba(147, 88, 247, 0.05);
            transform: translateY(-2px);
        }

        #engagement .premium-card:hover .cta-button-outline {
            border-color: var(--accent);
        }

        /* Styling for the featured card ribbon */
        #engagement .premium-card[style*="border-color: var(--accent)"] {
            position: relative;
            overflow: hidden;
        }

        #engagement .premium-card[style*="border-color: var(--accent)"]::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-gradient);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            #engagement .premium-card {
                padding: 1.5rem;
            }

            #engagement .premium-card h4 {
                font-size: 1.3rem;
            }

            #engagement .position-absolute.top-0.end-0 span {
                font-size: 0.6rem;
                padding: 0.3rem 2rem;
                right: -30px;
                top: 10px;
            }
        }

        @media (max-width: 768px) {
            #engagement .premium-card {
                padding: 1.5rem;
            }

            #engagement .position-absolute.top-0.end-0 span {
                right: -35px;
                top: 8px;
                padding: 0.2rem 1.8rem;
                font-size: 0.55rem;
            }
        }

        @media (max-width: 576px) {
            #engagement .premium-card {
                padding: 1.2rem;
            }

            #engagement .position-absolute.top-0.end-0 span {
                right: -40px;
                top: 6px;
                padding: 0.15rem 1.5rem;
                font-size: 0.5rem;
            }
        }

        /* ======= Simple Gradient Line Divider ======= */
        .section-line-divider {
            height: 2px;
            width: 80px;
            background: var(--accent-gradient);
            margin: 2rem auto;
            border-radius: 1px;
        }

        /* For left-aligned sections */
        .section-title-left .section-line-divider {
            margin: 2rem 0;
        }

        /* Left-aligned divider for Specialists In section */
        .specialists-divider {
            height: 2px;
            width: 80px;
            background: var(--accent-gradient);
            margin: 1.5rem 0;
            border-radius: 1px;
        }

        /* ======= Universal Secondary Button Style ======= */
        /* ======= Enhanced Secondary Button with Purple Hover ======= */
        .secondary-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.8rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            font-family: 'Manrope', sans-serif;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        /* Purple gradient background on hover */
        .secondary-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    rgba(147, 88, 247, 0.15) 0%,
                    rgba(147, 88, 247, 0.3) 50%,
                    rgba(147, 88, 247, 0.15) 100%);
            transition: left 0.6s ease;
            z-index: -1;
        }

        .secondary-btn:hover::before {
            left: 100%;
        }

        /* Enhanced hover effects */
        .secondary-btn:hover {
            background: rgba(147, 88, 247, 0.1);
            border-color: rgba(147, 88, 247, 0.5);
            transform: translateY(-2px);
            color: var(--text-light);
            text-decoration: none;
            box-shadow:
                0 5px 15px rgba(147, 88, 247, 0.2),
                0 0 0 1px rgba(147, 88, 247, 0.3) inset;
        }

        /* Purple glow effect */
        .secondary-btn:hover {
            position: relative;
        }

        .secondary-btn:hover::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--accent-gradient);
            border-radius: 52px;
            z-index: -2;
            opacity: 0.3;
            filter: blur(8px);
        }

        /* Arrow animation */
        .secondary-btn .btn-arrow {
            transition: all 0.3s ease;
            color: var(--text-light);
        }

        .secondary-btn:hover .btn-arrow {
            transform: translateX(4px);
            color: #9358f7;
            text-shadow: 0 0 8px rgba(147, 88, 247, 0.5);
        }

        /* Icon color on hover */
        .secondary-btn:hover i {
            color: #9358f7 !important;
            transition: color 0.3s ease;
        }

        /* Optional: Active state */
        .secondary-btn:active {
            transform: translateY(0);
            transition: transform 0.1s ease;
        }

        /* Keep original for backward compatibility */
        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.8rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .view-all-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    rgba(147, 88, 247, 0.15) 0%,
                    rgba(147, 88, 247, 0.3) 50%,
                    rgba(147, 88, 247, 0.15) 100%);
            transition: left 0.6s ease;
            z-index: -1;
        }

        .view-all-btn:hover::before {
            left: 100%;
        }

        .view-all-btn:hover {
            background: rgba(147, 88, 247, 0.1);
            border-color: rgba(147, 88, 247, 0.5);
            transform: translateY(-2px);
            box-shadow:
                0 5px 15px rgba(147, 88, 247, 0.2),
                0 0 0 1px rgba(147, 88, 247, 0.3) inset;
        }

        .view-all-btn:hover .arrow {
            transform: translateX(4px);
            color: #9358f7;
            text-shadow: 0 0 8px rgba(147, 88, 247, 0.5);
        }

        .view-all-btn:hover::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--accent-gradient);
            border-radius: 52px;
            z-index: -2;
            opacity: 0.3;
            filter: blur(8px);
        }

        /* ======= MOBILE FIXES ======= */
        @media (max-width: 768px) {

            /* 1. Center ALL headings on mobile */
            h2,
            .section-title-left h2,
            .portfolio-header h2 {
                text-align: center !important;
                display: block !important;
                width: 100%;
            }

            /* 2. Center eyebrow text */
            .section-title-left>div[style*="margin-bottom: 0.8rem;"] {
                display: flex !important;
                justify-content: center !important;
                width: 100%;
            }

            /* 3. Center lead paragraphs */
            .section-title-left .lead,
            .portfolio-header .lead {
                text-align: center !important;
            }

            /* 4. Center line dividers */
            .section-line-divider,
            .specialists-divider {
                margin-left: auto !important;
                margin-right: auto !important;
            }

            /* 5. Stack headers vertically */
            .portfolio-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            /* 6. Make buttons full width */
            .secondary-btn,
            .view-all-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
                margin: 0 auto;
            }
        }

        .logo-white {
            filter: brightness(0) invert(1) !important;
        }

        /* PORTFOLIO HOVER EMERGENCY FIX */
        .portfolio-item {
            transition: all 0.4s ease !important;
        }

        .portfolio-item:hover {
            transform: translateY(-10px) !important;
            border: 2px solid #9358f7 !important;
            box-shadow:
                0 20px 40px rgba(147, 88, 247, 0.4),
                0 0 30px rgba(147, 88, 247, 0.2) !important;
        }

        /* Make sure video shows on hover */
        .portfolio-item:hover .portfolio-video {
            opacity: 1 !important;
            display: block !important;
            visibility: visible !important;
        }

        /* Make sure content moves up */
        .portfolio-item:hover .portfolio-content {
            transform: translateY(0) !important;
            opacity: 1 !important;
        }

        /* Fix for portfolio item hover - REPLACE YOUR EXISTING .portfolio-item:hover RULES */

        .portfolio-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
            transform: translateY(0);
        }

        /* This is the MAIN hover effect - make sure only this one exists */
        .portfolio-item:hover {
            transform: translateY(-10px) scale(1.02) !important;
            border-color: var(--accent) !important;
            box-shadow:
                0 25px 50px rgba(147, 88, 247, 0.3),
                0 15px 30px rgba(0, 0, 0, 0.4),
                inset 0 0 0 1px rgba(147, 88, 247, 0.2) !important;
            z-index: 10;
        }

        /* Video hover effect - make sure this works */
        .portfolio-video {
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-item:hover .portfolio-video {
            opacity: 1 !important;
        }

        /* Content slide-up effect */
        .portfolio-content {
            transform: translateY(30px);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-item:hover .portfolio-content {
            transform: translateY(0) !important;
        }

        /* Top border animation */
        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
            z-index: 5;
        }

        .portfolio-item:hover::before {
            transform: scaleX(1) !important;
        }

        /* Image zoom on hover */
        .portfolio-item:hover .portfolio-image {
            transform: scale(1.05) !important;
            filter: brightness(0.8) contrast(1.1);
        }

        /* QUICK FIX - Process cards hover */
        .process-step-card {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        .process-step-card:hover {
            transform: translateY(-10px) scale(1.02) !important;
            border-color: #9358f7 !important;
            box-shadow:
                0 25px 50px rgba(147, 88, 247, 0.3),
                0 15px 30px rgba(0, 0, 0, 0.4) !important;
        }

        /* Target ALL Connect buttons in the team section */
        #team .premium-card .btn-sm {
            transition: all 0.3s ease !important;
        }

        #team .premium-card .btn-sm:hover {
            background: #0077B5 !important;
            border-color: #ffffff !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3) !important;
        }

        #team .premium-card .btn-sm:hover .bi-linkedin {
            color: white !important;
            transform: scale(1.1);
        }

        /* ======= GUARANTEED MOBILE PORTFOLIO FIX ======= */

        @media (max-width: 768px) {

            /* 1. FIX THE CONTAINER FIRST */
            .portfolio-grid {
                grid-template-rows: repeat(5, 200px) !important;
                gap: 1rem !important;
            }

            .portfolio-item {
                height: 200px !important;
                min-height: 200px !important;
                max-height: 200px !important;
                overflow: hidden !important;
                position: relative !important;
            }

            /* 2. FIX THE CONTENT BOX POSITION */
            .portfolio-content {
                position: absolute !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
                padding: 0.8rem 0.6rem !important;
                background: linear-gradient(to top,
                        rgba(5, 7, 15, 1) 0%,
                        rgba(5, 7, 15, 0.95) 30%,
                        rgba(5, 7, 15, 0.7) 70%,
                        transparent 100%) !important;
                backdrop-filter: blur(3px) !important;
                transform: translateY(0) !important;
                z-index: 10 !important;
                margin: 0 !important;
            }

            /* 3. FIX TEXT SIZES AND OVERFLOW */
            .portfolio-content h3 {
                font-size: 0.85rem !important;
                line-height: 1.1 !important;
                margin-bottom: 0.1rem !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                max-width: 100% !important;
                display: block !important;
                padding: 0 !important;
            }

            .portfolio-content .client {
                font-size: 0.6rem !important;
                line-height: 1 !important;
                margin: 0 !important;
                padding: 0 !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                max-width: 100% !important;
                display: block !important;
                color: rgba(255, 255, 255, 0.8) !important;
            }

            /* 4. FIX CATEGORY BADGE */
            .category {
                font-size: 0.5rem !important;
                padding: 0.1rem 0.4rem !important;
                margin-bottom: 0.2rem !important;
                display: inline-block !important;
                white-space: nowrap !important;
                max-width: 100% !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
            }

            /* 5. ADJUST OVERLAY FOR BETTER TEXT READABILITY */
            .portfolio-overlay {
                background: linear-gradient(to bottom,
                        transparent 0%,
                        transparent 40%,
                        rgba(5, 7, 15, 0.4) 70%,
                        rgba(5, 7, 15, 0.9) 100%) !important;
            }
        }

        /* EXTRA SMALL PHONES */
        @media (max-width: 480px) {
            .portfolio-grid {
                grid-template-rows: repeat(5, 180px) !important;
                gap: 0.8rem !important;
            }

            .portfolio-item {
                height: 180px !important;
                min-height: 180px !important;
                max-height: 180px !important;
            }

            .portfolio-content {
                padding: 0.6rem 0.5rem !important;
            }

            .portfolio-content h3 {
                font-size: 0.75rem !important;
            }

            .portfolio-content .client {
                font-size: 0.55rem !important;
            }

            .category {
                font-size: 0.45rem !important;
                padding: 0.08rem 0.3rem !important;
            }
        }

        /* ======= MOBILE NAVBAR MENU FIX - CLEAN VERSION ======= */

        @media (max-width: 992px) {

            /* 1. Hide the navbar CTA button (Book Strategy Call) */
            .navbar-nav .cta-button {
                display: none !important;
            }

            /* 2. Fix the navbar collapse menu */
            .navbar-collapse {
                background: rgba(5, 7, 15, 0.98) !important;
                backdrop-filter: blur(25px) !important;
                -webkit-backdrop-filter: blur(25px) !important;
                border-radius: 16px !important;
                padding: 1.5rem !important;
                margin-top: 1rem !important;
                border: 1px solid rgba(147, 88, 247, 0.2) !important;
                box-shadow:
                    0 20px 60px rgba(0, 0, 0, 0.7),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
                position: absolute !important;
                top: 100% !important;
                left: 1rem !important;
                right: 1rem !important;
                z-index: 1000 !important;
            }

            /* 3. Clean nav items layout */
            .navbar-nav {
                display: flex !important;
                flex-direction: column !important;
                gap: 0.3rem !important;
                width: 100% !important;
            }

            .nav-item {
                width: 100% !important;
                margin: 0 !important;
            }

            /* 4. Clean nav links - simple and elegant */
            .nav-link {
                color: var(--text-light) !important;
                font-size: 1rem !important;
                font-weight: 500 !important;
                padding: 0.9rem 1.2rem !important;
                text-align: center !important;
                display: block !important;
                width: 100% !important;
                border-radius: 12px !important;
                transition: all 0.3s ease !important;
                background: rgba(255, 255, 255, 0.03) !important;
                border: 1px solid rgba(255, 255, 255, 0.08) !important;
                margin: 0.15rem 0 !important;
            }

            /* 5. Remove the underline effect on mobile */
            .nav-link::before {
                display: none !important;
            }

            /* 6. Active state */
            .nav-link.active {
                background: rgba(147, 88, 247, 0.15) !important;
                border-color: rgba(147, 88, 247, 0.3) !important;
                color: white !important;
                font-weight: 600 !important;
            }

            /* 7. Hover effect */
            .nav-link:hover {
                background: rgba(147, 88, 247, 0.1) !important;
                border-color: rgba(147, 88, 247, 0.25) !important;
                transform: translateY(-1px) !important;
            }

            /* 8. Hide the CTA button that's in the navbar list item */
            .navbar-nav .nav-item.ms-3 {
                display: none !important;
            }

            /* 9. Fix the floating CTA button at bottom */
            .floating-cta {
                display: flex !important;
                justify-content: center !important;
                padding: 0 1rem !important;
            }

            .floating-cta .cta-button {
                width: 100% !important;
                max-width: 300px !important;
                justify-content: center !important;
                margin: 0 auto !important;
            }
        }

        /* Extra small phones */
        @media (max-width: 576px) {
            .navbar-collapse {
                padding: 1rem !important;
                margin-top: 0.8rem !important;
                border-radius: 14px !important;
                left: 0.5rem !important;
                right: 0.5rem !important;
            }

            .nav-link {
                font-size: 0.95rem !important;
                padding: 0.8rem 1rem !important;
            }
        }

        /* ======= MOBILE TRUST BADGES GRID FIX ======= */

        @media (max-width: 768px) {
            .trust-badges {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.8rem !important;
                padding: 1.5rem 0 !important;
                overflow: visible !important;
                width: 100% !important;
                border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
                position: relative !important;
            }

            .trust-badges::before {
                width: 60px !important;
                height: 2px !important;
                top: 0 !important;
            }

            .trust-badge {
                width: 100% !important;
                padding: 0.8rem 0.5rem !important;
                justify-content: center !important;
                flex-direction: column !important;
                gap: 0.5rem !important;
                text-align: center !important;
                white-space: normal !important;
                min-height: 80px !important;
            }

            .trust-badge i {
                font-size: 1.2rem !important;
                margin-bottom: 0.2rem !important;
            }

            .trust-badge span {
                font-size: 0.75rem !important;
                line-height: 1.2 !important;
                display: -webkit-box !important;
                -webkit-line-clamp: 2 !important;
                -webkit-box-orient: vertical !important;
                overflow: hidden !important;
            }
        }

        @media (max-width: 480px) {
            .trust-badges {
                grid-template-columns: 1fr !important;
                gap: 0.6rem !important;
            }

            .trust-badge {
                flex-direction: row !important;
                justify-content: flex-start !important;
                padding: 0.7rem 1rem !important;
                min-height: auto !important;
                text-align: left !important;
            }

            .trust-badge i {
                margin-bottom: 0 !important;
                margin-right: 0.5rem !important;
            }
        }