/* CSS VARIABLES */
    :root {
        --black: #0a0a0a;
        --dark: #111111;
        --dark2: #161616;
        --dark3: #1e1e1e;
        --grey: #2a2a2a;
        --grey2: #3a3a3a;
        --orange: #ff6600;
        --orange2: #ff8533;
        --orange-glow: rgba(255, 102, 0, 0.35);
        --orange-light: rgba(255, 102, 0, 0.12);
        --white: #ffffff;
        --white80: rgba(255, 255, 255, 0.8);
        --white60: rgba(255, 255, 255, 0.6);
        --white20: rgba(255, 255, 255, 0.2);
        --white08: rgba(255, 255, 255, 0.08);
        --font-en: 'Rajdhani', sans-serif;
        --font-heading: 'Bebas Neue', sans-serif;
        --font-ar: 'Cairo', sans-serif;
        --font-ur: 'Noto Nastaliq Urdu', serif;
        --nav-h: 76px;
        --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        --radius: 10px;
        --radius-lg: 18px;
        --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        --shadow-orange: 0 4px 20px var(--orange-glow);
    }

    /* RESET & BASE */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        background: var(--black);
        color: var(--white);
        font-family: var(--font-en);
        font-size: 1rem;
        line-height: 1.7;
        overflow-x: hidden;
    }

    body.lang-ar {
        font-family: var(--font-ar);
        direction: rtl;
    }

    body.lang-ur {
        font-family: var(--font-ur);
        direction: rtl;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

    ul {
        list-style: none;
    }

    button {
        cursor: pointer;
        border: none;
        background: none;
        font-family: inherit;
    }

    input,
    textarea,
    select {
        font-family: inherit;
        background: var(--dark3);
        border: 1px solid var(--grey);
        color: var(--white);
        border-radius: var(--radius);
        padding: 0.85rem 1.1rem;
        width: 100%;
        font-size: 0.95rem;
        transition: var(--trans);
        outline: none;
    }

    input:focus,
    textarea:focus,
    select:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px var(--orange-light);
    }

    select option {
        background: var(--dark2);
    }

    textarea {
        resize: vertical;
    }

    /* SCROLL PROGRESS BAR */
    #scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        width: 0%;
        background: linear-gradient(90deg, var(--orange), var(--orange2));
        z-index: 9999;
        transition: width 0.1s linear;
        box-shadow: 0 0 10px var(--orange-glow);
    }

    /* PRELOADER */
    #preloader {
        position: fixed;
        inset: 0;
        background: var(--black);
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .preloader-inner {
        text-align: center;
    }

    .preloader-logo {
        font-family: var(--font-heading);
        font-size: 4rem;
        letter-spacing: 0.1em;
        margin-bottom: 2rem;
    }

    .logo-m {
        color: var(--orange);
    }

    .logo-rest {
        color: var(--white);
    }

    .preloader-bar {
        width: 260px;
        height: 3px;
        background: var(--grey);
        border-radius: 99px;
        overflow: hidden;
        margin: 0 auto 1rem;
    }

    .preloader-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--orange), var(--orange2));
        border-radius: 99px;
        width: 0%;
        animation: preload 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        box-shadow: 0 0 12px var(--orange-glow);
    }

    @keyframes preload {
        to {
            width: 100%;
        }
    }

    .preloader-text {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--white60);
    }

    #preloader.hidden {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }

    /* NAVBAR */
    #navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: var(--nav-h);
        z-index: 1000;
        transition: var(--trans);
    }

    #navbar.scrolled {
        background: rgba(10, 10, 10, 0.88);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* ADD THIS */
}

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        flex-shrink: 0;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        background: var(--orange);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--white);
        box-shadow: var(--shadow-orange);
    }

    .logo-text {
        font-family: var(--font-heading);
        font-size: 1.6rem;
        letter-spacing: 0.08em;
        color: var(--white);
    }

    .logo-dot {
        color: var(--orange);
    }

/* ================= NAV BASE ================= */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0 auto; /* 🔥 THIS CENTERS MENU */
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
  padding: 8px 5px;
}

.nav-links a:hover {
  color: #fff;
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #111;
  min-width: 220px;
  padding: 15px 0;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  z-index: 999;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu a {
  color: #bbb;
  font-size: 13px;
}

.dropdown-menu a:hover {
  color: #ff7a00;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= MEGA MENU ================= */
.mega-menu-content {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 900px;
  background: #111;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,122,0,0.2);
}

/* SHOW MEGA MENU */
.mega-menu:hover .mega-menu-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ================= COLUMNS ================= */
.mega-column {
  flex: 1;
}

.mega-column h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,122,0,0.3);
  padding-bottom: 5px;
}

.mega-column ul {
  list-style: none;
}

.mega-column ul li {
  margin-bottom: 6px;
}

.mega-column ul a {
  color: #aaa;
  font-size: 13px;
  transition: 0.3s;
}

.mega-column ul a:hover {
  color: #ff7a00;
  padding-left: 5px;
}

/* ================= HOVER LINE EFFECT ================= */
.nav-links > li > a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: #ff7a00;
  transition: 0.3s;
  margin-top: 4px;
}

.nav-links > li > a:hover::after {
  width: 100%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

  .nav-links {
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 70px;
    right: -100%;
    width: 260px;
    padding: 20px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .dropdown-menu,
  .mega-menu-content {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    padding: 0;
    width: 100%;
    display: none;
  }

  .dropdown.active .dropdown-menu,
  .mega-menu.active .mega-menu-content {
    display: block;
  }

  .mega-menu-content {
    flex-direction: column;
    gap: 15px;
  }

  .mega-column h4 {
    font-size: 14px;
  }
}

    /* LANGUAGE SWITCHER */
    .lang-switcher {
        position: relative;
    }

    .lang-current {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.4rem 0.8rem;
        background: var(--white08);
        border: 1px solid var(--white20);
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        transition: var(--trans);
    }

    .lang-current:hover {
        background: var(--orange-light);
        border-color: var(--orange);
    }

    .lang-arrow {
        font-size: 0.65rem;
        transition: transform 0.3s;
    }

    .lang-switcher.open .lang-arrow {
        transform: rotate(180deg);
    }

    .lang-dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background: rgba(22, 22, 22, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid var(--grey);
        border-radius: 10px;
        min-width: 150px;
        overflow: hidden;
        box-shadow: var(--shadow);
        z-index: 100;
    }

    .lang-switcher.open .lang-dropdown {
        display: block;
    }

    body.lang-ar .lang-dropdown,
    body.lang-ur .lang-dropdown {
        left: 0;
        right: auto;
    }

    .lang-option {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        cursor: pointer;
        transition: var(--trans);
    }

    .lang-option:hover {
        background: var(--orange-light);
        color: var(--orange);
    }

    .btn-nav {
        padding: 0.5rem 1.3rem;
        background: var(--orange);
        color: var(--white);
        border-radius: 8px;
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        transition: var(--trans);
        box-shadow: var(--shadow-orange);
        white-space: nowrap;
    }

    .btn-nav:hover {
        background: var(--orange2);
        transform: translateY(-1px);
        box-shadow: 0 6px 24px var(--orange-glow);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--trans);
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* BUTTONS */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem 2rem;
        background: var(--orange);
        color: var(--white);
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        transition: var(--trans);
        box-shadow: var(--shadow-orange);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border: none;
        font-family: inherit;
    }

    .btn-primary:hover {
        background: var(--orange2);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px var(--orange-glow);
    }

    .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem 2rem;
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        transition: var(--trans);
    }

    .btn-outline:hover {
        background: var(--white);
        color: var(--black);
        transform: translateY(-2px);
    }

    .btn-sm {
        display: inline-block;
        padding: 0.55rem 1.4rem;
        background: var(--orange);
        color: var(--white);
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        transition: var(--trans);
    }

    .btn-sm:hover {
        background: var(--orange2);
        transform: translateY(-1px);
    }

    .btn-full {
        width: 100%;
        justify-content: center;
    }

    .ripple {
        overflow: hidden;
    }

    .ripple-effect {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: scale(0);
        animation: ripple-anim 0.6s linear;
        pointer-events: none;
    }

    @keyframes ripple-anim {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }

    /* SECTION UTILITIES */
    section {
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
        padding: 0 2rem;
    }

    .section-tag {
        display: inline-block;
        padding: 0.3rem 1rem;
        background: var(--orange-light);
        border: 1px solid rgba(255, 102, 0, 0.3);
        border-radius: 99px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 1rem;
    }

    .section-title {
        font-family: var(--font-heading);
        font-size: clamp(2.2rem, 5vw, 3.6rem);
        line-height: 1.05;
        letter-spacing: 0.02em;
        color: var(--white);
    }

    .section-sub {
        font-size: 1rem;
        color: var(--white60);
        margin-top: 1rem;
    }

    .accent {
        color: var(--orange);
    }

    .accent-icon {
        color: var(--orange);
    }

    .section-diagonal {
        background: var(--dark2);
    }

    .section-diagonal::before,
    .section-diagonal-rev::before {
        content: '';
        position: absolute;
        top: -60px;
        left: 0;
        right: 0;
        height: 120px;
        background: var(--black);
        clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
        z-index: 1;
    }

    .section-diagonal>* {
        position: relative;
        z-index: 2;
    }

    .section-diagonal-rev {
        background: var(--dark3);
    }

    .section-diagonal-rev::before {
        background: var(--dark2);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
    }

    .section-diagonal-rev>* {
        position: relative;
        z-index: 2;
    }

    /* SCROLL ANIMATIONS */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in:nth-child(2) {
        transition-delay: 0.1s;
    }

    .fade-in:nth-child(3) {
        transition-delay: 0.2s;
    }

    .fade-in:nth-child(4) {
        transition-delay: 0.3s;
    }

    .fade-in:nth-child(5) {
        transition-delay: 0.4s;
    }

    .fade-in:nth-child(6) {
        transition-delay: 0.5s;
    }

    /* ======================== HERO ======================== */
    #hero {
        height: 100vh;
        min-height: 680px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 0;
    }

    .hero-slides {
        position: absolute;
        inset: 0;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.2s ease;
        transform: scale(1.05);
        animation: heroZoom 8s ease forwards;
    }

    .hero-slide.active {
        opacity: 1;
    }

    @keyframes heroZoom {
        from {
            transform: scale(1.08);
        }

        to {
            transform: scale(1.0);
        }
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.82) 0%,
                rgba(0, 0, 0, 0.55) 50%,
                rgba(10, 5, 0, 0.75) 100%);
        z-index: 1;
    }

    .hero-diagonal {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: var(--black);
        clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        max-width: 850px;
        padding: 0 2rem;
    }

    .hero-badge {
        display: inline-block;
        padding: 0.35rem 1.1rem;
        background: var(--orange-light);
        border: 1px solid rgba(255, 102, 0, 0.4);
        border-radius: 99px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-family: var(--font-heading);
        font-size: clamp(3.5rem, 9vw, 7.5rem);
        line-height: 0.95;
        letter-spacing: 0.02em;
        margin-bottom: 1.2rem;
        color: var(--white);
    }

    .hero-sub {
        font-size: clamp(1rem, 2vw, 1.25rem);
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--white60);
        margin-bottom: 2.5rem;
    }

    .hero-btns {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .animate-on-load .hero-badge {
        animation: fadeUp 0.7s 0.5s both;
    }

    .animate-on-load .hero-title {
        animation: fadeUp 0.8s 0.7s both;
    }

    .animate-on-load .hero-sub {
        animation: fadeUp 0.8s 0.9s both;
    }

    .animate-on-load .hero-btns {
        animation: fadeUp 0.8s 1.1s both;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-slider-controls {
        position: absolute;
        bottom: 150px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 4;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .slide-prev,
    .slide-next {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--white08);
        border: 1px solid var(--white20);
        color: var(--white);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--trans);
    }

    .slide-prev:hover,
    .slide-next:hover {
        background: var(--orange);
        border-color: var(--orange);
    }

    .slide-dots {
        display: flex;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--white20);
        cursor: pointer;
        transition: var(--trans);
    }

    .dot.active {
        background: var(--orange);
        width: 24px;
        border-radius: 4px;
        box-shadow: 0 0 8px var(--orange-glow);
    }

    .hero-scroll-hint {
        position: absolute;
        bottom: 120px;
        right: 2.5rem;
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--white60);
        writing-mode: vertical-rl;
    }

    .scroll-line {
        width: 1px;
        height: 50px;
        background: linear-gradient(to bottom, var(--orange), transparent);
        animation: scrollPulse 2s ease infinite;
    }

    @keyframes scrollPulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.3;
        }
    }

    /* ======================== STATS BAR ======================== */
    #stats-bar {
        padding: 60px 0;
        background: linear-gradient(135deg, var(--dark2), var(--dark3));
        border-top: 1px solid var(--grey);
        border-bottom: 1px solid var(--grey);
    }

    .stats-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 150px;
    }

    .stat-num {
        font-family: var(--font-heading);
        font-size: 3.5rem;
        color: var(--orange);
        line-height: 1;
    }

    .stat-unit {
        font-family: var(--font-heading);
        font-size: 2rem;
        color: var(--orange);
    }

    .stat-label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--white60);
        margin-top: 0.5rem;
    }

    .stat-divider {
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, transparent, var(--grey), transparent);
    }

    /* ======================== ABOUT ======================== */
    #about {
        padding: 120px 0 140px;
    }

    .about-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    body.lang-ar .about-container,
    body.lang-ur .about-container {
        direction: rtl;
    }

    .about-image-wrap {
        position: relative;
    }

    .about-img-main {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .about-img-main img {
        height: 520px;
        transition: transform 0.6s ease;
    }

    .about-img-main:hover img {
        transform: scale(1.04);
    }

    .about-img-badge {
        position: absolute;
        bottom: 2rem;
        right: 2rem;
        background: var(--orange);
        color: var(--white);
        border-radius: 12px;
        padding: 1rem 1.5rem;
        text-align: center;
        box-shadow: var(--shadow-orange);
    }

    body.lang-ar .about-img-badge,
    body.lang-ur .about-img-badge {
        right: auto;
        left: 2rem;
    }

    .badge-num {
        display: block;
        font-family: var(--font-heading);
        font-size: 2.8rem;
        line-height: 1;
    }

    .badge-text {
        font-size: 0.8rem;
        font-weight: 600;
    }

    .about-img-accent {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        border: 2px solid var(--orange);
        border-radius: var(--radius-lg);
        opacity: 0.25;
        z-index: -1;
    }

    body.lang-ar .about-img-accent,
    body.lang-ur .about-img-accent {
        left: auto;
        right: -20px;
    }

    .about-desc {
        font-size: 1.05rem;
        color: var(--white80);
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .ceo-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: var(--dark3);
        border: 1px solid var(--grey);
        border-radius: var(--radius);
        margin-bottom: 2rem;
        position: relative;
    }

    .ceo-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .ceo-name {
        display: block;
        font-weight: 700;
        font-size: 1rem;
    }

    .ceo-title {
        font-size: 0.82rem;
        color: var(--orange);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .ceo-quote {
        margin-left: auto;
        font-size: 1.8rem;
        color: var(--orange);
        opacity: 0.3;
    }

    body.lang-ar .ceo-quote,
    body.lang-ur .ceo-quote {
        margin-left: 0;
        margin-right: auto;
    }

    .about-services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .about-service {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0.9rem 0.5rem;
        background: var(--dark3);
        border: 1px solid var(--grey);
        border-radius: var(--radius);
        font-size: 0.82rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        text-align: center;
        transition: var(--trans);
    }

    .about-service i {
        font-size: 1.2rem;
        color: var(--orange);
    }

    .about-service:hover {
        border-color: var(--orange);
        background: var(--orange-light);
        transform: translateY(-3px);
    }

    /* ======================== MISSION VISION VALUES ======================== */
    #mvv {
        padding: 100px 0;
        background: var(--dark);
    }

    .mvv-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 102, 0, 0.07) 0%, transparent 70%);
    }

    #mvv .section-header {
        position: relative;
        z-index: 2;
    }

    .mvv-grid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        position: relative;
        z-index: 2;
    }

    .mvv-card {
        padding: 2.5rem 2rem;
        background: var(--dark2);
        border: 1px solid var(--grey);
        border-radius: var(--radius-lg);
        text-align: center;
        transition: var(--trans);
        position: relative;
        overflow: hidden;
    }

    .mvv-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--orange-light) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .mvv-card:hover {
        border-color: var(--orange);
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), var(--shadow-orange);
    }

    .mvv-card:hover::before {
        opacity: 1;
    }

    .mvv-center {
        border-color: var(--orange);
        background: linear-gradient(135deg, var(--dark2), #1a0f08);
    }

    .mvv-icon {
        width: 68px;
        height: 68px;
        border-radius: 16px;
        background: var(--orange-light);
        border: 1px solid rgba(255, 102, 0, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.7rem;
        color: var(--white60);
        margin: 0 auto 1.5rem;
        transition: var(--trans);
        position: relative;
        z-index: 1;
    }

    .mvv-card:hover .mvv-icon,
    .mvv-center .mvv-icon {
        color: var(--orange);
        box-shadow: 0 0 20px var(--orange-glow);
    }

    .mvv-card h3 {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    .mvv-card p {
        font-size: 0.95rem;
        color: var(--white80);
        line-height: 1.75;
        position: relative;
        z-index: 1;
    }

    .values-list {
        text-align: left;
        position: relative;
        z-index: 1;
    }

    body.lang-ar .values-list,
    body.lang-ur .values-list {
        text-align: right;
    }

    .values-list li {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--white08);
        font-size: 0.95rem;
        color: var(--white80);
    }

    .values-list li:last-child {
        border: none;
    }

    .values-list li i {
        color: var(--orange);
        font-size: 0.8rem;
    }

    /* ======================== SERVICES ======================== */
    #services {
        padding: 120px 0 140px;
    }

    .services-grid {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        position: relative;
        z-index: 2;
    }

    .service-card {
        padding: 2.5rem 2rem;
        background: var(--dark);
        border: 1px solid var(--grey);
        border-radius: var(--radius-lg);
        position: relative;
        overflow: hidden;
        transition: var(--trans);
    }

    .service-card:hover {
        border-color: var(--orange);
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    }

    .service-border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--orange), var(--orange2));
        transition: width 0.5s ease;
        border-radius: 0 3px 3px 0;
    }

    .service-card:hover .service-border {
        width: 100%;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        background: var(--orange-light);
        border: 1px solid rgba(255, 102, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: var(--orange);
        margin-bottom: 1.5rem;
        transition: var(--trans);
    }

    .service-card:hover .service-icon {
        background: var(--orange);
        color: var(--white);
        box-shadow: var(--shadow-orange);
    }

    .service-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        letter-spacing: 0.04em;
    }

    .service-card p {
        font-size: 0.92rem;
        color: var(--white60);
        line-height: 1.7;
    }

    /* ======================== PRODUCTS ======================== */
    #products {
        padding: 100px 0;
        background: var(--dark);
    }

    .products-grid {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .product-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
        background: var(--dark2);
        border: 1px solid var(--grey);
        transition: var(--trans);
    }

    .product-card:hover {
        border-color: var(--orange);
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .product-img-wrap {
        position: relative;
        overflow: hidden;
        height: 200px;
    }

    .product-img-wrap img {
        height: 100%;
        transition: transform 0.6s ease;
    }

    .product-card:hover .product-img-wrap img {
        transform: scale(1.1);
    }

    .product-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.2rem;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .product-card:hover .product-overlay {
        opacity: 1;
    }

    .product-tag {
        display: inline-block;
        padding: 0.2rem 0.7rem;
        background: var(--orange);
        border-radius: 4px;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .accent-tag {
        background: linear-gradient(90deg, var(--orange), #ff9933);
    }

    .product-overlay p {
        font-size: 0.82rem;
        color: var(--white80);
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .product-info {
        padding: 1rem 1.2rem;
    }

    .product-info h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
        letter-spacing: 0.03em;
    }

    .product-specs {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .product-specs span {
        font-size: 0.75rem;
        color: var(--orange);
        font-weight: 600;
        letter-spacing: 0.06em;
        background: var(--orange-light);
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
    }

    /* ======================== TECHNICAL TABLE ======================== */
    #specs {
        padding: 100px 0 140px;
    }

    .table-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        overflow-x: auto;
        position: relative;
        z-index: 2;
    }

    .spec-table {
        width: 100%;
        border-collapse: collapse;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .spec-table thead tr {
        background: linear-gradient(135deg, var(--orange), var(--orange2));
    }

    .spec-table thead th {
        padding: 1.1rem 1.5rem;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-align: left;
        color: var(--white);
    }

    body.lang-ar .spec-table thead th,
    body.lang-ur .spec-table thead th {
        text-align: right;
    }

    .spec-table tbody tr {
        background: var(--dark2);
        border-bottom: 1px solid var(--grey);
        transition: var(--trans);
    }

    .spec-table tbody tr:last-child {
        border: none;
    }

    .spec-table tbody tr:hover {
        background: var(--dark3);
        border-color: var(--orange);
    }

    .spec-table tbody tr:hover td:first-child {
        color: var(--orange);
        font-weight: 600;
    }

    .spec-table tbody td {
        padding: 1rem 1.5rem;
        font-size: 0.92rem;
        color: var(--white80);
    }

    /* ======================== CABINS ======================== */
    #cabins {
        padding: 100px 0;
        background: var(--dark);
    }

    .cabins-slider-wrap {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .cabins-slider {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding-bottom: 1rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .cabins-slider::-webkit-scrollbar {
        display: none;
    }

    .cabin-card {
        flex: 0 0 280px;
        background: var(--dark2);
        border: 1px solid var(--grey);
        border-radius: var(--radius-lg);
        overflow: hidden;
        scroll-snap-align: start;
        transition: var(--trans);
    }

    .cabin-card:hover {
        border-color: var(--orange);
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .cabin-special {
        border-color: rgba(255, 102, 0, 0.4);
    }

    .cabin-img {
        height: 200px;
        overflow: hidden;
    }

    .cabin-img img {
        height: 100%;
        transition: transform 0.6s ease;
    }

    .cabin-card:hover .cabin-img img {
        transform: scale(1.08);
    }

    .cabin-info {
        padding: 1.5rem;
    }

    .cabin-model {
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--white60);
        margin-bottom: 0.4rem;
    }

    .cabin-model.accent {
        color: var(--orange);
    }

    .cabin-info h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .cabin-badge {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        background: var(--orange);
        color: var(--white);
        padding: 0.15rem 0.5rem;
        border-radius: 4px;
    }

    .cabin-info ul li {
        font-size: 0.82rem;
        color: var(--white60);
        padding: 0.3rem 0;
        border-bottom: 1px solid var(--white08);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cabin-info ul li::before {
        content: '▸';
        color: var(--orange);
        font-size: 0.7rem;
    }

    .cabin-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--dark2);
        border: 1px solid var(--grey);
        color: var(--white);
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: var(--trans);
        box-shadow: var(--shadow);
    }

    .cabin-nav.prev {
        left: -24px;
    }

    .cabin-nav.next {
        right: -24px;
    }

    .cabin-nav:hover {
        background: var(--orange);
        border-color: var(--orange);
        box-shadow: var(--shadow-orange);
    }

    /* ======================== COMPONENTS ======================== */
    #components {
        padding: 120px 0 140px;
    }

    .comp-tabs {
        max-width: 900px;
        margin: 0 auto 3rem;
        padding: 0 2rem;
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .comp-tab {
        padding: 0.6rem 1.5rem;
        background: var(--dark);
        border: 1px solid var(--grey);
        border-radius: 99px;
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--white60);
        transition: var(--trans);
        font-family: inherit;
    }

    .comp-tab:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

    .comp-tab.active {
        background: var(--orange);
        border-color: var(--orange);
        color: var(--white);
        box-shadow: var(--shadow-orange);
    }

    .comp-content {
        display: none;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .comp-content.active {
        display: block;
    }

    .comp-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .comp-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.9rem;
        padding: 2rem 1.5rem;
        background: var(--dark);
        border: 1px solid var(--grey);
        border-radius: var(--radius-lg);
        text-align: center;
        font-size: 0.92rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        transition: var(--trans);
    }

    .comp-item:hover {
        border-color: var(--orange);
        background: var(--dark3);
        transform: translateY(-4px);
    }

    .comp-item.featured {
        border-color: rgba(255, 102, 0, 0.4);
        background: linear-gradient(135deg, var(--dark2), #1a0f08);
    }

    .comp-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: var(--orange-light);
        border: 1px solid rgba(255, 102, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: var(--white60);
        transition: var(--trans);
    }

    .comp-item:hover .comp-icon {
        color: var(--orange);
        box-shadow: 0 0 16px var(--orange-glow);
    }

    .comp-item.featured .comp-icon {
        color: var(--orange);
    }

    /* ======================== CUSTOMIZATION ======================== */
    #customization {
        padding: 100px 0;
        background: var(--dark);
    }

    .cust-grid {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }

    .cust-card {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        cursor: pointer;
        border: 1px solid var(--grey);
        transition: var(--trans);
    }

    .cust-card:hover {
        border-color: var(--orange);
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    }

    .cust-img {
        height: 280px;
        overflow: hidden;
    }

    .cust-img img {
        height: 100%;
        transition: transform 0.6s ease;
    }

    .cust-card:hover .cust-img img {
        transform: scale(1.1);
    }

    .cust-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 30%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.5rem;
        transition: var(--trans);
    }

    .cust-overlay h4 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.3rem;
    }

    .cust-overlay p {
        font-size: 0.8rem;
        color: var(--white60);
        margin-bottom: 0.5rem;
    }

    .cust-series {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        color: var(--orange);
        text-transform: uppercase;
    }

    /* ======================== ESCALATORS ======================== */
    #escalators {
        padding: 120px 0 140px;
    }

    .esc-showcase {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .esc-main-img {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .esc-main-img img {
        height: 460px;
        transition: transform 0.6s ease;
    }

    .esc-main-img:hover img {
        transform: scale(1.04);
    }

    .esc-badge {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: var(--orange);
        color: var(--white);
        border-radius: 8px;
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: var(--shadow-orange);
    }

    body.lang-ar .esc-badge,
    body.lang-ur .esc-badge {
        right: auto;
        left: 1.5rem;
    }

    .esc-feat {
        display: flex;
        align-items: center;
        gap: 0.9rem;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--grey);
        font-size: 0.95rem;
        color: var(--white80);
        transition: var(--trans);
    }

    .esc-feat:last-of-type {
        border: none;
        margin-bottom: 1.5rem;
    }

    .esc-feat i {
        color: var(--orange);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .esc-feat:hover {
        color: var(--white);
        padding-left: 0.5rem;
    }

    body.lang-ar .esc-feat:hover,
    body.lang-ur .esc-feat:hover {
        padding-left: 0;
        padding-right: 0.5rem;
    }

    /* ======================== WHY CHOOSE US ======================== */
    #why {
        padding: 100px 0;
        background: var(--dark);
    }

    .why-grid {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .why-card {
        padding: 2.2rem 1.8rem;
        background: var(--dark2);
        border: 1px solid var(--grey);
        border-radius: var(--radius-lg);
        transition: var(--trans);
        position: relative;
        overflow: hidden;
    }

    .why-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 0;
        background: var(--orange);
        transition: height 0.4s ease;
        border-radius: 0 0 3px 3px;
    }

    body.lang-ar .why-card::after,
    body.lang-ur .why-card::after {
        left: auto;
        right: 0;
    }

    .why-card:hover {
        border-color: var(--orange);
        transform: translateY(-5px);
    }

    .why-card:hover::after {
        height: 100%;
    }

    .why-icon {
        width: 54px;
        height: 54px;
        border-radius: 12px;
        background: var(--orange-light);
        border: 1px solid rgba(255, 102, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--white60);
        margin-bottom: 1.3rem;
        transition: var(--trans);
    }

    .why-card:hover .why-icon {
        color: var(--orange);
        box-shadow: 0 0 16px var(--orange-glow);
    }

    .why-card h4 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.7rem;
        letter-spacing: 0.04em;
    }

    .why-card p {
        font-size: 0.9rem;
        color: var(--white60);
        line-height: 1.7;
    }

    /* ======================== TESTIMONIALS ======================== */
    #testimonials {
        padding: 120px 0 140px;
    }

    .test-slider-wrap {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .test-slider {
        position: relative;
        min-height: 280px;
    }

    .test-card {
        display: none;
        padding: 3rem;
        background: var(--dark);
        border: 1px solid var(--grey);
        border-radius: var(--radius-lg);
        position: relative;
        text-align: center;
    }

    .test-card.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .test-quote {
        font-size: 2.5rem;
        color: var(--orange);
        opacity: 0.3;
        margin-bottom: 1.5rem;
    }

    .test-card p {
        font-size: 1rem;
        color: var(--white80);
        line-height: 1.8;
        font-style: italic;
        margin-bottom: 2rem;
    }

    .test-author {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }

    .test-avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .test-author strong {
        display: block;
        font-size: 0.95rem;
        font-weight: 700;
    }

    .test-author span {
        font-size: 0.8rem;
        color: var(--orange);
        letter-spacing: 0.06em;
    }

    .test-stars {
        margin-top: 1rem;
        color: var(--orange);
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .test-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .test-controls button {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--dark2);
        border: 1px solid var(--grey);
        color: var(--white);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--trans);
    }

    .test-controls button:hover {
        background: var(--orange);
        border-color: var(--orange);
    }

    .test-dots {
        display: flex;
        gap: 8px;
    }

    /* ======================== CONTACT ======================== */
    #contact {
        padding: 100px 0;
        background: var(--dark);
    }

    .contact-grid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 4rem;
    }

    .contact-block {
        display: flex;
        gap: 1.2rem;
        margin-bottom: 2rem;
        align-items: flex-start;
    }

    .con-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: var(--orange-light);
        border: 1px solid rgba(255, 102, 0, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--orange);
        flex-shrink: 0;
    }

    .contact-block strong {
        display: block;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 0.3rem;
    }

    .contact-block p {
        font-size: 0.9rem;
        color: var(--white80);
        line-height: 1.7;
    }

    .contact-block a {
        font-size: 0.9rem;
        color: var(--white80);
        transition: color 0.3s;
    }

    .contact-block a:hover {
        color: var(--orange);
    }

    .btn-wa-con {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.2rem;
        background: #25d366;
        color: var(--white);
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 700;
        margin-top: 0.3rem;
        transition: var(--trans);
    }

    .btn-wa-con:hover {
        background: #20ba58;
        transform: translateY(-2px);
    }

    .map-placeholder {
        border-radius: var(--radius);
        overflow: hidden;
        margin-top: 0.5rem;
        border: 1px solid var(--grey);
    }

    .contact-form-wrap {
        padding: 2.5rem;
        background: var(--dark2);
        border: 1px solid var(--grey);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
    }

    .form-group {
        margin-bottom: 1.3rem;
    }

    .form-group label {
        display: block;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--white60);
        margin-bottom: 0.45rem;
    }

    .form-error {
        display: block;
        font-size: 0.78rem;
        color: #ff4444;
        margin-top: 0.3rem;
        min-height: 1em;
    }

    .form-success {
        display: none;
        text-align: center;
        padding: 1rem;
        background: rgba(37, 211, 102, 0.1);
        border: 1px solid rgba(37, 211, 102, 0.3);
        border-radius: var(--radius);
        font-size: 0.9rem;
        color: #25d366;
        margin-top: 1rem;
    }

    /* ======================== FOOTER ======================== */
    #footer {
        background: var(--dark2);
        border-top: 1px solid var(--grey);
    }

    .footer-top {
        max-width: 1300px;
        margin: 0 auto;
        padding: 5rem 2rem 3rem;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 3rem;
    }

    .footer-brand {}

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        margin-bottom: 1.2rem;
    }

    .footer-desc {
        font-size: 0.88rem;
        color: var(--white60);
        line-height: 1.8;
        max-width: 320px;
        margin-bottom: 1.5rem;
    }

    .footer-social {
        display: flex;
        gap: 0.75rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--dark3);
        border: 1px solid var(--grey);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        transition: var(--trans);
        color: var(--white60);
    }

    .footer-social a:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow-orange);
    }

    .footer-links h4 {
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 1.5rem;
    }

    .footer-links ul li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.35rem 0;
    }

    .footer-links ul li a {
        font-size: 0.88rem;
        color: var(--white60);
        transition: color 0.3s;
    }

    .footer-links ul li a:hover {
        color: var(--white);
    }

    .footer-links ul li i {
        font-size: 0.8rem;
        color: var(--orange);
    }

    .footer-bottom {
        border-top: 1px solid var(--grey);
        padding: 1.5rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
        font-size: 0.8rem;
        color: var(--white60);
    }

    /* ======================== FLOATING BUTTONS ======================== */
    .fab-whatsapp {
        position: fixed;
        bottom: 5.5rem;
        right: 2rem;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: #25d366;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.7rem;
        z-index: 900;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transition: var(--trans);
    }

    body.lang-ar .fab-whatsapp,
    body.lang-ur .fab-whatsapp {
        right: auto;
        left: 2rem;
    }

    .fab-whatsapp:hover {
        transform: scale(1.1) translateY(-3px);
    }

    .fab-pulse {
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 3px solid rgba(37, 211, 102, 0.4);
        animation: pulse 2.5s ease infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 1;
        }

        100% {
            transform: scale(1.4);
            opacity: 0;
        }
    }

    .scroll-top {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--orange);
        color: var(--white);
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 900;
        opacity: 0;
        transform: translateY(20px);
        transition: var(--trans);
        box-shadow: var(--shadow-orange);
    }

    body.lang-ar .scroll-top,
    body.lang-ur .scroll-top {
        right: auto;
        left: 2rem;
    }

    .scroll-top.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .scroll-top:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px var(--orange-glow);
    }

    /* ======================== RESPONSIVE ======================== */
    @media (max-width: 1200px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .footer-top {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 1024px) {
        .mvv-grid {
            grid-template-columns: 1fr;
            max-width: 600px;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .about-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .esc-showcase {
            grid-template-columns: 1fr;
        }

        .contact-grid {
            grid-template-columns: 1fr;
        }

        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .cust-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .comp-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        :root {
            --nav-h: 68px;
        }

        .nav-links {
            display: none;
            position: fixed;
            top: var(--nav-h);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 10, 10, 0.97);
            backdrop-filter: blur(20px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            z-index: 999;
        }

        .nav-links.open {
            display: flex;
            animation: menuOpen 0.4s ease;
        }

        @keyframes menuOpen {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .nav-links li a {
            font-size: 1.2rem;
        }

        .hamburger {
            display: flex;
        }

        .btn-nav {
            display: none;
        }

        .stats-container {
            justify-content: center;
        }

        .stat-divider {
            display: none;
        }

        .hero-scroll-hint {
            display: none;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .products-grid {
            grid-template-columns: 1fr;
        }

        .why-grid {
            grid-template-columns: 1fr;
        }

        .cust-grid {
            grid-template-columns: 1fr;
        }

        .comp-grid {
            grid-template-columns: 1fr;
        }

        .about-services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-top {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
        }

        section {
            padding: 70px 0;
        }

        .contact-form-wrap {
            padding: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 3rem;
        }

        .hero-btns {
            flex-direction: column;
            align-items: center;
        }

        .about-services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .cabin-nav.prev {
            left: -10px;
        }

        .cabin-nav.next {
            right: -10px;
        }
    }

    /* RTL OVERRIDES */
    body.lang-ar,
    body.lang-ur {
        text-align: right;
    }

    body.lang-ar .nav-links,
    body.lang-ur .nav-links {
        margin-left: 0;
        margin-right: auto;
    }

    body.lang-ar .hero-content,
    body.lang-ur .hero-content {
        direction: rtl;
    }

    body.lang-ar .about-img-main,
    body.lang-ur .about-img-main {
        direction: ltr;
    }

    body.lang-ar .footer-bottom,
    body.lang-ur .footer-bottom {
        flex-direction: row-reverse;
    }

    body.lang-ar .section-diagonal::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
    }

    body.lang-ar .section-diagonal-rev::before {
        clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    }




      /* BREADCRUMB WRAP */
.mosh-breadcrumb-wrap {
  background: linear-gradient(180deg, #0d0d0d, #111);
  padding: 90px 0 40px;
  position: relative;
  overflow: hidden;
}



/* BOX */
.mosh-breadcrumb-box {
  text-align: center;
}

/* TITLE */
.mosh-breadcrumb-title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* LIST */
.mosh-breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ITEM */
.mosh-breadcrumb-item {
  font-size: 14px;
  color: #aaa;
  position: relative;
}

/* LINKS */
.mosh-breadcrumb-item a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.mosh-breadcrumb-item a:hover {
  color: #ff7a00;
}

/* SEPARATOR */
.mosh-breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #555;
}

/* ACTIVE */
.mosh-breadcrumb-item.active {
  color: #ff7a00;
  font-weight: 600;
}


/* WRAP */
.mosh-gallery-wrap {
  background: #0b0b0b;
  padding: 80px 20px;
}

/* CONTAINER */
.mosh-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.mosh-title {
  text-align: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.mosh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ITEM */
.mosh-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: 0.4s;
}

.mosh-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER */
.mosh-gallery-item:hover img {
  transform: scale(1.1);
}

.mosh-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,122,0,0.25);
}

/* LIGHTBOX */
.mosh-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.mosh-lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  animation: zoomIn 0.4s ease;
}

.mosh-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ANIMATION */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mosh-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mosh-gallery-grid {
    grid-template-columns: 1fr;
  }
}