  :root {
            --brand-orange: #f07b05;
            --brand-dark: #121212;
            --font-heading: 'Syne', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            font-family: var(--font-body);
            background: #fdfdfc;
            /* FIX 1: Removed 100vw to fix mobile overflow */
            width: 100%; 
            overflow-x: hidden;
        }

        /* --- Navbar Styles --- */
        .agency-nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            padding: 0px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 100px;
            transition: all 0.4s ease;
        }

        .agency-nav.scrolled {
            top: 15px;
            width: 95%;
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo {
            background-color: white;
            border-radius: 100px;
        }

        .brand-logo img {
            height: 60px;
            transition: 0.3s;
        }

        .agency-nav.scrolled .brand-logo img {
            filter: none;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            margin-left: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .agency-nav.scrolled .nav-links a {
            color: var(--brand-dark);
        }

        .nav-links a:hover {
            color: var(--brand-orange) !important;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-projects {
            background: var(--brand-orange);
            color: #fff;
            border: none;
            padding: 25px 44px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            text-transform: uppercase;
            transition: transform 0.3s, background 0.3s;
        }

        .btn-projects:hover {
            transform: translateY(-2px);
            background: #d66400;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            margin-right: 15px;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            transition: 0.3s;
        }

        .agency-nav.scrolled .hamburger span {
            background: var(--brand-dark);
        }

        /* --- Overlays & Offcanvas (Right for Works) --- */
        .offcanvas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s ease;
        }

        .offcanvas-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .offcanvas {
            position: fixed;
            top: 0;
            right: -450px;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: #fdfdfc;
            z-index: 2000;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            padding: 40px 30px;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            overflow-y: auto;
        }

        .offcanvas.active {
            right: 0;
        }

        .offcanvas-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .offcanvas-header h2 {
            font-family: var(--font-heading);
            color: var(--brand-dark);
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--brand-dark);
            cursor: pointer;
        }

        .project-box {
            width: 100%;
            height: 200px;
            background: #eee;
            border-radius: 12px;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .project-box img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-box:hover img {
            transform: scale(1.05);
        }

        .project-box-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgb(95 60 9), transparent);
        }

        .project-box h3 {
            position: relative;
            color: #fff;
            z-index: 2;
            font-family: var(--font-heading);
            font-size: 1.2rem;
        }

        /* --- UPDATED: Mobile Menu (Left Offcanvas) --- */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background: #fdfdfc;
            z-index: 1600;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 60px 30px;
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--brand-dark);
            font-size: 2.5rem;
            cursor: pointer;
        }

        .mobile-services-title {
            color: var(--brand-orange);
            font-family: var(--font-heading);
            font-size: 1rem;
            text-transform: uppercase;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .mobile-menu ul {
            list-style: none;
            text-align: left;
            width: 100%;
        }

        .mobile-menu ul li {
            margin-bottom: 25px;
        }

        .mobile-menu ul li a {
            color: var(--brand-dark);
            text-decoration: none;
            font-size: 1.5rem;
            font-family: var(--font-heading);
            text-transform: uppercase;
            display: block;
        }

        /* --- Hero Slider --- */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: #000;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            z-index: 1;
            pointer-events: none;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
            pointer-events: auto;
        }

        .slide.shattering {
            opacity: 0 !important;
            z-index: 3;
        }

        .slide-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
        }

        /* --- Content & Text Animations --- */
        .slide-content {
            position: relative;
            z-index: 5;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
            width: 100%;
        }

        .title-reveal-mask {
            display: block;
            overflow: hidden;
            padding-bottom: 5px;
            margin-bottom: 15px;
        }

        .slide-content h1 {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 8vw, 6rem);
            line-height: 1.1;
            text-transform: uppercase;
            color: #fff;
            margin: 0;
            transform: translateY(120%);
            transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
            position: relative;
            word-wrap: break-word;
        }

        @media (hover: hover) {
            .slide-content h1 {
                --cursor-x: -100px;
                --cursor-y: -100px;
                background-image: radial-gradient(circle 180px at var(--cursor-x) var(--cursor-y), var(--brand-orange) 0%, #fff 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }

        .slide-content p {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .btn-main {
            padding: 16px 40px;
            background: var(--brand-orange);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .btn-main:hover {
            transform: scale(1.05) !important;
            background: #fff;
            color: var(--brand-orange);
        }

        .slide.active .slide-content h1 {
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .slide.active .slide-content p {
            opacity: 0.9;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .slide.active .slide-content .btn-main {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.7s;
        }

        /* --- Pixel Snap Effects --- */
        .snap-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
            pointer-events: none;
        }

        .snap-pixel {
            position: absolute;
            overflow: hidden;
            transition: transform 2.8s cubic-bezier(0.15, 0.85, 0.25, 1), opacity 2.2s ease-out;
            will-change: transform, opacity;
        }

        .slider-nav {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 20;
        }

        .dot {
            width: 12px;
            height: 12px;
            border: 2px solid #fff;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }

        .dot.active {
            background: var(--brand-orange);
            border-color: var(--brand-orange);
            width: 30px;
            border-radius: 10px;
        }


        /* --- Marquee --- */
        .marquee-section {
            background: var(--brand-orange);
            padding: 25px 0;
            overflow: hidden;
            position: relative;
            display: flex;
            white-space: nowrap;
            z-index: 10;
            width: 100%;
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: scrollMarquee 30s linear infinite;
        }

        .marquee-section:hover .marquee-track {
            animation-play-state: paused;
        }

        .marquee-content {
            display: flex;
            align-items: center;
        }

        .marquee-item {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--brand-dark);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
        }

        .marquee-item .city-outline {
            color: transparent;
            -webkit-text-stroke: 1.5px var(--brand-dark);
            margin-left: 10px;
        }

        .marquee-separator {
            color: #fff;
            font-size: 1.5rem;
            margin: 0 40px;
            animation: spinStar 4s linear infinite;
        }

        @keyframes scrollMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes spinStar {
            100% { transform: rotate(360deg); }
        }

        /* --- Who We Are --- */
        .who-we-are-section {
            padding: 120px 5%;
            background: #fdfdfc;
            color: var(--brand-dark);
        }

        .who-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 80px;
            align-items: flex-start;
        }

        .who-heading-wrapper {
            flex: 1;
            position: sticky;
            top: 150px;
        }

        .who-subtitle {
            color: var(--brand-orange);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .who-title {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 5vw, 4.5rem);
            line-height: 1.1;
            text-transform: uppercase;
            word-wrap: break-word;
        }

        .who-content {
            flex: 1.5;
            padding-top: 10px;
        }

        .who-description {
            font-size: 1.5rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 50px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .stat-item {
            border-top: 2px solid rgba(10, 38, 21, 0.1);
            padding-top: 20px;
        }

        .stat-number {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            color: var(--brand-orange);
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }

        .stat-plus {
            font-size: 2.5rem;
            margin-left: 5px;
        }

        .stat-label {
            font-weight: 500;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--brand-dark);
        }


        /* --- Showreel --- */
        .showreel-section {
            padding: 80px 5% 100px;
            background: #fff;
            color: #fff;
            border-radius: 60px 60px 0 0;
            margin-top: -30px;
            position: relative;
            z-index: 10;
        }

        .showreel-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .showreel-subtitle {
            color: var(--brand-orange);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }

        .showreel-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 6vw, 5rem);
            text-transform: uppercase;
            line-height: 1;
            color: var(--brand-orange);
            word-wrap: break-word;
        }

        .video-glass-case {
            max-width: 1400px;
            margin: 0 auto;
            height: 70vh;
            position: relative;
            cursor: none;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgb(20 19 19 / 40%);
            border-radius: 40px;
            padding: 20px;
            box-shadow: 0 0 40px rgba(240, 123, 5, 0.15), inset 0 0 30px rgba(240, 123, 5, 0.05), 0 40px 80px rgb(243 236 236 / 60%);
            transition: all 0.5s ease;
        }

        .video-glass-case:hover {
            border-color: rgba(240, 123, 5, 0.8);
            box-shadow: 0 0 60px rgba(240, 123, 5, 0.25), inset 0 0 40px rgba(240, 123, 5, 0.1), 0 40px 80px rgba(250, 247, 238, 0.6);
        }

        .video-inner {
            width: 100%;
            height: 100%;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
        }

        .video-inner video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
            transition: filter 0.5s ease, transform 0.5s ease;
        }

        .video-glass-case.is-playing .video-inner video {
            filter: brightness(1);
            transform: scale(1.02);
        }

        .custom-play-btn {
            position: absolute;
            width: 120px;
            height: 120px;
            background: var(--brand-orange);
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            pointer-events: none;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s, backdrop-filter 0.3s;
            z-index: 10;
        }

        .video-glass-case:hover .custom-play-btn {
            transform: translate(-50%, -50%) scale(1);
        }

        .video-glass-case.is-playing .custom-play-btn {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: transparent;
            width: 80px;
            height: 80px;
        }

        .video-glass-case.is-playing .custom-play-btn::after {
            content: '॥';
            color: #fff;
            font-size: 2rem;
        }


        /* --- Premium Interactive Expertise Section --- */
        .expertise-section {
            padding: 150px 5%;
            background: var(--brand-dark); 
            color: #fff;
            position: relative;
            overflow: hidden; 
            cursor: default;
        }

        .expertise-header {
            margin-bottom: 80px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .expertise-subtitle {
            color: var(--brand-orange);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .expertise-title {
            font-family: var(--font-heading);
            font-size: clamp(3rem, 6vw, 5rem);
            text-transform: uppercase;
            line-height: 1;
        }

        .expertise-list {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 80px;
            row-gap: 0;
        }

        .expertise-item {
            display: flex;
            align-items: center;
            padding: 30px 0; 
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            position: relative;
            z-index: 2; 
            transition: all 0.4s ease;
        }

        .expertise-number {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            margin-right: 30px;
            color: rgba(255, 255, 255, 0.3);
            transition: color 0.4s ease;
        }

        .expertise-name {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 2.5vw, 2.8rem); 
            text-transform: uppercase;
            margin: 0;
            line-height: 1;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .expertise-item:hover .expertise-number {
            color: var(--brand-orange);
        }

        .expertise-item:hover .expertise-name {
            color: var(--brand-orange);
            -webkit-text-stroke: 1px var(--brand-orange);
            transform: translateX(20px); 
        }

        .floating-img-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 350px;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            pointer-events: none; 
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.8) rotate(-5deg); 
            transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
            z-index: 1; 
            box-shadow: 0 30px 60px rgba(0,0,0,0.8);
        }

        .floating-img-container.active {
            opacity: 0.7; 
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
        }

        .floating-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- Premium Portfolio / Selected Works Section --- */
        .portfolio-section {
            padding: 60px 5% 30px;
            background: #fdfdfc; 
            color: var(--brand-dark);
            position: relative;
            cursor: default;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .portfolio-subtitle {
            color: var(--brand-orange);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .portfolio-title {
            font-family: var(--font-heading);
            font-size: clamp(3rem, 5vw, 4.5rem);
            text-transform: uppercase;
            line-height: 1;
        }

        .portfolio-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .portfolio-card {
            position: relative;
            width: 100%;
            aspect-ratio: 4/3; 
            border-radius: 24px;
            overflow: hidden;
            cursor: none; 
            background: #eee;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .portfolio-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .portfolio-card:hover img {
            transform: scale(1.05);
        }

        /* FIX 3: Overlay initially hidden, activated by click class */
        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: rgba(240, 123, 5, 0.95); /* Dark Orange Color */
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 2px solid transparent;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        /* Trigger overlay based on .active class via JS */
        .portfolio-card.active .portfolio-overlay {
            opacity: 1;
            visibility: visible;
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.1);
        }

        .portfolio-info {
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .portfolio-card.active .portfolio-info {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-info h3 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            color: #fff;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .portfolio-info p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .portfolio-cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 100px;
            height: 100px;
            background: var(--brand-orange);
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.9rem;
            text-align: center;
            line-height: 1.2;
            pointer-events: none; 
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 9999;
            box-shadow: 0 10px 20px rgba(240, 123, 5, 0.4);
        }

        .portfolio-cursor.active {
            transform: translate(-50%, -50%) scale(1);
        }

        /* --- Premium Tech & Industries --- */
        .tech-industry-light {
            background: #fdfdfc; 
            color: var(--brand-dark);
            overflow: hidden;
        }

        .section-header-centered {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 5%;
        }

        .section-subtitle {
            color: var(--brand-orange);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            text-transform: uppercase;
            line-height: 1.1;
        }

        .tech-marquee-wrapper {
            margin-bottom: 120px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .tech-marquee-row {
            display: flex;
            width: max-content;
        }

        .scroll-left { animation: scrollLeft 35s linear infinite; }
        .scroll-right { animation: scrollRight 35s linear infinite; }
        .tech-marquee-row:hover { animation-play-state: paused; }

        .tech-content {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-right: 20px;
        }

        .tech-pill {
            font-family: var(--font-heading);
            font-size: clamp(1.2rem, 2vw, 2rem);
            font-weight: 700;
            text-transform: uppercase;
            padding: 15px 40px;
            border-radius: 100px;
            border: 1px solid rgba(0, 0, 0, 0.1); 
            color: var(--brand-dark); 
            background: #fff;
            transition: all 0.4s ease;
            white-space: nowrap;
            cursor: default;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }

        .tech-pill:hover {
            background: var(--brand-orange);
            color: #fff;
            border-color: var(--brand-orange);
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(240, 123, 5, 0.2);
        }

        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scrollRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        .industry-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            position: relative; 
        }

        .industry-ambient-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60vw;
            height: 400px;
            background: var(--brand-orange);
            filter: blur(150px); 
            opacity: 0.15; 
            border-radius: 50%;
            z-index: 0;
            pointer-events: none; 
            animation: pulseGlow 6s infinite alternate ease-in-out;
        }

        @keyframes pulseGlow {
            0% { opacity: 1; transform: translate(-50%, -50%) scale(0.9); }
            100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.1); }
        }

        .industry-icon-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            position: relative;
            z-index: 1; 
        }

        .industry-icon-card {
            background: rgba(255, 255, 255, 0.4); 
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.8); 
            border-radius: 20px;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .industry-icon-card:hover {
            transform: translateY(-10px);
            border-color: rgba(240, 123, 5, 0.4);
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 20px 40px rgba(240, 123, 5, 0.08);
        }

        .industry-svg {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
            stroke: var(--brand-dark);
            stroke-width: 1.5;
            fill: none;
            transition: all 0.3s ease;
        }

        .industry-icon-card:hover .industry-svg {
            stroke: var(--brand-orange);
            transform: scale(1.1);
        }

        .industry-card-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--brand-dark);
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        /* --- Premium Testimonial Section --- */
        .testimonial-section {
            padding: 150px 5%;
            background: var(--brand-dark);
            color: #fff;
            position: relative;
            cursor: none; 
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
        }

        .testimonial-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .testimonial-subtitle {
            color: var(--brand-orange);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
        }

        .testimonial-wrapper {
            position: relative;
            width: 100%;
            max-width: 1200px;
            min-height: 400px; 
            display: flex;
            justify-content: center;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateY(40px);
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            text-align: center;
            pointer-events: none;
        }

        .testimonial-slide.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
            position: relative; 
        }

        .testimonial-slide.exiting {
            opacity: 0;
            transform: translateY(-40px); 
        }

        .quote-icon {
            font-family: var(--font-heading);
            font-size: 6rem;
            color: var(--brand-orange);
            line-height: 0;
            opacity: 0.3;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 4.5rem); 
            line-height: 1.2;
            margin-bottom: 50px;
            font-weight: 700;
        }

        .client-profile {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .client-details {
            text-align: left;
        }

        .client-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
            font-family: var(--font-heading);
            text-transform: uppercase;
        }

        .client-company {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .next-cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 100px;
            height: 100px;
            background: #fff;
            border-radius: 50%;
            color: var(--brand-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.1rem;
            letter-spacing: 1px;
            pointer-events: none; 
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .testimonial-section:hover .next-cursor {
            transform: translate(-50%, -50%) scale(1);
        }

        /* --- Final CTA & Footer Section --- */
        .cta-section {
            position: relative;
            height: 100vh;
            min-height: 800px;
            background: var(--brand-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .cta-reveal-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none; 
            clip-path: circle(0px at 50% 50%); 
        }

        .cta-reveal-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8) contrast(1.2);
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cta-title {
            font-family: var(--font-heading);
            font-size: clamp(4rem, 12vw, 12rem);
            line-height: 0.9;
            color: #fff;
            margin: 0;
            text-transform: uppercase;
            pointer-events: none; 
            mix-blend-mode: difference; 
        }

        .magnetic-btn-wrapper {
            margin-top: 50px;
            padding: 30px; 
            cursor: pointer;
        }

        .magnetic-btn {
            width: 160px;
            height: 160px;
            background: var(--brand-orange);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 20px 40px rgba(240, 123, 5, 0.3);
        }

        .magnetic-btn:hover {
            background: #fff;
            color: var(--brand-orange);
        }

        .magnetic-text {
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }

        .minimal-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 10;
        }

        .footer-left {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
            font-weight: 500;
        }

        .footer-right {
            display: flex;
            gap: 30px;
        }

        .footer-right a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .footer-right a:hover {
            color: var(--brand-orange);
        }

        /* --- Premium Contact Section --- */
        .contact-section {
            padding: 50px 5%;
            background: #fdfdfc; 
            color: var(--brand-dark);
            position: relative;
            border-top: 1px solid rgba(0, 0, 0, 0.05); 
        }

        .contact-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr; 
            gap: 100px;
        }

        .contact-left {
            display: flex;
            flex-direction: column;
        }

        .contact-heading {
            font-family: var(--font-heading);
            font-size: clamp(3rem, 5vw, 4.5rem);
            line-height: 1.1;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .contact-sub {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 50px;
            max-width: 400px;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .info-icon {
            width: 24px;
            height: 24px;
            stroke: var(--brand-orange);
            stroke-width: 2;
            fill: none;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .info-content h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            text-transform: uppercase;
            margin-bottom: 5px;
            color: var(--brand-dark);
        }

        .info-content p, .info-content a {
            color: #555;
            font-size: 1.05rem;
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: var(--brand-orange);
        }

        .gst-badge {
            display: inline-block;
            margin-top: 10px;
            padding: 5px 15px;
            background: rgba(240, 123, 5, 0.1);
            color: var(--brand-orange);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(240, 123, 5, 0.3);
        }

        .contact-right {
            background: #fff;
            padding: 60px;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .premium-form {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .form-group {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 10px 0;
            font-family: var(--font-body);
            font-size: 1.2rem;
            color: var(--brand-dark);
            background: transparent;
            border: none;
            border-bottom: 2px solid rgba(0, 0, 0, 0.1);
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-input::placeholder {
            color: rgba(0, 0, 0, 0.3);
        }

        .form-input:focus {
            border-bottom-color: var(--brand-orange);
        }

        .input-highlight {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 0;
            background: var(--brand-orange);
            transition: width 0.4s ease;
        }

        .form-input:focus ~ .input-highlight {
            width: 100%;
        }

        textarea.form-input {
            resize: none;
            height: 100px;
        }

        .submit-btn {
            align-self: flex-start;
            padding: 20px 50px;
            background: var(--brand-dark);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-family: var(--font-heading);
            font-size: 1.1rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .submit-btn:hover {
            background: var(--brand-orange);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(240, 123, 5, 0.3);
        }

        /* --- Floating Sticky Enquiry Button --- */
        .floating-enquiry-btn {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            background: var(--brand-dark);
            color: #fff;
            padding: 20px 10px;
            writing-mode: vertical-rl; 
            text-orientation: mixed;
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            z-index: 9000; 
            border-radius: 12px 0 0 12px;
            box-shadow: -5px 0 20px rgba(0,0,0,0.15);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            border-right: none;
        }

        .floating-enquiry-btn:hover {
            background: var(--brand-orange);
            padding-right: 20px; 
            box-shadow: -10px 0 30px rgba(240, 123, 5, 0.4);
            border-color: var(--brand-orange);
        }

        .floating-icon {
            transform: rotate(90deg); 
            font-size: 1.2rem;
        }

        /* --- Premium Enquiry Pop-up (Modal) --- */
        .enquiry-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(18, 18, 18, 0.7); 
            backdrop-filter: blur(12px); 
            -webkit-backdrop-filter: blur(12px);
            z-index: 99999; 
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .enquiry-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .enquiry-modal-box {
            background: #fdfdfc; 
            width: 90%;
            max-width: 480px;
            padding: 50px 40px;
            border-radius: 24px;
            position: relative;
            box-shadow: 0 40px 80px rgba(0,0,0,0.2);
            transform: translateY(50px) scale(0.9);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .enquiry-modal-overlay.active .enquiry-modal-box {
            transform: translateY(0) scale(1);
        }

        .close-modal-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #eee;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: var(--brand-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-modal-btn:hover {
            background: var(--brand-orange);
            color: #fff;
            transform: rotate(90deg);
        }

        .modal-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            color: var(--brand-dark);
            margin-bottom: 5px;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .modal-subtitle {
            color: #666;
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .modal-input {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 12px;
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--brand-dark);
            background: #f9f9f9;
            transition: all 0.3s ease;
            outline: none;
        }

        .modal-input:focus {
            border-color: var(--brand-orange);
            background: #fff;
            box-shadow: 0 5px 15px rgba(240, 123, 5, 0.1);
        }

        textarea.modal-input {
            height: 120px;
            resize: none;
        }

        .modal-submit-btn {
            padding: 18px;
            background: var(--brand-orange);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .modal-submit-btn:hover {
            background: var(--brand-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* --- Global Mobile Media Queries --- */
        @media (max-width: 1200px) { 
            .industry-icon-grid { grid-template-columns: repeat(4, 1fr); gap: 15px; } 
        }

        @media (max-width: 968px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .contact-right {
                padding: 40px 20px;
            }
            .contact-heading {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 900px) {
            .who-wrapper {
                flex-direction: column;
                gap: 40px;
            }
            .who-heading-wrapper {
                position: static;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .who-description {
                font-size: 1.2rem;
            }
            .expertise-list {
                grid-template-columns: 1fr; 
                column-gap: 0;
            }
            .expertise-section { padding: 80px 5%; }
            .expertise-item { padding: 20px 0; }
            .expertise-number { margin-right: 15px; font-size: 1rem; }
            .expertise-name { font-size: 1.3rem; -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.6); }
            .expertise-item:hover .expertise-name { transform: translateX(10px); }
            .floating-img-container { display: none !important; } 

            .portfolio-grid {
                grid-template-columns: 1fr; 
                gap: 30px;
            }
            .portfolio-section { padding: 80px 5%; }
            .portfolio-title { font-size: clamp(2.5rem, 8vw, 3.5rem); } 
            .portfolio-info h3 { font-size: 1.5rem; margin-bottom: 5px; } 
            .portfolio-info p { font-size: 0.95rem; } 
            .portfolio-overlay { padding: 25px; }
            .portfolio-card { cursor: auto; } 
            .portfolio-cursor { display: none !important; }
            
            .industry-icon-grid { grid-template-columns: repeat(3, 1fr); } 

            .testimonial-section { cursor: auto; padding: 100px 5%; min-height: 60vh; }
            .next-cursor { display: none !important; }
            .testimonial-text { font-size: 2rem; }
            .testimonial-wrapper { min-height: 350px; }
            .testimonial-section::after {
                content: 'Tap to read next';
                position: absolute;
                bottom: 40px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 0.85rem;
                color: rgba(255,255,255,0.4);
                text-transform: uppercase;
                letter-spacing: 2px;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .btn-projects {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .agency-nav {
                width: 95%;
                top: 15px;
            }
            .slide-content h1 {
                font-size: clamp(2.2rem, 10vw, 3rem);
            }
            .slide-content p {
                font-size: 1rem;
            }
            .marquee-item {
                font-size: 1.2rem;
            }
            .marquee-separator {
                font-size: 1rem;
                margin: 0 20px;
            }
            .marquee-item .city-outline {
                -webkit-text-stroke: 1px var(--brand-dark);
            }
            .who-we-are-section {
                padding: 60px 5%;
            }
            .who-title {
                font-size: 2.5rem;
            }
            .showreel-section {
                padding: 50px 5% 60px;
                border-radius: 30px 30px 0 0;
            }
            .video-glass-case {
                height: 40vh;
                padding: 10px;
                border-radius: 20px;
                cursor: auto;
                box-shadow: 0 0 20px rgba(240, 123, 5, 0.1);
            }
            .video-inner {
                border-radius: 12px;
            }
            .custom-play-btn {
                display: none;
            }
            .video-glass-case::after {
                content: '▶';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                font-size: 3rem;
                color: var(--brand-orange);
                pointer-events: none;
            }
            .video-glass-case.is-playing::after {
                display: none;
            }
            .cta-section { min-height: 600px; }
            .magnetic-btn { width: 120px; height: 120px; font-size: 1rem; }
            .minimal-footer { flex-direction: column; gap: 20px; text-align: center; padding: 30px 5% 40px; }
            .cta-reveal-img { display: none; } 
            
            .floating-enquiry-btn {
                padding: 15px 8px;
                font-size: 0.85rem;
            }
            .enquiry-modal-box {
                padding: 40px 25px;
            }
        }

        /* FIX 4: Industry Cards Responsiveness on small mobiles */
        @media (max-width: 600px) { 
            .industry-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 12px;}
            .industry-ambient-glow { width: 90vw; height: 300px; filter: blur(100px); }
            /* Reduce padding on mobile so content doesn't overflow */
            .industry-icon-card { padding: 25px 15px; } 
            .industry-card-title { font-size: 0.9rem; }
            .industry-svg { width: 36px; height: 36px; margin-bottom: 15px; }
        }

        @media (max-width: 400px) {
            .industry-icon-grid { grid-template-columns: 1fr; }
        }

        /* service page ui design start */
         /* =========================================
   PREMIUM AGENCY EXPERTISE STYLES
========================================= */
.expertise-premium-page {
    background: var(--brand-dark);
    font-family: var(--font-body);
}

.text-brand { color: var(--brand-orange) !important; }

/* --- 1. DARK HERO SECTION WITH ORANGE GLOW --- */
.dark-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: var(--brand-dark);
    color: #fff;
}

.glow-orb {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(240, 123, 5, 0.15) 0%, rgba(18, 18, 18, 0) 60%);
    pointer-events: none;
    z-index: 0;
}

.ep-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeUp 1s ease forwards;
}

.ep-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.ep-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 5rem);
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.ep-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- SERVICES WRAPPER --- */
.ep-services-wrapper {
    background: #fdfdfc;
    color: var(--brand-dark);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    position: relative;
    z-index: 10;
    margin-top: -40px;
}

.ep-service-row {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ep-service-row:last-child { border-bottom: none; }

.ep-service-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.ep-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #e0e0e0;
    line-height: 0.8;
    font-weight: 800;
}

.ep-head-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.ep-head-text p { font-size: 1.1rem; color: #666; }

/* --- 01. BRAND & IDENTITY (5-Item Grid) --- */
.true-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 240px;
    gap: 20px;
}

.bento-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fafafa;
}

.bento-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.bento-box:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.feature-box { grid-column: 1 / 3; grid-row: 1 / 2; }
.top-right { grid-column: 3 / 4; grid-row: 1 / 2; }
.bottom-1 { grid-column: 1 / 2; grid-row: 2 / 3; }
.bottom-2 { grid-column: 2 / 3; grid-row: 2 / 3; }
.bottom-3 { grid-column: 3 / 4; grid-row: 2 / 3; }

.bento-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 30px 20px 20px;
}

.bento-cap h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 5px; text-shadow: 0 2px 4px rgba(0,0,0,0.5);}
.feature-box .bento-cap h4 { font-size: 1.8rem; }
.feature-box .bento-cap p { font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* --- 02. WEB & APP ENGINEERING (Tags added) --- */
.engineering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.eng-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.eng-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.eng-visual { height: 200px; border-bottom: 1px solid rgba(0,0,0,0.05); overflow: hidden; }
.eng-visual img { width: 100%; height: 100%; object-fit: cover; }

.eng-content { padding: 25px; display: flex; flex-direction: column; flex: 1;}
.eng-content h4 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 10px; color: var(--brand-dark); }
.eng-content p { font-size: 0.95rem; color: #666; line-height: 1.6; margin-bottom: 20px;}

.eng-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.e-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #555;
    background: #f9f9f9;
}

/* --- 03. REELS TRACK (Instagram Vibe) --- */
.ep-reels-track { display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; padding-bottom: 20px;}
.ep-reels-track::-webkit-scrollbar { display: none; }

.ep-reel {
    min-width: 320px;
    aspect-ratio: 9/16;
    border-radius: 16px;
    background: #000; /* Dark bg for reel */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.08);
}

.ep-reel img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.3s; }
.ep-reel:hover img { opacity: 0.5; }

.ep-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    color: var(--brand-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}
.ep-reel:hover .ep-play { opacity: 1; color: var(--brand-orange); }

/* Native Reel UI Overlay */
.reel-native-ui {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 20%, transparent 70%, rgba(0,0,0,0.8) 100%);
}

.r-top { font-weight: 700; font-size: 1.1rem; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }

.r-right { align-self: flex-end; display: flex; flex-direction: column; gap: 20px; margin-top: auto; margin-bottom: 20px; align-items: center; }
.r-icon { display: flex; flex-direction: column; align-items: center; font-size: 1.8rem; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.r-icon span { font-size: 0.7rem; font-weight: 600; margin-top: 5px; }

.r-bottom { display: flex; flex-direction: column; gap: 8px; width: 80%; }
.r-user { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.r-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--brand-orange); border: 2px solid #fff; }
.r-cap { font-size: 0.9rem; line-height: 1.4; }
.r-audio { font-size: 0.8rem; display: flex; align-items: center; gap: 5px; }

/* --- 04. DIGITAL MARKETING (Dashboard) --- */
.dm-saas-dashboard {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    overflow: hidden;
}

.dm-nav {
    height: 45px;
    background: #fafafa;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.dm-circles { display: flex; gap: 6px; }
.dm-circles i { width: 10px; height: 10px; border-radius: 50%; background: #e0e0e0; }
.dm-title { font-size: 0.8rem; color: #888; font-family: monospace; text-transform: uppercase; }

.dm-body { padding: 40px; background: #fdfdfc; }

.dm-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.dm-module {
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.3s ease;
}

.dm-module.active-module {
    border-color: var(--brand-orange);
    box-shadow: 0 5px 15px rgba(240, 123, 5, 0.05);
}

.mod-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.mod-status { width: 8px; height: 8px; border-radius: 50%; }
.bg-orange { background: var(--brand-orange); box-shadow: 0 0 8px var(--brand-orange); }
.bg-dark { background: #ccc; }

.dm-module h4 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--brand-dark); }
.dm-module p { font-size: 0.9rem; color: #666; line-height: 1.5; }

/* --- 05. HOW WE WORK (Staggered Flow with Line) --- */
.ep-process {
    padding: 120px 5%;
    background: #fff;
    overflow: hidden; /* For scrollbar hiding */
}

.ep-process-header { text-align: center; margin-bottom: 80px; }
.ep-section-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--brand-dark); }

.process-scroll-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

/* The Connecting Arrow Line */
.process-timeline-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 0;
    opacity: 0.4;
}

.dashed-line {
    flex: 1;
    border-top: 2px dashed var(--brand-orange);
}

.arrow-point {
    width: 0; 
    height: 0; 
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--brand-orange);
}

.ep-process-grid {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.ep-p-card {
    flex: 1;
    min-width: 260px;
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Staggering Logic */
.ep-p-card:nth-child(odd) { margin-bottom: 60px; margin-top: 0; }
.ep-p-card:nth-child(even) { margin-top: 60px; margin-bottom: 0; }

.ep-p-num {
    width: 50px;
    height: 50px;
    background: #f9f9f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.ep-p-card h4 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 15px; color: var(--brand-dark); }
.ep-p-card p { font-size: 0.95rem; color: #666; line-height: 1.6; }

/* =========================================
   RESPONSIVE DESIGN (MOBILE ADAPTATIONS)
========================================= */
@media (max-width: 1024px) {
    .engineering-grid { grid-template-columns: repeat(2, 1fr); }
    .true-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .feature-box { grid-column: 1 / 3; grid-row: 1 / 2; height: 300px;}
    .top-right { grid-column: 1 / 2; grid-row: 2 / 3; height: 200px;}
    .bottom-1 { grid-column: 2 / 3; grid-row: 2 / 3; height: 200px;}
    .bottom-2 { grid-column: 1 / 2; grid-row: 3 / 4; height: 200px;}
    .bottom-3 { grid-column: 2 / 3; grid-row: 3 / 4; height: 200px;}
}

@media (max-width: 768px) {
    .ep-service-header { flex-direction: column; gap: 15px; margin-bottom: 40px; }
    
    .engineering-grid { grid-template-columns: 1fr; }
    .dm-modules-grid { grid-template-columns: 1fr; }
    .dm-body { padding: 20px; }
    
    .true-bento-grid { grid-template-columns: 1fr; }
    .feature-box { grid-column: 1 / 2; grid-row: auto; }
    .top-right, .bottom-1, .bottom-2, .bottom-3 { grid-column: 1 / 2; grid-row: auto; height: 200px;}
    
    /* Horizontal Scroll Fix for Mobile Process */
    .process-scroll-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 40px;
        scrollbar-width: thin;
    }
    .ep-process-grid {
        width: max-content;
        padding: 0 5%;
    }
    .ep-p-card { scroll-snap-align: center; }
}
        /* service page ui design end */

        /* works page ui design start */
        /* =========================================
   PORTFOLIO: PARALLAX CASE STUDIES
========================================= */
.portfolio-parallax-page {
    background: var(--brand-dark);
    color: #fff;
    font-family: var(--font-body);
}

.text-brand { color: var(--brand-orange) !important; }

/* --- 1. HERO SECTION --- */
.px-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: #0a0a0a;
}

.px-hero-content {
    max-width: 900px;
    padding: 0 5%;
    animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.px-label { display: inline-block; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 20px; }
.px-title { font-family: var(--font-heading); font-size: clamp(3.5rem, 8vw, 7rem); line-height: 1; color: #fff; text-transform: uppercase; margin-bottom: 25px; letter-spacing: -2px; }
.px-desc { font-size: 1.2rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Scroll Mouse Indicator */
.px-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); }
.px-mouse { width: 26px; height: 40px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px; position: relative; }
.px-mouse::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--brand-orange); border-radius: 2px; animation: scrollWheel 1.5s infinite; }
@keyframes scrollWheel { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }

/* --- 2. PARALLAX PROJECT SECTIONS --- */
.px-project {
    min-height: 100vh; 
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center; 
    padding: 100px 0;
}

/* Gradient Overlay for text readability */
.px-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.px-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 5%;
    max-width: 1600px;
    margin: 0 auto;
}

/* --- CASE STUDY GRID --- */
.cs-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left Side: Title */
.cs-left { padding-right: 40px; }
.cs-num { font-family: var(--font-heading); font-size: clamp(4rem, 8vw, 6rem); font-weight: 800; color: rgba(255,255,255,0.1); line-height: 0.8; display: block; margin-bottom: 20px;}
.cs-title { font-family: var(--font-heading); font-size: clamp(3rem, 5vw, 5rem); color: #fff; text-transform: uppercase; line-height: 1; margin-bottom: 15px; }
.cs-cat { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

/* Right Side: Glassmorphism Data Panel */
.glass-panel {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(240, 123, 5, 0.3);
    transform: translateY(-5px);
}

.cs-data-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cs-block h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cs-block p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.cs-impact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.cs-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.metric { display: flex; flex-direction: column; gap: 5px; }
.m-val { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; line-height: 1; }
.m-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }

.cs-tech-stack { display: flex; gap: 10px; flex-wrap: wrap; }
.cs-tech-stack span { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 6px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: #fff; text-transform: uppercase; }

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {
    .cs-grid { grid-template-columns: 1fr; gap: 40px; }
    .cs-left { padding-right: 0; text-align: center; }
    .px-overlay { background: rgba(0,0,0,0.7); } /* Darker overlay for mobile readability */
}

@media (max-width: 768px) {
    .px-project {
        background-attachment: scroll; /* Fixes iOS parallax jitter */
        padding: 80px 0;
        height: auto;
    }
    
    .glass-panel { padding: 30px 20px; }
    .cs-data-row { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; margin-bottom: 30px;}
    .cs-metrics-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    
    .m-val { font-size: 2.5rem; }
    .cs-title { font-size: 2.5rem; }
    .cs-tech-stack { justify-content: center; }
}
        /* works page ui design end */

         /* =========================================
   STUDIO PAGE: LIGHT TECH VIBE
========================================= */
.studio-premium-page {
    background: #fdfdfc; /* Base light background */
    color: var(--brand-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.text-brand { color: var(--brand-orange) !important; }
.text-green { color: #00c853 !important; }
.bg-light { background: #fdfdfc; }
.bg-tint { background: #fafafa; }
.border-top { border-top: 1px solid rgba(0,0,0,0.06); }

.std-section { padding: 120px 5%; position: relative; }
.std-container { max-width: 1400px; margin: 0 auto; }

/* --- 1. MISSION CONTROL HERO (DARK) --- */
.dark-hero {
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--brand-dark);
    color: #fff;
    margin-bottom: 0;
}

.radar-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    background: radial-gradient(circle, rgba(240, 123, 5, 0.08) 0%, transparent 60%);
    z-index: 0;
}
.radar-bg::before, .radar-bg::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(255,255,255,0.03); }
.radar-bg::before { width: 66%; height: 66%; }
.radar-bg::after { width: 33%; height: 33%; }

.radar-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-orange));
    transform-origin: left center;
    animation: radarScan 4s linear infinite;
}
@keyframes radarScan { 100% { transform: rotate(360deg); } }

.std-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeUp 1s ease forwards;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: monospace;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 15px;
    border-radius: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.status-dot { width: 8px; height: 8px; background: #00e676; border-radius: 50%; }
.status-dot.blink { animation: blink 1.5s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }

.std-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.std-desc { font-size: 1.2rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* --- 2. THE STORY / MANIFESTO --- */
.story-section { padding-top: 150px; }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.section-label {
    display: inline-block;
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}
.section-label::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 10px; height: 2px; background: var(--brand-orange);
}

.story-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    color: var(--brand-dark);
    text-transform: uppercase;
}

.story-para {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}
.story-para strong { color: var(--brand-dark); font-weight: 700; }

/* --- 3. TECH DNA (Light Panels) --- */
.std-header-center { text-align: center; margin-bottom: 80px; }
.std-heading-main { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 3.5rem); text-transform: uppercase; margin-bottom: 15px; color: var(--brand-dark); }
.std-subtext { color: #666; font-size: 1.15rem; }

.dna-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.light-panel {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.light-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(240, 123, 5, 0.3);
}

.dna-icon { font-family: monospace; font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
.dna-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; color: var(--brand-dark); text-transform: uppercase; }
.dna-card p { color: #666; line-height: 1.6; font-size: 0.95rem; }

/* --- 4. THE ARCHITECTS (Light ID Cards) --- */
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.light-clearance { font-family: monospace; font-size: 0.9rem; color: #555; border: 1px dashed rgba(0,0,0,0.15); padding: 8px 15px; background: #fff;}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.light-id {
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: border-color 0.3s;
}

.light-id:hover { border-color: var(--brand-orange); }

.id-top { display: flex; justify-content: space-between; padding: 15px 20px; border-bottom: 1px solid rgba(0,0,0,0.06); font-family: monospace; font-size: 0.8rem; color: #888; background: #fafafa;}
.id-image { width: 100%; aspect-ratio: 1/1; position: relative; overflow: hidden; }
.id-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.5s ease; }
.light-id:hover .id-image img { filter: grayscale(0%); }

.scan-line { position: absolute; top: -10%; left: 0; width: 100%; height: 2px; background: var(--brand-orange); box-shadow: 0 0 10px var(--brand-orange); opacity: 0; transition: opacity 0.3s; }
.light-id:hover .scan-line { opacity: 1; animation: scan 2s linear infinite; }
@keyframes scan { 0% { top: -10%; } 100% { top: 110%; } }

.id-bottom { padding: 25px 20px; text-align: center; }
.id-bottom h4 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--brand-dark); text-transform: uppercase; margin-bottom: 5px; }
.id-bottom .role { font-family: monospace; font-size: 0.85rem; color: var(--brand-orange); }

/* --- 5. GLOBAL FOOTPRINT (Light Map) --- */
.map-section { height: 70vh; min-height: 500px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.map-visual { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }

.light-map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.map-stats { display: flex; gap: 30px; justify-content: center; margin-top: 20px; font-family: monospace; font-size: 1.1rem; color: #555; font-weight: 600; }

/* Blinking Nodes */
.node { position: absolute; width: 12px; height: 12px; background: var(--brand-orange); border-radius: 50%; z-index: 1; box-shadow: 0 0 15px rgba(240,123,5,0.5); }
.node::after { content: ''; position: absolute; top: -6px; left: -6px; right: -6px; bottom: -6px; border: 1px solid var(--brand-orange); border-radius: 50%; animation: ping 2s ease-out infinite; }

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .dna-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .std-hero { min-height: 500px; }
    .radar-bg { width: 120vw; height: 120vw; }
    .std-title { font-size: 3rem; }
    
    .dna-grid { grid-template-columns: 1fr; }
    .light-panel { padding: 30px 20px; }
    
    .flex-between { flex-direction: column; align-items: flex-start; gap: 15px; }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }
    
    .light-map-overlay { padding: 30px 20px; width: 90%; }
    
    
    
    
    
    
    