        /* ===== CSS CUSTOM PROPERTIES ===== */
        :root {
            --accent: #33c5f3;
            --accent-light: #5dd4f7;
            --accent-dark: #1a9cc7;
            --accent-glow: rgba(51, 197, 243, 0.35);
            --noir: #0A0A0A;
            --noir-light: #141414;
            --noir-medium: #1A1A1A;
            --noir-soft: #222222;
            --cream: #FFFFFF;
            --cream-muted: rgba(255, 255, 255, 0.85);
            --cream-faded: rgba(255, 255, 255, 0.6);
            --cream-subtle: rgba(255, 255, 255, 0.4);
            --border: rgba(255, 255, 255, 0.18);
            --border-accent: rgba(51, 197, 243, 0.3);
            --ff-display: 'Readex Pro', sans-serif;
            --ff-body: 'Readex Pro', sans-serif;
            --ff-mono: 'Readex Pro', sans-serif;
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
            --container: 1800px;

        --radius: 0px;
         --radius-lg: 0px;

        }

        /* ===== RESET & BASE ===== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--ff-display);
            background: var(--noir);
            color: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Grain Texture Overlay */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 10000;
        }

        ::selection {
            background: var(--accent);
            color: var(--noir);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul, ol {
            list-style: none;
        }

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--ff-display);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }


        h2{
            font-size: 46px;
            line-break: 54px;
        }

        @media (max-width: 1280px){
                h2{
                    font-size: 34px;
                    line-height: 42px;
                }
        }

        @media (max-width: 767px){
                h2{
                    font-size: 28px;
                    line-height: 36px;
                }
        }

        p {
            font-weight: 400 !important;
        }

        .text-serif {
            font-family: var(--ff-display);
            font-weight: 500;
        }

        .text-mono {
            font-family: var(--ff-mono);
            font-size: 0.85em;
            letter-spacing: 0.05em;
        }

        .text-accent {
            color: var(--accent);
        }

        .text-gold {
            color: var(--accent);
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===== UTILITIES ===== */
        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 clamp(24px, 5vw, 80px);
        }

        .split-text {
            display: inline-block;
            overflow: hidden;
        }

        .split-text span {
            display: inline-block;
            transform: translateY(100%);
            animation: slideUp 0.8s var(--ease-out-expo) forwards;
        }

        @keyframes slideUp {
            to { transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @keyframes slideInLeft {
            from { transform: translateX(-60px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInRight {
            from { transform: translateX(60px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

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

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

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s var(--ease-out-expo);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            font-family: var(--ff-display);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.5s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }

        .btn i {
            font-size: 18px;
            transition: transform 0.4s var(--ease-out-expo);
        }

        .btn-primary {
            background: var(--accent);
            color: var(--noir);
            border: none;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px var(--accent-glow);
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-primary:hover i {
            transform: translateX(4px);
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .btn-outline {
            background: transparent;
            color: var(--cream);
            border: 1px solid var(--border);
        }

        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-3px);
        }

        .btn-outline:hover i {
            transform: translateX(4px);
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 28px 0;
            transition: all 0.5s var(--ease-out-expo);
        }

        .nav.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo img {
            height: 100px;
            transition: all 0.5s var(--ease-out-expo);
        }

        .nav.scrolled .nav-logo img {
            height: 50px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2px;
            padding: 8px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 100px;
            backdrop-filter: blur(10px);
        }

        .nav-link {
            padding: 12px 24px;
            font-family: var(--ff-display);
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 0;
            text-transform: uppercase;
            color: var(--cream-faded);
            border-radius: 100px;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--accent);
            border-radius: 100px;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.4s var(--ease-out-expo);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--noir);
            background-color: #34c5f2;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            opacity: 1;
            transform: scale(1);
        }

        .nav-link span {
            position: relative;
            z-index: 1;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap:20px;
            margin-top: -15px !important;
        }

        .nav-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            font-family: var(--ff-display);
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--accent);
            border: 1px solid var(--border-accent);
            border-radius: 100px;
            transition: all 0.4s var(--ease-out-expo);
        }

        .nav-contact:hover {
            background: var(--accent);
            color: var(--noir);
            border-color: var(--accent);
        }


        @media (max-width: 1280px){
           .nav-link{
               text-transform: none;
               padding:10px 12px;
           }

           .nav-contact{
                text-transform: none;
                padding:10px 12px;
           }

        }


        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 28px;
            height: 2px;
            background: var(--accent);
            transition: all 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 420px;
            height: 100vh;
            background: var(--noir-light);
            padding: 120px 40px 60px;
            transition: right 0.5s var(--ease-out-expo);
            z-index: 999;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            z-index: 998;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-list {
            display: flex;
            flex-direction: column;
            gap: 0px;
            padding-left: 0 !important;
            margin-left: 0 !important;
            margin: 0;
        }

        .mobile-nav-list a {
            display: block;
            padding: 12px 24px;
            font-family: var(--ff-display);
            font-size: 18px;
            font-weight: 600;
            color: var(--cream-faded);
            border-radius: var(--radius);
            transition: all 0.3s;
            border-radius: 200px;
        }

        .mobile-nav-list a:hover,
        .mobile-nav-list a.active {
            background: var(--accent);
            color: var(--noir);
            transform: translateX(10px);
        }

        .mobile-cta {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid var(--border);
        }




        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 160px 0 100px;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 100%),
                radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--border-accent);
            border-radius: 100px;
            margin-bottom: 40px;
            animation: slideInUp 0.8s var(--ease-out-expo) 0.2s both;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero-badge-text {
            font-family: var(--ff-mono);
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
        }

        .hero-title {
            font-size: clamp(30px, 12vw, 70px);
            line-height: 1.32;
            margin-bottom: 32px;
            animation: slideInUp 0.8s var(--ease-out-expo) 0.3s both;
        }

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

        .hero-title-word {
            display: inline-block;
        }

        .hero-title .serif {
            font-family: var(--ff-display);
            font-weight: 700;
            font-style: normal;
        }

        .hero-desc {
            font-family: var(--ff-display);
            font-size: clamp(16px, 4vw, 20px);
            color: var(--cream-muted);
            line-height: 1.7;
            max-width: 900px;
            margin-bottom: 50px;
            animation: slideInUp 0.8s var(--ease-out-expo) 0.4s both;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInUp 0.8s var(--ease-out-expo) 0.5s both;
        }

        .hero-scroll {
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            z-index: 2;
            animation: fadeIn 1s var(--ease-out-expo) 1s both;
        }

        .hero-scroll-text {
            font-family: var(--ff-mono);
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--cream-subtle);
        }

        .hero-scroll-line {
            width: 1px;
            height: 30px;
            background: linear-gradient(to bottom, var(--accent), transparent);
            animation: float 2s ease-in-out infinite;
        }
        @media(max-width:1600px){
            .hero-scroll{
              display: none !important;
            }


        }

        /* ===== MARQUEE ===== */
        /* ========== MARQUEE ========== */
        .marquee {
            padding: 24px 0;
            background: #128db4;
            border-top: 1px solid var(--white-10);
            border-bottom: 1px solid var(--white-10);
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            animation: scroll 28s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 0 50px;
            white-space: nowrap;
        }

        .marquee-item i { color: var(--accent); font-size: 30px; }
        .marquee-item span { font-size: 30px; font-weight: 500; color: var(--white-60); }

        /* ===== INTRO SECTION ===== */
        .intro-section {
            padding: 140px 0;
            background: var(--noir);
            position: relative;
            overflow: hidden;
        }

        .intro-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1200px;
            height: 1200px;
            background: radial-gradient(circle, rgba(51, 197, 243, 0.08) 0%, transparent 70%);
            pointer-events: none;
            animation: float 10s ease-in-out infinite;
        }

        .intro-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
        }

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

        .intro-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: rgba(51, 197, 243, 0.08);
            border: 1px solid var(--border-accent);
            border-radius: 100px;
            margin-bottom: 32px;
        }

        .intro-eyebrow-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .intro-eyebrow-text {
            font-family: var(--ff-mono);
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
        }

        .intro-title {
            font-size: clamp(40px, 5vw, 64px);
            line-height: 1.1;
            margin-bottom: 28px;
            font-weight: 500;
        }

        .intro-title .highlight {
            position: relative;
            display: inline-block;
            color: var(--accent);
        }

        .intro-content p {
            font-family: var(--ff-display);
            font-size: clamp(18px, 2vw, 22px);
            line-height: 1.8;
            color: var(--cream-muted);
            font-weight:300 !important;
        }

        .intro-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            position: relative;
            z-index: 2;
        }

        .intro-feature {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 32px 30px;
            background: var(--noir-light);
            border: 1px solid var(--border);
            transition: all 0.6s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }

        .intro-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(51, 197, 243, 0.15), transparent);
            transition: left 0.8s var(--ease-out-expo);
        }

        .intro-feature::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid transparent;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.6s var(--ease-out-expo);
        }

        .intro-feature:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--border-accent);
            background: var(--noir-medium);
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 40px var(--accent-glow);
        }

        .intro-feature:hover::before {
            left: 100%;
        }

        .intro-feature:hover::after {
            opacity: 1;
        }

        .intro-feature-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(51, 197, 243, 0.1);
            border: 2px solid var(--border-accent);
            border-radius: 50%;
            font-size: 30px;
            color: var(--accent);
            transition: all 0.6s var(--ease-out-expo);
            position: relative;
            z-index: 1;
        }

        .intro-feature-icon::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            opacity: 0;
            filter: blur(8px);
            transition: opacity 0.6s var(--ease-out-expo);
            z-index: -1;
        }

        .intro-feature:hover .intro-feature-icon {
            background: var(--accent);
            color: var(--noir);
            transform: scale(1.2) rotate(15deg);
            box-shadow: 0 15px 50px var(--accent-glow);
            border-color: var(--accent-light);
        }

        .intro-feature:hover .intro-feature-icon::before {
            opacity: 0.6;
        }

        .intro-feature-content {
            position: relative;
            z-index: 1;

        }

        .intro-feature-content h4 {
            font-size: 22px;
            margin-bottom: 8px;
            font-weight: 500;
            transition: all 0.4s var(--ease-out-expo);
        }

        .intro-feature:hover .intro-feature-content h4 {
            color: var(--accent);
            transform: translateX(3px);
        }

        .intro-feature-content p {
            font-family: var(--ff-display);
            font-size: 15px;
            color: var(--cream-faded);
            line-height: 1.7;
            transition: color 0.4s;
            margin-bottom: 0;
        }

        .intro-feature:hover .intro-feature-content p {
            color: var(--cream-muted);
        }

        /* ===== SECTION COMMON ===== */
        .section {
            padding: clamp(80px, 12vw, 100px) 0;
            position: relative;
        }

        .section-header {
            max-width: 1000px;
            margin-bottom: 40px;
        }

        .section-header.centered {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .section-eyebrow-line {
            width: 40px;
            height: 1px;
            background: var(--accent);
        }

        .section-eyebrow-text {
            font-family: var(--ff-mono);
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
        }

        .section-title {
            font-size: clamp(30px, 5vw, 54px);
            margin-bottom: 24px;
        }

        .section-desc {
            font-family: var(--ff-display);
            font-size: clamp(18px, 2vw, 22px);
            color: var(--cream-muted);
            line-height: 1.7;
            font-weight: 300 !important;
        }

        .section-header p {
            font-family: var(--ff-display);
            font-size: clamp(18px, 2vw, 22px);
            color: var(--cream-muted);
            line-height: 1.7;
            font-weight: 300 !important;
        }


        /* ===== SERVICES SECTION ===== */
        .services-section {
            background: var(--noir-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: -2px;
        }

        .service-card {
            padding: 50px 40px;
            background: var(--noir);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            border-radius: 0 !important;
            transition: all 0.6s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.5s;
            z-index: -1;
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s var(--ease-out-expo);
        }

        .service-card:hover {

            border-color: var(--border-accent);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover::after {
            transform: scaleX(1);
        }

        .service-number {
            font-family: var(--ff-mono);
            font-size: 12px;
            color: var(--accent);
            margin-bottom: 30px;
            opacity: 0.6;
        }

        .service-icon {
            width: 100px;
            height: 100px;
            display: flex;
            position: relative;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid var(--border-accent);
            border-radius: var(--radius);
            border-radius: 1000px !important;
            margin-bottom: 30px;
            color: var(--accent);
            transition: all 0.5s var(--ease-out-expo);
        }


            .service-icon img {
                max-width: 60px;
                max-height: 60px;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                opacity: 0.8;
                 transition: all 0.5s var(--ease-out-expo);
            }

        .service-card:hover .service-icon {
            background: var(--accent);
            color: var(--noir);
            transform: scale(1.05) rotate(-3deg);
            box-shadow: 0 20px 50px var(--accent-glow);
        }

         .service-card:hover .service-icon img{
             opacity: 1;
              filter: invert(1);
         }

        .service-title {
            font-size: 26px;
            margin-bottom: 16px;
        }
        .service-title a{
            color: #fff !important;
        }
        .service-desc {
            font-family: var(--ff-display);
            font-size: 17px;
            color: var(--cream-muted);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--ff-display);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--accent);
            transition: gap 0.3s;
        }

        .service-link:hover {
            gap: 16px;
            color: #fff;
        }

        /* ===== PORTFOLIO SECTION ===== */
        .portfolio-section {
            background: var(--noir);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 24px;
        }


        .portfolio-item {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
        }




        .portfolio-item { grid-column: span 4; max-height: 800px; min-height: 600px;   }
          @media (max-width: 1600px){
               .portfolio-item { min-height: 500px;   }
          }

        @media (max-width: 991px){
            .portfolio-item { min-height: 400px; }
        }

        .portfolio-image {
            width: 100%;
            height: 100%;
             min-height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--ease-out-expo);
        }


        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            transition: all 0.5s var(--ease-out-expo);
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid transparent;
            border-radius: var(--radius-lg);
            z-index: 2;
            transition: all 0.5s var(--ease-out-expo);
            pointer-events: none;
        }

        .portfolio-item:hover::before {
            border-color: var(--accent);
            box-shadow: inset 0 0 40px var(--accent-glow);
        }

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

        .portfolio-item:hover .portfolio-overlay {
            background: linear-gradient(0deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.6) 60%, rgba(10, 10, 10, 0.3) 100%);
        }

        .portfolio-category {
            font-family: var(--ff-mono);
            font-size: 14px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 3px;
        }

        .portfolio-title {
            font-size: 24px;
            line-height: 30px;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--ff-display);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--cream-faded);
            transition: all 0.3s;
        }

        .portfolio-item:hover .portfolio-link {
            color: var(--accent);
            gap: 14px;
        }

        /* ===== PROCESS SECTION ===== */
        .process-section {
            background: var(--noir-light);
            overflow: hidden;
        }

        .process-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .process-visual {
            position: relative;
        }

        .process-visual-image {
            width: 100%;
            border-radius: var(--radius-lg);
            filter: grayscale(30%);
        }

        .process-visual-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            border-radius: 50%;
            animation: float 4s ease-in-out infinite;
        }

        .process-visual-badge-number {
            font-family: var(--ff-display);
            font-size: 48px;
            font-weight: 800;
            color: var(--noir);
            line-height: 1;
        }

        .process-visual-badge-text {
            font-family: var(--ff-mono);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--noir);
            opacity: 0.7;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .process-step {
            display: flex;
            gap: 30px;
            padding: 30px;
            background: var(--noir);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: all 0.5s var(--ease-out-expo);
        }

        .process-step:hover {
            border-color: var(--border-accent);
            transform: translateX(10px);
        }

        .process-step-number {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--border-accent);
            border-radius: 50%;
            font-family: var(--ff-display);
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
            transition: all 0.5s var(--ease-out-expo);
        }

        .process-step:hover .process-step-number {
            background: var(--accent);
            color: var(--noir);
        }

        .process-step-content h4 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .process-step-content p {
            font-family: var(--ff-display);
            font-size: 16px;
            color: var(--cream-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            position: relative;
            padding: 160px 0;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background-image:  url(../img/parallax.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
        }

        .cta-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(40px, 6vw, 72px);
            margin-bottom: 24px;
        }

        .cta-title .serif {
            font-family: var(--ff-display);
            font-weight: 700;
            font-style: normal;
        }

        .cta-desc {
            font-family: var(--ff-display);
            font-size: clamp(18px, 2vw, 22px);
            color: var(--cream-muted);
            line-height: 1.7;
            margin-bottom: 50px;
        }

        .cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--noir);
            border-top: 1px solid var(--border);
            padding: 100px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 3fr 1fr;
            gap: 30px;
            margin-bottom: 80px;
        }

        .footer-brand {
            max-width: 420px;
        }

        .footer-brand .logo {
            max-height: 80px;
            margin-bottom: 24px;
        }

        .footer-brand img {
            max-height: 80px;
            margin-bottom: 24px;
        }
        .footer-brand p {
            font-family: var(--ff-display);
            font-size: 16px;
            color: var(--cream-muted);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-social {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--noir-soft);
            border: 1px solid var(--border);
            border-radius: 50%;
            font-size: 30px;
            color: var(--cream-soft);
            transition: all 0.4s var(--ease-out-expo);
        }

        .footer-social:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--noir);
            transform: translateY(-4px);
        }

        .footer-col h5 {
            font-family: var(--ff-display);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .footer-links li {
            flex: 0 0 calc(33.333% - 10px);
        }

        .footer-links a {
            font-family: var(--ff-display);
            font-size: 16px;
            color: var(--cream-muted);
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(6px);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
        }

        .footer-contact-item i {
            color: var(--accent);
            font-size: 18px;
            margin-top: 2px;
        }

        .footer-contact-item span {
            font-family: var(--ff-display);
            font-size: 15px;
            color: var(--cream-muted);
            line-height: 1.5;
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            font-family: var(--ff-mono);
            font-size: 12px;
            letter-spacing: 0.05em;
            color: var(--cream-subtle);
        }

        .footer-legal {
            display: flex;
            gap: 30px;
        }

        .footer-legal a {
            font-family: var(--ff-mono);
            font-size: 12px;
            letter-spacing: 0.03em;
            color: var(--cream-subtle);
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: var(--accent);
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 56px;
            height: 56px;
            background: var(--accent);
            border: none;
            border-radius: 50%;
            color: var(--noir);
            font-size: 22px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.5s var(--ease-out-expo);
            z-index: 999;
            box-shadow: 0 10px 30px var(--accent-glow);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px var(--accent-glow);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .process-wrapper {
                gap: 60px;
            }
        }


        @media (max-width: 1400px){

             .portfolio-item { grid-column: span 6; }

        }


        @media (max-width: 1300px) {
            .footer-links li {
                flex: 0 0 calc(50% - 7px);
            }
        }



        @media (max-width: 992px) {
            .nav-menu,
            .nav-cta {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }



            .portfolio-image {
                min-height: 350px !important;
            }

            .process-wrapper {
                grid-template-columns: 1fr;
            }

            .process-visual {
                order: -1;
            }

            .process-visual-badge {
                width: 140px;
                height: 140px;
                bottom: -20px;
                right: -20px;
            }

            .process-visual-badge-number {
                font-size: 36px;
            }

            .intro-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .testimonial-card {
                flex: 0 0 calc(50% - 15px);
                min-width: 320px;
            }
        }

        @media (max-width: 768px) {
            .portfolio-item {
                grid-column: span 12 !important;
            }
            .services-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-actions,
            .cta-actions {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .testimonials-slider {
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 20px;
            }

            .testimonial-card {
                flex: 0 0 85%;
                min-width: 0;
                scroll-snap-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }

            .footer-links li {
                flex: 0 0 100%;
            }
        }

        @media (max-width: 575px){

        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 40px;
            }

            .section-title {
                font-size: 32px;
            }

            .service-card,
            .testimonial-card {
                padding: 35px 25px;
            }
        }



        .clients-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: -2px;
            margin-top: 80px;
        }

        @media (max-width: 1500px){
            .clients-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }


        @media (max-width: 1200px){
            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 991px){
            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 575px){
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }


        @media (max-width: 480px){
            .clients-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }
        .client-logo {
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 180px;
            background: #181717;
            border-radius: 0px;
            border: 1px solid #2d2b2b;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: grayscale(100%) brightness(0.7);
        }

        .client-logo:hover {
            filter: grayscale(0%) brightness(1);
            transform: translateY(-20px) scale(1.12);
            border-color: rgba(51, 197, 243, 0.5);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
            z-index: 999 !important;
        }

        .client-logo img {
            max-height: 80px;
            max-width: 100%;
            object-fit: contain;
        }




.nav-lang{
 color:var(--cream-faded);
}
.nav-lang:hover{
     color: #fff;
}

@media (max-width: 480px){
    .nav-lang{
       display: block;
       text-align: center;
    }
}

@media (max-width: 992px) {
    .d-mobile-md-none{
        display: none !important;
    }

}



/*page */
/* ========================================
   PROJECT PAGE STYLES - Add to end of style.css
   DARK THEME VERSION
   ======================================== */

/* Page Header Dark Theme */
.page-header {
    background: #0a0a0a;
    padding-top: 140px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

/* Breadcrumb moved under H1 */
.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-top:30px;
    position: relative;
    z-index: 1;
    font-size: 32px;
}

.breadcrumb-nav {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #667eea;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-right: 12px;
}

.page-header-meta {
    display: flex;
    gap: 14px;
    margin-top: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.page-header-meta-item {
    display: flex;
    align-items: center;
    gap:4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 18px;
}

.page-header-meta-item i {
    font-size: 18px;
    color: #667eea;
}

/* Dark Theme Body Sections */
.page-section {
    padding: 60px 0;
    background: #000000;
}

.page-alt-bg {
    background:   #171717;
}

.page-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    max-width: 800px;
    margin: 0 auto;
}

.project-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.project-content h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin: 40px 0 20px;
    color: #f0f0f0;
}

.project-content h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    margin: 32px 0 16px;
    color: #e0e0e0;
}

.project-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Custom List with Phosphor Icons */
.content-text ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.content-text ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    line-height: 1.6;
}

.content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    content: "\e06c";
    font-family: "Phosphor";
    font-weight: 400;
}

.rtl .content-text ul li{
   padding-right: 32px;
   padding-left: 0;
}

.rtl .content-text ul li::before{
  content: "\e058";
  left: auto;
  right: 0;
}

/* Video Section */
.project-video-section {
    background: #0a0a0a;
}

.project-video {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.project-video iframe {
    border: none;
}

/* Photo Gallery - Larger Grid */
.photo-gallery {
    padding: 80px 0;
    background: #000000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;

    cursor: pointer;

}


.gallery-item img {
    width: 100%;
    height: 100%;
    max-height: 420px !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* Two Column Layout */
.two-column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-text h3 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.content-text h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    margin: 32px 0 16px;
    color: #e0e0e0;
}

.content-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.content-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;

}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-heading p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Styles for Project Pages */
@media (max-width: 992px) {
    .page-header {
        padding-top: 140px;
        padding-bottom: 20px !important;
    }

    .page-section {
        padding: 60px 0;
    }

    .two-column-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 140px;
        padding-bottom: 20px !important;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .project-hero-image {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-list li {
        font-size: 1rem;
        padding-left: 28px;
    }

    .project-list li::before {
        width: 16px;
        height: 16px;
        top: 4px;
    }
}

.subcontent{
    display: block !important;
    width: 100% !important;
}

/* ================================
   Portfolio Filter
   ================================ */

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.filter-btn:hover {
    color: #000;
    border-color: rgba(52, 197, 242, 0.5);
    transform: translateY(-2px);
}

.filter-btn:hover::before {
    width: 100%;
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: #000;
    border-color: transparent;

}

/* Portfolio Filter Transitions */
.portfolio-grid {
    position: relative;
}

.portfolio-item {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item.hide {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

/* Responsive */
@media (max-width: 767px) {
    .portfolio-filter {
        gap: 8px;
        margin-bottom: 40px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--noir-light);
}

/* Contact Info */
.contact-info {
    height: 100%;
}

.contact-info-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-info-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 28px;
    color: #ffffff;
}

.contact-detail-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-detail-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 4px;
}

.contact-detail-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-content a:hover {
    color: var(--accent);
}

/* Contact Socials */
.contact-socials {
    margin-top: 40px;
}

.contact-socials h5 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: linear-gradient(135deg, #0ca0d0 0%, #36c4f2 100%);
    color: #ffffff;
    transform: translateY(-4px);
}

.contact-social-link i {
    font-size: 30px;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px;
    border-radius: 0px;
    height: 100%;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #36c4f2;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}



.form-select {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0px;

    font-family: inherit;
}

.form-select:focus {
    outline: none;
    border-color: #36c4f2;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.form-select::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-select option{
    color: #000 !important;
}

select.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.contact-form .btn-primary {
    margin-top: 8px;
}

/* Map Section */


.map-wrapper {
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;

}

.map-wrapper .ratio-21x9 {
        --bs-aspect-ratio: 26%;
        }

/* Responsive */
@media (max-width: 991px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header-title {
        font-size: 48px;
    }

    .page-header-desc {
        font-size: 18px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info-title {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 32px;
        margin-top: 40px;
    }

    .map-section {
        padding: 0 0 60px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header-title {
        font-size: 36px;
    }

    .page-header-desc {
        font-size: 16px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-info-title {
        font-size: 28px;
    }

    .contact-info-desc {
        font-size: 16px;
    }

    .contact-detail-icon {
        width: 48px;
        height: 48px;
    }

    .contact-detail-icon i {
        font-size: 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .map-section {
        padding: 0 0 40px;
    }
}


/* GLightbox - fit images to screen without scroll */
.gslide-image img {
    max-width: 100% !important;
    max-height: 100vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.gslide-media {
    max-width: 100% !important;
    max-height: 100% !important;
}



/* Gallery Hover Effects - Advanced */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(51, 197, 243, 0.4) 0%, rgba(51, 197, 243, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(51, 197, 243, 0.4);
}

.gallery-item:hover {

    box-shadow: 0 20px 50px rgba(51, 197, 243, 0.3), 0 0 0 3px #33c5f3;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    z-index: 2;
}

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

.gallery-item-caption {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-left: 15px;
}

.gallery-item-caption::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #33c5f3;
    transition: height 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-item-caption {
    transform: translateY(0);
}

.gallery-item:hover .gallery-item-caption::before {
    height: 100%;
}

/* Plus icon in center */
.gallery-item::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2333c5f3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
}

.rotate-left-h {
    transform: rotate(180deg) !important;
}

.nav-contact .ph-arrow-right{
    transform: rotate(180deg) !important;
}

.rtl .cta-actions .ph-arrow-right{
    transform: rotate(180deg) !important;
}

.rtl .service-link .ph-arrow-right{
    transform: rotate(180deg) !important;
}

.process-visual-badge-text{
    text-align: center;
    padding-left: 4px;
    padding-right: 4px;
}
