
        @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;700;900&family=Kufam:wght@700;900&display=swap');

        :root {
            --bg-dark: #1a1a1f;
            --bg-card: #24242a;
            --accent-orange: #ff6b35;
            --accent-teal: #06ffa5;
            --text-primary: #f4f4f6;
            --text-secondary: #a1a1aa;
            --border-color: #3f3f46;
        }

        * {
            font-family: 'Tajawal', sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="none" stroke="%23ff6b35" stroke-width="2"/></svg>') 10 10, auto;
        }

        /* Rough Paper Texture */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="4" stitchTiles="stitch"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.05 0"/></filter><rect width="200" height="200" filter="url(%23noiseFilter)" opacity="0.4"/></svg>');
            opacity: 0.03;
            z-index: -1;
            pointer-events: none;
        }

        /* Asymmetric Container */
        .asym-container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Headings */
        .heading-main {
            font-family: 'Kufam', serif;
            font-weight: 900;
            line-height: 1.1;
            position: relative;
            display: inline-block;
        }

        .heading-main::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: -10px;
            right: -10px;
            height: 12px;
            background-color: var(--accent-orange);
            z-index: -1;
            transform: rotate(-1deg);
            transition: transform 0.3s ease;
        }

        .heading-main:hover::after {
            transform: rotate(1deg);
        }

        /* Sketchy Cards */
        .sketch-card {
            background-color: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .sketch-card::before {
            content: '';
            position: absolute;
            top: -5px;
            right: -5px;
            width: 30px;
            height: 30px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,10 Q50,0 90,10 T90,90 Q50,100 10,90 T10,10" fill="none" stroke="%23ff6b35" stroke-width="4" stroke-linecap="round"/></svg>');
            background-size: contain;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sketch-card:hover {
            transform: translateY(-8px) rotate(1deg);
            border-color: var(--accent-orange);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
        }

        .sketch-card:hover::before {
            opacity: 1;
        }

        /* Service Icon */
        .service-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--bg-dark);
            background-color: var(--accent-teal);
            border-radius: 50%;
            margin-bottom: 1.5rem;
            transform: rotate(-5deg);
            transition: transform 0.3s ease;
        }

        .sketch-card:hover .service-icon {
            transform: rotate(5deg) scale(1.1);
        }

        /* --- SLIDESHOW JOURNEY SECTION --- */
        .slideshow-journey {
            position: relative;
            padding: 5rem 0;
            overflow: hidden;
            background: linear-gradient(180deg, var(--bg-dark) 0%, #2a2a3f 50%, var(--bg-dark) 100%);
        }

        .journey-heading h2,
        .journey-title {
            white-space: nowrap;
            overflow: visible;
        }

        /* Extra small screens */
        @media (max-width: 480px) {

            .journey-heading h2,
            .journey-title {
                font-size: 1.5rem !important;
            }
        }

        /* Small screens */
        @media (min-width: 481px) and (max-width: 640px) {

            .journey-heading h2,
            .journey-title {
                font-size: 1.75rem !important;
            }
        }

        /* Medium small screens */
        @media (min-width: 641px) and (max-width: 768px) {

            .journey-heading h2,
            .journey-title {
                font-size: 2.25rem !important;
            }
        }


        .slideshow-container {
            position: relative;
            width: 100%;
            max-width: 450px;
            /* Reduced width for a more focused frame */
            margin: 0 auto;
            /* FIX: Reduced height */
            height: 480px;
        }

        @media (max-width: 640px) {
            .slideshow-container {
                height: 420px;
                max-width: 100%;
            }
        }

        @media (max-width: 400px) {
            .slideshow-container {
                height: 380px;
            }
        }

        .frame-number {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-family: 'Kufam', serif;
            font-size: 3rem;
            font-weight: 900;
            color: rgba(255, 107, 53, 0.2);
            z-index: 0;
        }


        .frame-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-orange);
            color: var(--bg-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            /* FIX: Add margin to create space from title */
            margin-bottom: 1.5rem;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .film-frame.active .frame-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .frame-title {
            font-family: 'Kufam', serif;
            /* FIX: Increased font size */
            font-size: 1.8rem;
            font-weight: 700;
            /* FIX: Add margin to create space from description */
            margin-bottom: 1rem;
            z-index: 2;
        }

        .frame-description {
            color: var(--text-secondary);
            /* FIX: Increased font size and line height */
            font-size: 1.1rem;
            line-height: 1.7;
            z-index: 2;
        }

        /* --- END OF SLIDESHOW JOURNEY SECTION --- */

        /* --- GSAP CENTRAL PULSE SECTION --- */
        /* --- SIMPLE STANDARD CLIENTS GRID --- */
        .simple-clients-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* 2 per row on mobile */
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 1rem;
        }

        .client-box {
            background: #fff;
            border-radius: 8px;
            /* Slight rounding for polish */
            height: 160px;
            /* Fixed height for uniformity */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1.5rem;
            transition: transform 0.3s ease;
        }

        /* Slight hover lift just for feel, nothing crazy */
        .client-box:hover {
            transform: translateY(-5px);
        }

        .client-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            /* No filters, just natural images */
        }

        @media (min-width: 768px) {
            .simple-clients-grid {
                grid-template-columns: repeat(4, 1fr);
                /* 4 per row on desktop */
                gap: 3rem;
            }
        }

        .experience-logos img {
            width: 0vw;
            height: 0vw;
            border-radius: 400px;
            /* Circular */
            position: absolute;
            /* Stack them */
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            /* Centered but handled by GSAP width/height mostly */
            object-fit: cover;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
            /* Add some glow */
        }

        @media (min-width: 768px) {
            .clients-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .client-card-luxury {
            background: linear-gradient(145deg, #1e1e24, #25252b);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            aspect-ratio: 1/1;
            /* Square cards */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            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.3);
        }

        .client-card-luxury::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .client-card-luxury:hover {
            transform: translateY(-10px);
            border-color: #D4AF37;
            /* Gold */
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
        }

        .client-card-luxury:hover::before {
            opacity: 1;
        }

        .client-name {
            font-family: 'Kufam', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ccc;
            z-index: 2;
            transition: 0.3s;
            text-align: center;
        }

        .client-card-luxury:hover .client-name {
            color: #D4AF37;
            transform: scale(1.1);
        }

        .client-icon-placeholder {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.1);
            transition: 0.3s;
        }

        .client-card-luxury:hover .client-icon-placeholder {
            color: #D4AF37;
            transform: rotate(10deg);
        }

        /* --- Film Strip Navigation --- */
        .film-strip-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }

        .nav-dot {
            width: 50px;
            height: 50px;
            background-color: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: 50%;
            color: var(--text-secondary);
            font-family: 'Kufam', serif;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .nav-dot:hover {
            transform: scale(1.1);
            border-color: var(--accent-orange);
        }

        .nav-dot.active {
            background-color: var(--accent-orange);
            color: var(--bg-dark);
            border-color: var(--accent-orange);
            box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
        }

        /* --- END OF Film Strip Navigation --- */

        /* Project Card */
        /* --- Hyper-Realistic Portfolio Billboard Styles --- */
        .project-card {
            perspective: 1200px;
            height: 440px;
            margin-bottom: 4rem;
        }

        .mini-billboard {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mini-frame-wrapper {
            position: relative;
            width: 100%;
            height: 320px;
            z-index: 5;
            transition: transform 0.4s ease;
        }

        /* Removed rotation on hover */
        .project-card:hover .mini-frame-wrapper {
            transform: translateY(-5px);
        }

        .mini-frame {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
            border: 1px solid #444;
            padding: 12px;
            border-radius: 6px;
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.6),
                inset 0 0 15px rgba(0, 0, 0, 0.8);
            /* Metallic Bevel Effect */
            background-image:
                linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%),
                linear-gradient(135deg, #333 0%, #1a1a1a 100%);

        }

        /* Bolts/Nails on the frame */
        .mini-frame::before,
        .mini-frame::after,
        .mini-frame-inner::before,
        .mini-frame-inner::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #666, #222);
            border-radius: 50%;
            box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            z-index: 10;
        }

        .mini-frame::before {
            top: 6px;
            left: 6px;
        }

        .mini-frame::after {
            top: 6px;
            right: 6px;
        }

        .mini-frame-inner::before {
            bottom: 6px;
            left: 6px;
        }

        .mini-frame-inner::after {
            bottom: 6px;
            right: 6px;
        }

        .mini-frame-inner {
            position: relative;
            width: 100%;
            height: 100%;
            background: #000;
            overflow: hidden;
            border-radius: 2px;
            border: 1px solid #111;
        }

        /* Cinematic Light Fixture */
        .mini-fixture {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 15px;
            background: #2a2a2a;
            border: 1px solid #333;
            border-bottom: 2px solid #555;
            border-radius: 4px 4px 0 0;
            z-index: 10;
        }

        /* Spotlight Beams */
        .mini-fixture::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 140%;
            height: 180px;
            background: conic-gradient(from 150deg at 50% 0, rgba(255, 107, 53, 0.15) 0deg, transparent 60deg);
            filter: blur(15px);
            pointer-events: none;
            opacity: 0.2;
            transition: opacity 0.4s ease;
        }

        .project-card:hover .mini-fixture::before {
            opacity: 0.8;
            animation: miniBeamPulse 2s infinite alternate;
        }

        @keyframes miniBeamPulse {

            from {
                opacity: 0.5;
                transform: translateX(-50%) scaleX(0.9);
            }

            to {
                opacity: 0.9;
                transform: translateX(-50%) scaleX(1.1);
            }
        }

        /* Advanced Screen Effect */
        .project-card-front::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
                radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
            background-size: 100% 3px, 100% 100%;
            z-index: 3;
            pointer-events: none;
            opacity: 0.5;
            mix-blend-mode: overlay;
        }

        /* Industrial Stand */
        .industrial-stand {
            position: relative;
            width: 100%;
            height: 120px;
            margin-top: -5px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .pillar-group {
            display: flex;
            justify-content: space-around;
            width: 80%;
            height: 90px;
            padding: 0 40px;
        }

        .main-pillar {
            width: 18px;
            height: 100%;
            background: linear-gradient(90deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
            border-left: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .support-bar {
            position: absolute;
            top: 35px;
            left: 10%;
            width: 80%;
            height: 8px;
            background: linear-gradient(to bottom, #2a2a2a, #111);
            border: 1px solid #333;
            z-index: 2;
        }

        .stand-base-plate {
            width: 90%;
            height: 12px;
            background: #111;
            border-bottom: 3px solid #000;
            border-radius: 4px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }

        .project-card-back {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
            color: #fff;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            text-align: right;
            position: absolute;
            inset: 0;
            z-index: 10;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            backdrop-filter: blur(2px);
        }

        /* Hover Play Indicator */
        .project-card::after {
            content: '\f144';
            /* FontAwesome Play circle */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            font-size: 4rem;
            color: var(--accent-orange);
            opacity: 0;
            z-index: 20;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .project-card:hover::after {
            opacity: 1;
            transform: translate(-50%, -100%) scale(1);
        }

        .project-card:hover .project-card-back {
            opacity: 1;
            transform: translateY(0);
        }

        .project-card-back h3 {
            font-family: 'Kufam', serif;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--accent-orange);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .project-card-back p {
            font-size: 0.85rem;
            line-height: 1.4;
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }

        .project-card-front {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .project-card-front video,
        .project-card-front img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- Differentiated Billboard Types --- */

        /* Digital LED Type */
        .project-card.type-digital .mini-frame {
            border-color: #000;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.8),
                0 0 15px rgba(255, 107, 53, 0.1);
        }

        /* Status LED for digital frames */
        .project-card.type-digital .mini-frame::before {
            content: '';
            position: absolute;
            top: 10px;
            right: 15px;
            width: 6px;
            height: 6px;
            background: #0f0;
            border-radius: 50%;
            box-shadow: 0 0 5px #0f0, 0 0 10px rgba(6, 255, 165, 0.5);
            animation: statusPulse 2s infinite;
            z-index: 15;
        }

        .project-card.type-digital .mini-frame {
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.1), inset 0 0 15px rgba(0, 0, 0, 0.5);
        }

        @keyframes statusPulse {

            0%,
            100% {
                opacity: 0.3;
                transform: scale(0.8);
            }

            50% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        /* LED Screen Effect override */
        .project-card.type-digital .project-card-front::after {
            background-image:
                linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
                radial-gradient(circle at center, transparent 0%, rgba(255, 107, 53, 0.05) 100%),
                repeating-linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.02) 1px, rgba(0, 0, 255, 0.02) 2px, transparent 3px);
            background-size: 100% 3px, 100% 100%, 3px 100%;
            opacity: 0.8;
            animation: digitalFlicker 5s infinite;
        }

        @keyframes digitalFlicker {

            0%,
            100% {
                opacity: 0.8;
            }

            95% {
                opacity: 0.8;
            }

            96% {
                opacity: 0.4;
            }

            97% {
                opacity: 0.8;
            }

            98% {
                opacity: 0.6;
            }

            99% {
                opacity: 0.8;
            }
        }

        /* Static Printed Type */
        .project-card.type-static .mini-frame {
            background: linear-gradient(135deg, #444 0%, #222 100%);
            border-color: #555;
        }

        /* Matte Texture override */
        .project-card.type-static .project-card-front::after {
            background-image:
                url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
                linear-gradient(rgba(0, 0, 0, 0.05), transparent);
            opacity: 0.15;
            mix-blend-mode: multiply;
            animation: none;
        }

        /* Lighting logic for static */
        .project-card.type-static .mini-fixture::before {
            background: conic-gradient(from 150deg at 50% 0, rgba(255, 255, 255, 0.1) 0deg, transparent 60deg);
            opacity: 0.1;
        }

        .project-card.type-static:hover .mini-fixture::before {
            opacity: 0.6;
        }

        /* Lighting logic for digital */
        .project-card.type-digital .mini-fixture::before {
            background: conic-gradient(from 150deg at 50% 0, rgba(255, 107, 53, 0.2) 0deg, transparent 60deg);
        }

        .project-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--bg-dark);
            color: var(--accent-teal);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            transform: rotate(-5deg);
        }

        html,
        body {
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-primary);
            font-family: 'Kufam', sans-serif;
            text-align: right;
            direction: rtl;
            line-height: 1.6;
        }

        /* Team Member */
        .team-member {
            text-align: center;
        }

        .team-member img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            filter: grayscale(100%) contrast(1.1);
            border: 4px solid var(--bg-card);
            transition: all 0.3s ease;
            transform: rotate(-3deg);
        }

        .team-member:hover img {
            filter: grayscale(0%);
            transform: rotate(3deg) scale(1.05);
            border-color: var(--accent-orange);
        }

        .team-member h3 {
            font-family: 'Kufam', serif;
            font-weight: 700;
            margin-top: 1rem;
        }

        /* Contact Form */
        .contact-form {
            background-color: var(--bg-card);
            border: 2px dashed var(--border-color);
            padding: 3rem;
            border-radius: 8px;
        }

        .form-input {
            background-color: var(--bg-dark);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 1rem;
            border-radius: 4px;
            width: 100%;
            transition: all 0.3s ease;
        }

        /* --- Premium Video Modal --- */
        .video-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(25px);
            z-index: 99999;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: all 0.5s ease;
            pointer-events: auto;
            padding: 40px 20px;
        }

        .video-modal.active {
            display: flex;
            opacity: 1;
        }

        /* Direct Video Display (No Frame) */
        .modal-video-container {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.5);
            padding: 2vh 2vw;
        }

        .modal-video-container video {
            width: 100% !important;
            height: 100% !important;
            max-width: none !important;
            max-height: none !important;
            object-fit: contain;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
            border-radius: 8px;
            display: block;
        }

        /* Remove mobile specific overrides as 100% covers it */


        .modal-close {
            position: fixed;
            top: 25px;
            right: 25px;
            color: #fff;
            z-index: 100005;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 107, 53, 0.9);
            color: #000;
            border-radius: 50%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            font-size: 1.4rem;
        }

        .modal-close:hover {
            transform: rotate(90deg) scale(1.1);
            background: #fff;
        }

        .modal-info {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 100005;
            pointer-events: none;
            max-width: 90%;
        }

        .modal-info h2 {
            font-family: 'Kufam', sans-serif;
            color: #fff;
            font-size: 1.2rem;
            margin: 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            opacity: 0.8;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 3px rgba(6, 255, 165, 0.1);
        }

        /* Buttons */
        .btn {
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 700;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background-color: var(--accent-orange);
            color: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--accent-teal);
            transition: left 0.3s ease;
            z-index: 0;
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-primary);
            border: 2px solid var(--text-primary);
        }

        .btn-secondary:hover {
            background-color: var(--text-primary);
            color: var(--bg-dark);
        }

        .filter-btn {
            padding: 8px 20px;
            background-color: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: 50px;
            color: var(--text-secondary);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background-color: var(--accent-orange);
            color: var(--bg-dark);
            border-color: var(--accent-orange);
            transform: rotate(-2deg);
        }

        /* Navigation */
        .nav-main {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 0;
            background-color: rgba(26, 26, 31, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-main.scrolled {
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-link {
            color: var(--text-secondary);
            font-weight: 700;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--accent-orange);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--accent-orange);
        }

        /* --- Mobile Navigation --- */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1002;
        }

        .mobile-menu-btn span {
            width: 100%;
            height: 3px;
            background-color: var(--text-primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
        }

        .mobile-menu-btn.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .mobile-menu-btn.open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(21, 21, 26, 0.98);
            z-index: 1001;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu-overlay.active {
            transform: translateY(0);
        }

        .mobile-nav-link {
            font-family: 'Kufam', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            transition: color 0.3s ease;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: var(--accent-orange);
        }

        /* Close Button inside Overlay */
        .mobile-menu-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 2rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .mobile-menu-close:hover {
            color: var(--accent-orange);
        }

        /* Redesigned Loader - Cinematic Digital Theme */
        .loader {
            position: fixed;
            inset: 0;
            background: radial-gradient(circle at center, #1a1a24 0%, #0d0d12 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            overflow: hidden;
        }

        .loader-camera-container {
            position: relative;
            width: 200px;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2.5rem;
        }

        .lens-ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(255, 107, 53, 0.2);
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
        }

        .lens-ring-1 {
            width: 180px;
            height: 180px;
            border-style: dashed;
        }

        .lens-ring-2 {
            width: 140px;
            height: 140px;
            border-color: var(--accent-teal);
            opacity: 0.3;
        }

        .lens-ring-3 {
            width: 100px;
            height: 100px;
            border-color: var(--accent-orange);
            opacity: 0.5;
        }

        .lens-shutter {
            width: 60px;
            height: 60px;
            background: var(--bg-card);
            border-radius: 50%;
            border: 3px solid var(--accent-orange);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
            z-index: 2;
        }

        .lens-dot {
            width: 12px;
            height: 12px;
            background: var(--accent-teal);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--accent-teal);
        }

        .scan-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
            box-shadow: 0 0 15px var(--accent-teal);
            top: 50%;
            left: 0;
            opacity: 0;
            z-index: 1;
        }

        .loader-text-container {
            text-align: center;
            z-index: 3;
        }

        .loader-title {
            font-family: 'Kufam', serif;
            font-size: 1.8rem;
            color: var(--text-primary);
            letter-spacing: 4px;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .loader-subtitle {
            font-size: 0.9rem;
            color: var(--accent-teal);
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
        }

        .loader-progress-container {
            margin-top: 2rem;
            width: 250px;
            position: relative;
        }

        .loader-progress-bar {
            height: 2px;
            background: rgba(255, 255, 255, 0.05);
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .loader-progress-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: var(--accent-orange);
            box-shadow: 0 0 10px var(--accent-orange);
        }

        .loader-bg-numbers {
            position: absolute;
            bottom: 20px;
            right: 40px;
            font-family: 'Kufam', serif;
            font-weight: 900;
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.02);
            pointer-events: none;
            user-select: none;
        }

        /* --- Premium Hero Exhibition Screen (Redesign) --- */
        .billboard-container {
            position: relative;
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
            perspective: 2000px;
            z-index: 10;
            animation: floatingScreen 6s infinite ease-in-out;
        }

        @keyframes floatingScreen {

            0%,
            100% {
                transform: translateY(0) rotateX(2deg);
            }

            50% {
                transform: translateY(-15px) rotateX(0deg);
            }
        }

        .billboard-frame {
            position: relative;
            background: #0a0a0a;
            padding: 8px;
            /* Ultra-thin bezel */
            border-radius: 12px;
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(255, 107, 53, 0.1),
                inset 0 0 2px rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: visible;
        }

        .hero-slider-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            /* Proportional scaling */
            overflow: hidden;
            background: #000;
            border-radius: 6px;
            box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9);
        }

        .hero-slider-container img,
        .hero-slider-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Ambient Glow Floor */
        .billboard-container::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 120%;
            height: 150px;
            background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
            filter: blur(40px);
            z-index: -1;
            pointer-events: none;
        }

        /* Sleek Exhibition Stand */
        .billboard-stand {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 160px;
            height: 120px;
            z-index: -1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .pillar {
            width: 60px;
            height: 100%;
            background: linear-gradient(to bottom, #111, #000);
            border-radius: 4px;
            box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
            position: relative;
        }

        .pillar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent-orange), transparent);
            opacity: 0.3;
        }

        /* Glassmorphic Navigation */
        .hero-slider-nav {
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 30;
            display: flex;
            gap: 15px;
            pointer-events: auto;
        }

        .hero-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .hero-nav-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .hero-nav-btn:hover {
            background: rgba(255, 107, 53, 0.2);
            border-color: var(--accent-orange);
            color: var(--accent-orange);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-nav-btn:hover::before {
            transform: translateX(100%);
        }

        /* Floating Pagination Dots */
        .hero-slider-dots {
            position: absolute;
            bottom: 30px;
            left: 30px;
            z-index: 30;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .hero-dot {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .hero-dot.active {
            background: var(--accent-orange);
            width: 25px;
            border-radius: 10px;
            box-shadow: 0 0 15px var(--accent-orange);
        }

        /* --- Mobile Responsiveness for Hero Billboard --- */
        @media (max-width: 1024px) {
            .billboard-container {
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            .billboard-container {
                max-width: 100%;
                margin-top: 20px;
                animation: floatingScreenMobile 5s infinite ease-in-out;
            }


            .billboard-container::after {
                width: 100%;
                height: 80px;
                bottom: -50px;
                display: none;
                /* Hide glow on mobile to prevent overflow issues */
            }

            .billboard-stand {
                bottom: -60px;
                height: 100px;
            }

            .pillar {
                width: 40px;
            }
        }

        @media (max-width: 480px) {

            .hero-slider-nav {
                bottom: 15px;
                right: 15px;
                gap: 10px;
            }

            .hero-slider-dots {
                bottom: 15px;
                left: 15px;
            }

            .hero-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 0.8rem;
            }
        }

        @keyframes floatingScreenMobile {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .billboard-base {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 10px;
            background: #151515;
            border-radius: 5px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
        }

        .hero-slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform: scale(1.1);
        }

        .hero-slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gradient Overlay for text readability if needed (optional) */
        .hero-slide::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
            pointer-events: none;
        }

        /* Refined Screen Overlay */
        .billboard-screen-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.05) 50%);
            background-size: 100% 4px;
            z-index: 10;
            pointer-events: none;
            opacity: 0.2;
        }

        /* --- Contact Section Improvements --- */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        .contact-info-card {
            background: linear-gradient(145deg, #1e1e24, #25252e);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 107, 53, 0.1);
            color: var(--accent-orange);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-left: 1.5rem;
            /* RTL margin */
            flex-shrink: 0;
        }

        .info-content h4 {
            color: var(--text-primary);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-family: 'Kufam', serif;
        }

        .info-content p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: auto;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--bg-dark);
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            background: var(--accent-orange);
            color: var(--bg-dark);
            transform: translateY(-3px);
            border-color: var(--accent-orange);
        }

        /* Refined Form */
        .contact-form.enhanced {
            background: transparent;
            border: none;
            padding: 0;
            box-shadow: none;
        }

        .contact-form.enhanced .form-input {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.2rem;
        }

        .contact-form.enhanced .form-input:focus {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--accent-teal);
        }

        /* --- Footer Styles --- */
        .site-footer {
            background-color: #15151a;
            /* Darker than bg-dark */
            color: var(--text-secondary);
            padding-top: 5rem;
            padding-bottom: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.95rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            }
        }

        .footer-brand h3 {
            color: white;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            font-family: 'Kufam', serif;
        }

        .footer-desc {
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 300px;
        }

        .footer-title {
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            /* RTL alignment */
            width: 40px;
            height: 3px;
            background-color: var(--accent-orange);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--accent-teal);
            transform: translateX(-5px);
            /* Move left in RTL */
        }

        .footer-links a i {
            margin-left: 0.5rem;
            font-size: 0.8rem;
            color: var(--accent-orange);
        }

        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: right;
            }
        }

        .project-card {
            cursor: pointer;
            visibility: visible !important;
            opacity: 1 !important;
            transition: all 0.4s ease;
            display: block;
            position: relative;
            z-index: 50;
            pointer-events: auto !important;
        }

        .copyright {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--accent-orange);
            color: var(--bg-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid var(--bg-dark);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:not(.visible) {
            transform: translateY(20px);
        }

        .back-to-top:hover {
            background-color: var(--accent-teal);
            transform: translateY(-5px) rotate(5deg);
        }

        /* ========================================
           RESPONSIVE DESIGN - COMPREHENSIVE
           ======================================== */

        /* Small Mobile (max-width: 480px) */
        @media (max-width: 480px) {
            .asym-container {
                width: 95%;
            }

            .heading-main {
                font-size: 1.8rem !important;
                white-space: normal;
                overflow: visible;
                display: block;
                text-align: center;
            }

            .heading-main br {
                display: none;
            }

            h2.heading-main {
                font-size: 2.2rem !important;
                white-space: normal;
                overflow: visible;
                display: block;
                text-align: center;
            }

            section {
                padding: 5rem 0 !important;
            }

            #home {
                padding-top: 8rem !important;
            }

            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                left: 20px;
                font-size: 1.2rem;
            }

            .slideshow-journey {
                padding: 6rem 0 !important;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .journey-heading {
                position: relative !important;
                top: 0 !important;
                transform: none !important;
                left: 0 !important;
                margin-bottom: 3rem;
                width: 100%;
                text-align: center;
            }

            .film-frame {
                padding: 2.5rem 1.5rem;
            }

            .frame-number {
                font-size: 3rem;
                top: 10px;
                right: 10px;
            }

            .frame-icon {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .frame-title {
                font-size: 1.3rem;
                margin-bottom: 0.8rem;
            }

            .frame-description {
                font-size: 0.95rem;
            }

            .nav-dot {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .sketch-card {
                padding: 1.5rem;
            }

            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .project-card {
                height: 280px;
            }

            .contact-container {
                grid-template-columns: 1fr !important;
                gap: 2rem;
            }

            .info-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .info-icon {
                margin-left: 0 !important;
                margin-bottom: 1rem;
            }

            .social-links {
                justify-content: center;
            }

            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem;
                text-align: center;
            }

            .loader-camera-container {
                width: 200px;
                height: 200px;
            }

            .lens-ring-1 {
                width: 180px;
                height: 180px;
            }

            .lens-ring-2 {
                width: 140px;
                height: 140px;
            }

            .lens-ring-3 {
                width: 100px;
                height: 100px;
            }

            .loader-title {
                font-size: 1.8rem;
            }

            .loader-subtitle {
                font-size: 0.9rem;
            }
        }

        /* Mobile (481px - 767px) */
        @media (min-width: 481px) and (max-width: 767px) {
            .asym-container {
                width: 92%;
            }

            .heading-main {
                font-size: 1.6rem !important;
                white-space: nowrap;
                overflow: visible;
            }

            .heading-main br {
                display: none;
            }

            h2.heading-main {
                font-size: 2rem !important;
                white-space: nowrap;
                overflow: visible;
            }

            section {
                padding: 4rem 0 !important;
            }

            .slideshow-journey {
                padding: 6rem 0 !important;
            }

            .film-frame {
                padding: 2.5rem 2rem;
            }

            .frame-title {
                font-size: 1.5rem;
            }

            .contact-container {
                grid-template-columns: 1fr !important;
                gap: 3rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 2.5rem;
            }
        }

        /* Tablet (768px - 1023px) */
        @media (min-width: 768px) and (max-width: 1023px) {
            .asym-container {
                width: 90%;
            }

            .heading-main {
                font-size: 3rem !important;
            }

            h2.heading-main {
                font-size: 4rem !important;
            }

            section {
                padding: 5rem 0 !important;
            }

            .slideshow-journey {
                padding: 8rem 0 !important;
            }

            .film-frame {
                padding: 3rem 2.5rem;
            }

            .frame-title {
                font-size: 1.6rem;
            }

            #services .grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            #portfolio .grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            #portfolio .md\:col-span-2 {
                grid-column: span 2 !important;
            }

            .contact-container {
                gap: 3rem;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 3rem;
            }
        }

        /* Desktop (1024px+) */
        @media (min-width: 1024px) {
            #services .grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }

            #portfolio .grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr) !important;
            }
        }

        /* Extra Large (1440px+) */
        @media (min-width: 1440px) {
            .asym-container {
                max-width: 1600px;
            }

            .heading-main {
                font-size: 4rem !important;
            }

            h2.heading-main {
                font-size: 5rem !important;
            }
        }

        /* Touch Devices */
        @media (hover: none) and (pointer: coarse) {

            .nav-link,
            .mobile-nav-link,
            .btn,
            .filter-btn,
            .nav-dot {
                min-height: 44px;
                min-width: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* Landscape Mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .slideshow-journey {
                padding: 3rem 0 !important;
            }

            .mobile-menu-overlay {
                padding: 2rem 0;
                overflow-y: auto;
            }

            .loader-camera-container {
                width: 150px;
                height: 150px;
            }
        }

        /* Journey Swiper Styling - Enhanced for Clarity */
        .swiper.journey-swiper {
            width: 100%;
            padding: 50px 20px 80px;
            overflow: visible;
        }

        .journey-swiper .swiper-slide {
            width: 340px;
            min-height: 420px;
            opacity: 1;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .journey-swiper .swiper-slide-active .film-frame {
            transform: scale(1.05);
            box-shadow: 0 25px 70px rgba(255, 107, 53, 0.4),
                0 0 0 3px var(--accent-orange);
        }

        .journey-swiper .swiper-slide-prev .film-frame,
        .journey-swiper .swiper-slide-next .film-frame {
            opacity: 0.7;
            transform: scale(0.95);
        }

        .film-frame {
            width: 100%;
            min-height: 420px;
            margin: 0;
            background: linear-gradient(135deg, rgba(36, 36, 42, 0.98) 0%, rgba(26, 26, 31, 1) 100%);
            border: 3px solid rgba(255, 107, 53, 0.3);
            border-radius: 12px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 2rem 1.8rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .film-frame:hover {
            border-color: var(--accent-orange);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.35);
        }

        .frame-number {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 3.5rem !important;
            opacity: 0.1 !important;
            font-weight: 900 !important;
            color: var(--accent-orange) !important;
        }

        .frame-icon {
            width: 65px;
            height: 65px;
            font-size: 2.5rem !important;
            color: var(--bg-dark) !important;
            background: var(--accent-orange) !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.3rem !important;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .frame-title {
            font-size: 1.5rem !important;
            color: var(--text-primary) !important;
            margin-bottom: 1rem !important;
            font-weight: 700 !important;
            line-height: 1.3 !important;
        }

        .frame-description {
            color: var(--text-secondary) !important;
            line-height: 1.6 !important;
            font-size: 0.9rem !important;
            max-width: 100%;
        }

        .journey-swiper .swiper-pagination {
            bottom: 30px !important;
        }

        .journey-swiper .swiper-pagination-bullet {
            background: var(--text-secondary);
            opacity: 0.5;
            width: 14px;
            height: 14px;
            margin: 0 8px !important;
            transition: all 0.3s ease;
        }

        .journey-swiper .swiper-pagination-bullet-active {
            background: var(--accent-orange);
            opacity: 1;
            width: 45px;
            border-radius: 7px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--accent-orange);
            background: rgba(36, 36, 42, 0.95);
            border: 3px solid var(--accent-orange);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--accent-orange);
            color: var(--bg-dark);
            transform: scale(1.15);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 22px;
            font-weight: bold;
        }

        /* Mobile: Move arrows below cards */
        @media (max-width: 767px) {

            .journey-swiper .swiper-button-next,
            .journey-swiper .swiper-button-prev {
                top: auto;
                bottom: 20px;
                width: 45px;
                height: 45px;
                z-index: 20;
            }

            .journey-swiper .swiper-button-prev {
                left: calc(50% - 60px);
                right: auto;
            }

            .journey-swiper .swiper-button-next {
                right: calc(50% - 60px);
                left: auto;
            }

            .journey-swiper .swiper-button-next:after,
            .journey-swiper .swiper-button-prev:after {
                font-size: 18px;
            }

            .journey-swiper .swiper-pagination {
                bottom: 75px !important;
            }
        }

        @media (max-width: 767px) {
            .journey-swiper .swiper-slide {
                width: 85%;
                min-height: 400px;
            }

            .journey-swiper {
                padding: 40px 10px 100px;
                /* Increased bottom padding for arrows */
            }

            .film-frame {
                min-height: 400px;
                padding: 1.8rem 1.5rem;
            }

            .frame-icon {
                width: 55px;
                height: 55px;
                font-size: 2rem !important;
            }

            .frame-title {
                font-size: 1.3rem !important;
            }

            .frame-description {
                font-size: 0.85rem !important;
            }
        }

        /* --- Site Footer Styling --- */
        .site-footer {
            padding: 80px 0 40px;
            background-color: #0f0f13;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 50px;
            position: relative;
            z-index: 10;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-brand .heading-main {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .footer-title {
            font-family: 'Kufam', serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--accent-orange);
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 0;
            width: 30px;
            height: 2px;
            background: var(--accent-orange);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .footer-links a i {
            font-size: 0.8rem;
            opacity: 0.5;
            transition: transform 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-orange);
            transform: translateX(-5px);
        }

        .footer-links a:hover i {
            transform: translateX(-3px);
            opacity: 1;
        }

        .footer-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .designer-link {
            color: var(--accent-teal);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 5px;
            text-decoration-thickness: 2px;
            transition: all 0.3s ease;
        }

        .designer-link:hover {
            color: #fff;
            text-shadow: 0 0 10px rgba(6, 255, 165, 1);
        }
    
        .footer-bottom .social-links {
            display: flex;
            gap: 15px;
        }

        .footer-bottom .social-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .footer-bottom .social-btn:hover {
            background: var(--accent-orange);
            color: var(--bg-dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
            border-color: var(--accent-orange);
        }

        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom .social-links {
                justify-content: center;
            }
        }
    