@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Instrument+Sans:wght@400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* --electric: #00ff88; */
            /* --electric:#f2594b; */
            /* --electric:#F68827; */
            --electric:#F03C61;
            --cyber-blue: #00d4ff;
            --hot-pink: #ff0080;
            --deep-black: #050505;
            --charcoal: #0d0d0d;
            --smoke: #1a1a1a;
            --silver: #a0a0a0;
            --white:#ffffff;
        }

        body {
            font-family: 'Instrument Sans', sans-serif;
            background: var(--deep-black);
            color: white;
            overflow-x: hidden;
            cursor: none;
        }

        /* ===== CUSTOM MAGNETIC CURSOR ===== */
        .cursor {
            position: fixed;
            width: 12px;
            height: 12px;
            background: var(--electric);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            mix-blend-mode: difference;
            transition: transform 0.15s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 1px solid var(--electric);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
            mix-blend-mode: difference;
        }

        .cursor-follower.expand {
            width: 80px;
            height: 80px;
            border-color: var(--hot-pink);
        }

 .spotlight {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;

    background: radial-gradient(
        circle 180px at 50% 50%,
        var(--cyber-blue),
        rgba(0, 0, 0, 0.95) 60%
    );
    opacity: 0.3;
filter: blur(50px);
    mix-blend-mode: screen;
}

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 2rem 0;
            z-index: 1000;
            background: transparent;
            transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .navbar.scrolled {
            background: rgba(5, 5, 5, 0.95);
            padding: 1rem 0;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        }

        .logo {
            display: inline-block;
            position: relative;
        }
        .navbar-brand img{width: 250px;}

        .logo::after {
            content: '●';
            color: var(--electric);
            margin-left: 5px;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 50%, 100% { opacity: 1; }
            25%, 75% { opacity: 0; }
        }


        .nav-link {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            position: relative;
            transition: color 0.3s;
        }
        
        .navbar-nav {gap: 35px;}

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--electric);
            transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .nav-link:hover {
            color: var(--electric);
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--electric);
}
.navbar-nav .nav-link.active::before{width: 100%;}

.nav-link:focus, .nav-link:hover{
    color: var(--electric);
}

        /* ===== HERO SECTION ===== */


.floating-video-container {
                position: absolute;
    top: 100px;
    right: 0px;
    width: 100%;
    perspective: 1500px;
    animation: fadeInUp 20s ease-out 0.5s both;
        }

        .video-wrapper {
            position: relative;
            transform-style: preserve-3d;
            animation: float3D 20s ease-in-out infinite;
        }

        /* This creates the 3D tilted floating effect like Divi */
        /* @keyframes float3D {
            0%, 100% {
                transform: 
                    rotateY(-15deg) 
                    rotateX(5deg) 
                    translateY(0px) 
                    translateZ(0px);
            }
            50% {
                transform: 
                    rotateY(-15deg) 
                    rotateX(5deg) 
                    translateY(-30px) 
                    translateZ(20px);
            }
        } */

        @keyframes float3D {
    0%, 100% {
        transform: 
            rotateY(-15deg) 
            rotateX(5deg) 
            translateY(0px) 
            translateZ(0px);
    }
    25% {
        transform: 
            rotateY(-10deg) 
            rotateX(10deg) 
            translateY(-10px) 
            translateZ(5px);
    }

    75% {
        transform: 
            rotateY(5deg) 
            rotateX(-10deg) 
            translateY(-10px) 
            translateZ(5px);
    }
}


        .video-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 40px 100px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            transform: translateZ(50px);
        }

        .video-frame video {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Decorative glow effect */
        .video-glow {
            position: absolute;
            inset: -50px;
            background: radial-gradient(
                circle at center,
                rgba(0, 212, 170, 0.3) 0%,
                transparent 70%
            );
            filter: blur(40px);
            z-index: -1;
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }



        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero:after{background: linear-gradient(transparent,#000),linear-gradient(50deg,#000 20%,rgba(240, 60, 97,.5));position: absolute;content: '';width: 100%;height: 100%;left: 0%;top: 0%;}

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .mesh-gradient {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.3;
            animation: morphGradient 10s ease-in-out infinite;
        }

        .mesh-1 {
            top: -200px;
            left: -200px;
            background: radial-gradient(circle, var(--electric), transparent);
            animation-delay: 0s;
        }

        .mesh-2 {
            bottom: -200px;
            right: -200px;
            background: radial-gradient(circle, var(--hot-pink), transparent);
            animation-delay: -5s;
        }

        .mesh-3 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, var(--cyber-blue), transparent);
            animation-delay: -2.5s;
        }

        @keyframes morphGradient {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.1); }
            50% { transform: translate(-30px, 30px) scale(0.9); }
            75% { transform: translate(30px, 30px) scale(1.05); }
        }

        .scan-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 255, 136, 0.03) 0px,
                transparent 2px,
                transparent 4px
            );
            pointer-events: none;
            animation: scanMove 8s linear infinite;
        }

        @keyframes scanMove {
            0% { transform: translateY(0); }
            100% { transform: translateY(50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            margin-top: 50px;
        }

        .hero-label {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid var(--electric);
            color: var(--electric);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 2rem;
            animation: slideUp 1s ease;
        }

        .hero-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 69px;
            line-height: 0.9;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: -0.05em;
        }

        .hero-title .line {
            display: block;
            overflow: hidden;
        }

        .hero-title .line span {
            display: inline-block;
            animation: slideUp 1s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .hero-title .line:nth-child(1) span { animation-delay: 0.05s; }
        .hero-title .line:nth-child(2) span { animation-delay: 0.1s; }
        .hero-title .line:nth-child(3) span { animation-delay: 0.2s; }

        .hero-title .outline {
            color: transparent;
            -webkit-text-stroke: 2px white;
        }

        .hero-title .electric {
            color: var(--electric);
            text-shadow: 0 0 40px var(--electric);
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .hero-description {
            max-width: 500px;
            font-size: 1.1rem;
            color: var(--silver);
            line-height: 1.8;
            margin-bottom: 16px;
            animation: fadeIn 1s ease 0.5s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn-primary-custom {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--electric);
            color: var(--white);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            animation: fadeIn 1s ease 0.7s both;
        }

        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: white;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .btn-primary-custom:hover::before {
            width: 300%;
            height: 300%;
        }

        .btn-primary-custom span {
            position: relative;
            z-index: 1;
            
        }
        .btn-primary-custom:hover span{color: var(--electric);}

        .hero-3d-element {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            height: 80vh;
            perspective: 1000px;
            display: none;
        }

        @media (min-width: 992px) {
            .hero-3d-element { display: block; }
        }

        .floating-card {
            position: absolute;
            width: 300px;
            height: 400px;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(255, 0, 128, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transform-style: preserve-3d;
            animation: float3D 6s ease-in-out infinite;
        }

        .floating-card:nth-child(1) {
            top: 10%;
            right: 20%;
            animation-delay: 0s;
        }

        .floating-card:nth-child(2) {
            top: 40%;
            right: 10%;
            animation-delay: -2s;
        }

        .floating-card:nth-child(3) {
            top: 70%;
            right: 30%;
            animation-delay: -4s;
        }

        @keyframes float3D {
            0%, 100% {
                transform: translateY(0) rotateX(0deg) rotateY(0deg);
            }
            25% {
                transform: translateY(-30px) rotateX(5deg) rotateY(10deg);
            }
            50% {
                transform: translateY(-60px) rotateX(-5deg) rotateY(-10deg);
            }
            75% {
                transform: translateY(-30px) rotateX(5deg) rotateY(10deg);
            }
        }



        .home_title span {
    position: relative;
    overflow: hidden;
    display: block;
    line-height: 1.2;
}

.home_title span::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: a-ltr-after 2s cubic-bezier(.77,0,.18,1) forwards;
    transform: translateX(-101%);
    animation-delay: 0.5s; /* Single delay for the one span */
}

.home_title span::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    animation: a-ltr-before 2s cubic-bezier(.77,0,.18,1) forwards;
    transform: translateX(0);
    animation-delay: 0.5s; /* Single delay for the one span */
}

.hero-title .electric {
    color: var(--electric);
    text-shadow: 0 0 40px var(--electric);
}

@keyframes a-ltr-after {
    0% { transform: translateX(-100%) }
    100% { transform: translateX(101%) }
}

@keyframes a-ltr-before {
    0% { transform: translateX(0) }
    100% { transform: translateX(200%) }
}
        /* ===== SCROLL INDICATOR ===== */
        .scroll-indicator {
            position: absolute;
            bottom: 5%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(15px); }
        }

        .scroll-text {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--silver);
        }

        .scroll-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--electric), transparent);
        }

        /* ===== MARQUEE SECTION ===== */
.marquee-section {
    padding: 5rem 0;
    overflow: hidden;
    background: var(--charcoal);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-item {
    padding: 0 4rem;
    display: flex;
    align-items: center;
}

.img_bx {
    width: 150px;
    display: flex;
    align-items: center;
}

.img_bx img {
    max-width: 100%;
    height: auto;
}

.marquee-section:hover .marquee-container {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


        /*============BW Sec==========*/

        .bw_sec{background-size: cover !important;width: 100%;height: 600px;filter: grayscale(100);}


                /* ===== PAIN POINTS SECTION ===== */
        .pain-points-section {
            padding: 100px 0px;
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }

        .pain-points-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(255, 0, 128, 0.05), transparent 50%);
            pointer-events: none;
        }
        .pain-points-section .section-title{font-size: 55px;margin-bottom: 16px;font-weight: 900;}

        .pain-header {
            position: relative;
            z-index: 2;
            margin-bottom: 50px;
        }

        .pain-intro {
    font-size: 1.2rem;
    color: var(--silver);
    line-height: 1.7;
    margin: 0px;
}

        .pain-list {
            position: relative;
            z-index: 2;
        }

        .pain-item {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding: 10px 25px;
            margin-bottom: 1.5rem;
            background: rgba(255, 0, 128, 0.03);
            border: 1px solid rgba(255, 0, 128, 0.2);
            border-left: 3px solid var(--hot-pink);
            transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
            position: relative;
            overflow: hidden;
            min-height: 175px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
   
        }

        /* @keyframes painFloat {
    0%, 100% {
        transform: translateY(0) translateZ(0);
    }
    25% {
        transform: translateY(-10px) translateZ(10px);
    }
    50% {
        transform: translateY(-18px) translateZ(20px);
    }
    75% {
        transform: translateY(-10px) translateZ(10px);
    }
} */

@keyframes painFloat {
    0%, 100% {
        transform: translateY(0) translateZ(0) rotateX(0deg) rotateZ(0deg);
    }
    25% {
        transform: translateY(-8px) translateZ(8px) rotateX(1.5deg) rotateZ(0.6deg);
    }
    50% {
        transform: translateY(-16px) translateZ(16px) rotateX(-1.5deg) rotateZ(-0.6deg);
    }
    75% {
        transform: translateY(-8px) translateZ(8px) rotateX(1.5deg) rotateZ(0.6deg);
    }
}
/* 
.pain_points_content .col-lg-4:nth-child(1) .pain-item{ animation-delay: 0s; }
.pain_points_content .col-lg-4:nth-child() .pain-item{ animation-delay: -1.2s; }
.pain_points_content .col-lg-4:nth-child(3) .pain-item{ animation-delay: -2.4s; }
.pain_points_content .col-lg-4:nth-child(4) .pain-item{ animation-delay: -3.6s; }
.pain_points_content .col-lg-4:nth-child(5) .pain-item{ animation-delay: -4.8s; }
.pain_points_content .col-lg-4:nth-child(6) .pain-item{ animation-delay: -6s; } */


        .pain-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.05), transparent);
            transition: left 0.6s;
        }

        .pain-item:hover {
            transform: translateX(10px);
            background: rgba(255, 0, 128, 0.05);
            border-color: var(--hot-pink);
            box-shadow: -10px 0 30px rgba(255, 0, 128, 0.2);
        }

        .pain-item:hover::before {
            left: 100%;
        }

        .pain-icon {
            font-size: 3rem;
            font-weight: 700;
            color: var(--hot-pink);
            line-height: 1;
            flex-shrink: 0;
            text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
        }

        .pain-content h4 {
            font-size: 1.1rem;
            font-weight: 200;
            color: white;
            line-height: 1.6;
            margin: 0;
        }
        .pain-content h4 span{text-transform: uppercase;font-weight: 900;}

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 100px 0px;
            position: relative;
            overflow: hidden;
        }

        .services-section .section-header,.portfolio-section .section-header{
            margin-bottom: 50px;
        }

        .section-tag {
            font-size: 0.75rem;
            color: var(--electric);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .services-section .section-title,.portfolio-section .section-title{
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2.5rem, 8vw, 5rem);
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 16px;
            font-size: 55px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--silver);
            max-width: 600px;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--smoke);
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
            transform-style: preserve-3d;
                background: rgb(20 30 38 / 50%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.05), transparent);
            transition: left 0.6s;
        }

        .service-card:hover {
            transform: translateY(-10px) rotateX(2deg);
            border-color: var(--electric);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 255, 136, 0.1);
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-number {
            font-family: 'Archivo Black', sans-serif;
            font-size: 6rem;
            color: transparent;
            -webkit-text-stroke: 1px rgba(0, 255, 136, 0.3);
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        .service-name {
            font-family: 'Archivo Black', sans-serif;
            font-size: 26px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .service-desc {
            color: var(--silver);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .service-link {
            color: var(--electric);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            padding: 8rem 0;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 0, 128, 0.05));
            position: relative;
        }

        .stats-grid {
            display: flex;
            justify-content: space-between;
        
        }

        .stat-item {
            text-align: center;
            width: 24%;
        }

        .stat-number {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(3rem, 8vw, 5rem);
            color: var(--electric);
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 40px rgba(240, 60, 97, 0.5);
        }

        .stat-number:hover {
    text-shadow: 2px 2px 40px var(--cyber-blue);
    color: var(--cyber-blue);
}

        .stat-label {
            font-size: 0.9rem;
            color: var(--silver);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
.stat-number span {
  display: inline-block;
}

.suffix {
  margin-left: 4px;
}

        /* ===== PORTFOLIO SECTION ===== */
        .portfolio-section {
            padding: 100px 0px;
        }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  grid-auto-rows: 320px; /* SAME height */
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Row 1: 60% / 40% */
.portfolio-item:nth-child(1) {
  grid-column: span 7;
}

.portfolio-item:nth-child(2) {
  grid-column: span 5;
}

/* Row 2: 40% / 60% */
.portfolio-item:nth-child(3) {
  grid-column: span 5;
}

.portfolio-item:nth-child(4) {
  grid-column: span 7;
}


        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
            object-position: top;
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 35%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: opacity 0.6s;
        }

        .portfolio-overlay p{font-size: 20px;color: var(--electric);font-weight: 900;}

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-tag {
            font-size: 0.75rem;
            color: var(--electric);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.5rem;
        }

        .portfolio-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 2rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .portfolio-metric {
            display: flex;
            gap: 2rem;
        }

        .metric span {
            font-family: 'Archivo Black', sans-serif;
            color: var(--electric);
            font-size: 1.5rem;
        }

        .metric p {
            color: var(--silver);
            font-size: 0.85rem;
            margin: 0;
        }




        /*==============Process Section===========*/

 .process-section {
            padding: 100px 0px;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 0, 128, 0.05));
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.03), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.03), transparent 40%);
            pointer-events: none;
        }

        .container-fluid {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-tag {
            display: inline-block;
            color: var(--electric);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .section-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }

        .section-subtitle {
            color: var(--silver);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .timeline-zigzag {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .timeline-track {
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 4px;
            background: linear-gradient(to right, 
                rgba(0, 255, 136, 0.2) 0%, 
                rgba(0, 212, 255, 0.5) 50%, 
                rgba(0, 255, 136, 0.2) 100%);
            transform: translateY(-50%);
            z-index: 1;
        }

        .timeline-track::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(to right, var(--electric), var(--cyber-blue), var(--electric));
            animation: trackProgress 3s ease-out forwards;
            box-shadow: 0 0 30px var(--electric);
        }

        @keyframes trackProgress {
            to { width: 100%; }
        }

        .timeline-step {
            position: relative;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeSlideIn 0.8s ease forwards;
        }

        .timeline-step:last-child {
            margin-bottom: 0;
        }
        .timeline_num_area{display: flex;flex-direction: column;align-items: center;position: relative;}

        .timeline-step:nth-child(2) { animation-delay: 0.2s; }
        .timeline-step:nth-child(3) { animation-delay: 0.4s; }
        .timeline-step:nth-child(4) { animation-delay: 0.6s; }
        .timeline-step:nth-child(5) { animation-delay: 0.8s; }
        .timeline-step:nth-child(6) { animation-delay: 1s; }

        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .timeline-step.top {
            grid-template-areas: "content-area node connector";
        }

        .timeline-step.bottom {
            grid-template-areas: "connector node content-area";
        }

        .timeline-content {
            grid-area: content-area;
        }

        .timeline-connector {
            grid-area: connector;
            width: 2px;
            height: 200px;
            background: linear-gradient(to bottom, var(--electric) 0%, transparent 100%);
            position: relative;
            align-self: center;
        }

        .timeline_img {
    display: flex;
    justify-content: center;
}
.timeline_img img {
    object-fit: cover;
    height: 295px;

}

 .process-section .timeline-content {
    height: 100%;
    display: flex;
    align-items: center;
}

       
        /* .timeline-step.bottom .timeline-connector {
            background: linear-gradient(to top, var(--electric) 0%, transparent 100%);
        } */

        .timeline-node {
            grid-area: node;
            width: 80px;
            height: 80px;
            background: var(--deep-black);
            border: 3px solid var(--electric);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 3;
            transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
            box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
            animation: nodePulse 2s ease-in-out infinite;
                position: absolute;
    top: 50px;
        }

        @keyframes nodePulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7),
                            0 0 30px rgba(0, 255, 136, 0.3);
            }
            50% {
                box-shadow: 0 0 0 20px rgba(0, 255, 136, 0),
                            0 0 50px rgba(0, 255, 136, 0.6);
            }
        }

        .timeline-step:hover .timeline-node {
            transform: scale(1.2) rotate(360deg) ;
            border-color: var(--cyber-blue);
            box-shadow: 0 0 0 30px rgba(0, 255, 136, 0.1),
                        0 0 80px var(--electric);
        }

        .node-inner {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.8rem;
            color: var(--electric);
            transition: all 0.3s;
        }

        .timeline-step:hover .node-inner {
            color: var(--cyber-blue);
            text-shadow: 0 0 20px var(--cyber-blue);
        }

        .content-card {
            background: var(--smoke);
            border: 1px solid rgba(0, 255, 136, 0.2);
            padding: 25px;
            position: relative;
            transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
            overflow: hidden;
            max-width: 500px;
        }

        .timeline-content .content-card{
            transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: timelineFloat 8s ease-in-out infinite;
    transform-style: preserve-3d;
    will-change: transform;
        backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255 / 5%);
    background: rgba(34, 34, 34,0.4) !important;
        }

        @keyframes timelineFloat {
    0%, 100% {
        transform: translateY(0) translateZ(0) rotateX(0deg) rotateZ(0deg);
    }
    25% {
        transform: translateY(-8px) translateZ(8px) rotateX(1.5deg) rotateZ(0.6deg);
    }
    50% {
        transform: translateY(-16px) translateZ(16px) rotateX(-1.5deg) rotateZ(-0.6deg);
    }
    75% {
        transform: translateY(-8px) translateZ(8px) rotateX(1.5deg) rotateZ(0.6deg);
    }
}

        .timeline-step.top .content-card {
            margin-left: auto;
            transform-origin: right center;
        }

        .timeline-step.bottom .content-card {
            margin-right: auto;
            transform-origin: left center;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.08), transparent);
            transition: left 0.8s;
            z-index: 0;
        }

        .timeline-step:hover .content-card {
            border-color: var(--electric);
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                        0 0 60px rgba(0, 255, 136, 0.2);
        }

        .timeline-step:hover .content-card::before {
            left: 100%;
        }

        .step-heading {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.3rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: white;
            letter-spacing: -0.01em;
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }

        .step-text {
            color: var(--silver);
            line-height: 1.7;
            font-size: 0.95rem;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Responsive */


        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 12rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1), transparent 70%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(3rem, 12vw, 8rem);
            text-transform: uppercase;
            line-height: 0.9;
            margin-bottom: 3rem;
            letter-spacing: -0.05em;
            height: 252px;
        }

        span.typeJsText {
    height: 100px;
    display: inline-block;
    margin-top: 22px;
    color: var(--electric);
}

        .cta-title .electric {
            color: var(--electric);
            text-shadow: 0 0 60px var(--electric);
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-secondary-custom {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: transparent;
            border: 2px solid white;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-secondary-custom:hover {
            background: white;
            color: var(--deep-black);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--charcoal);
            padding: 6rem 0 3rem;
            border-top: 1px solid rgba(0, 255, 136, 0.2);
            position: relative;
            overflow: hidden;
        }
        /* .footer-brand{display: flex;justify-content: center;} */
        .footer .container{position: relative;z-index: 1;}

        .footer-brand img {
    width: 262px;
}

        .footer-brand {
            font-family: 'Archivo Black', sans-serif;
            font-size: 2rem;
            color: var(--electric);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .footer-tagline {
            color: var(--silver);
            margin-bottom: 2rem;
        }

        .footer-title {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--silver);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--electric);
            padding-left: 10px;
        }

        .social-grid {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            border-radius: 4px;
        }

        .social-link:hover {
            background: var(--electric);
            color: var(--deep-black);
            border-color: var(--electric);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--silver);
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
        }
        .footer-bottom p{margin-bottom: 0px;}

         .footer-bottom ul{display: flex;align-items: center;gap: 20px;list-style: none;padding-left: 0px;}
.footer-bottom ul li a{color:var(--white);}
        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .nav-menu { gap: 1.5rem; }
            .portfolio-item.large,
            .portfolio-item.small {
                grid-column: span 12;
            }
        }

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




        /* Keep your existing hero styles */
.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: inline-block;
    position: relative;
    padding-right: 10px;
}

/* Normal slideUp for first two lines */
.hero-title .line:nth-child(1) span,
.hero-title .line:nth-child(2) span {
    animation: slideUp 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-title .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.2s; }

/* Special reveal animation for home_title lines */
.home_title span {
    position: relative;
    overflow: hidden;
    display: inline-block;
    line-height: 1.2;
}

.line.home_title {
    font-size: 30px;
}

.home_title span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white; /* White overlay that reveals */
    animation: a-ltr-after 1s cubic-bezier(.77,0,.18,1) forwards;
    transform: translateX(-101%);
}

.home_title span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a; /* Match your dark background */
    animation: a-ltr-before 2s cubic-bezier(.77,0,.18,1) forwards;
    transform: translateX(0);
}

/* Staggered delays for the two electric lines */
.hero-title .line:nth-child(3).home_title span::before,
.hero-title .line:nth-child(3).home_title span::after {
    animation-delay: 1s;
}

.hero-title .line:nth-child(4).home_title span::before,
.hero-title .line:nth-child(4).home_title span::after {
    animation-delay: 1.5s;
}

.hero-title .electric {
    color: var(--electric);
    text-shadow: 0 0 40px var(--electric);
}

@keyframes a-ltr-after {
    0% { transform: translateX(-100%) }
    100% { transform: translateX(101%) }
}

@keyframes a-ltr-before {
    0% { transform: translateX(0) }
    100% { transform: translateX(200%) }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}