/* ==========================================================================
   SHOROUQ INVESTMENT - MAIN CUSTOM STYLESHEET (BOOTSTRAP 5 COMPLIANT)
   Clean, production-ready custom CSS (Free of Tailwind)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Brand Root Variables */
:root {
    --primary: #B6A999;
    --primary-hover: #D7D1C5;
    --primary-rgb: 182, 169, 153;
    --bg-dark: #000000;
    --bg-dark-rgb: 0, 0, 0;
    --text-gold: #B6A999;
    --bs-primary: #B6A999;
    --bs-primary-rgb: 182, 169, 153;
}

/* Base Body & Typography */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background-color: #111111;
}

::-webkit-scrollbar-thumb {
    background-color: #333333;
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: var(--primary);
    }

/* Global Utility & Brand Classes */
.text-gold {
    color: var(--primary) !important;
}

.text-gold-hover:hover {
    color: var(--primary-hover) !important;
}

.bg-gold {
    background-color: var(--primary) !important;
}

.border-gold {
    border-color: var(--primary) !important;
}

.border-opacity-20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.border-opacity-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

#header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
    padding-top: 1.4rem;
    padding-bottom: 1.5rem;
    background-color: transparent;
}

    #header-sticky.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: rgba(0, 0, 0, 0.95) !important;
    }

/* Agar koi global dropdown overlay active ho rahi hai toh usay khatam karein */
.dropdown-overlay,
#search-overlay ~ .dropdown-overlay {
    display: none !important;
    backdrop-filter: none !important;
    background: transparent !important;
}

/* Mega-menu & Desktop Dropdown Overlay Backdrop */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1020;
    pointer-events: none;
}

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

/* Navigation Links */
.nav-link-custom {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.25rem;
}

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

    .nav-link-custom .dropdown-chevron {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
    }

.nav-item-custom:hover .nav-link-custom .dropdown-chevron {
    transform: rotate(180deg);
}

/* Mega-menu Dropdown Container */
.nav-item-custom {
    position: relative;
}

.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    width: max-content;
    padding: 20px 25px;
    /* Background solid dark rahega, blur bilkul nahi hoga */
    background: #000000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1040;
}

.nav-item-custom:hover .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 8px 0;
    color: #ffffff !important;
    background: transparent !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

    .mega-dropdown-item:hover {
        color: var(--primary) !important;
        background: transparent !important;
        padding-left: 5px;
    }

.mega-dropdown-item {
    position: relative;
    display: block;
    width: max-content;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    color: #fff !important;
    background: transparent !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

    .mega-dropdown-item:hover {
        color: #fff !important;
        background: transparent !important;
    }

    .mega-dropdown-item::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 0;
        height: 2px;
        background: #fff;
        transition: width .25s ease;
    }

    .mega-dropdown-item:hover::after {
        width: 100%;
    }
/* Language Pill Button */
.btn-lang-pill {
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-lang-pill:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

/* Header Search Trigger Button */
.btn-search-trigger {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.15rem;
    padding: 0.4rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .btn-search-trigger:hover {
        color: var(--primary);
    }

#header-sticky {
    transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

    #header-sticky.header-hidden {
        transform: translateY(-100%);
    }
/* ==========================================================================
   FULL-SCREEN SEARCH OVERLAY
   ========================================================================== */

#search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: start;
    justify-content: center;
    opacity: 0.9;
}

    #search-overlay.active {
        transform: translateY(0);
    }

.search-input-custom {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary);
    color: #ffffff;
    font-size: 1.4rem;
    padding: 0.75rem 2.5rem 0.75rem 0;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
}

    .search-input-custom:focus {
        border-color: #ffffff;
        box-shadow: none;
        background: transparent;
        color: #ffffff;
    }

    .search-input-custom::placeholder {
        color: rgba(255, 255, 255, 0.45);
    }

.search-close-btn {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .search-close-btn:hover {
        color: var(--primary);
        transform: rotate(90deg);
    }

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */

#mobileNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    padding: 2rem 1.75rem;
}

    #mobileNav.active {
        transform: translateX(0);
    }

.mobile-nav-link {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

    .mobile-nav-link:hover {
        color: var(--primary);
        padding-left: 0.5rem;
    }

/* ==========================================================================
   INTERACTIVE CTA LINK WITH ROTATING STAR (.btn-cs)
   ========================================================================== */

.btn-cs
 {
    position: relative;
    display: inline-flex;
    align-items: center;
    column-gap: 0.75rem;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.25rem;
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    font-size: 25px !important;
    font-weight: 600;
    color: var(--primary) !important;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}

.btn-cs::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease-in-out;
}

.btn-cs svg {
    fill: var(--primary);
    transform: rotate(0);
    transform-origin: center center;
    transition: transform 0.4s ease-in-out, fill 0.3s ease-in-out;
    position: relative;
}

.btn-cs:hover {
    color: #ffffff;
}

    .btn-cs:hover::after {
        width: 100%;
    }

    .btn-cs:hover svg {
        fill: #ffffff;
        transform: rotate(120deg);
    }

/* Footer variant */
.btn-cs-footer {
    position: relative;
    display: inline-flex;
    align-items: center;
    column-gap: 0.75rem;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.25rem;
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--primary);
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}

    .btn-cs-footer::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background-color: var(--primary);
        transition: width 0.3s ease-in-out;
    }

    .btn-cs-footer:hover {
        color: #ffffff;
    }

        .btn-cs-footer:hover::after {
            width: 100%;
        }

/* ==========================================================================
   SECTION 1: COUNTER STATISTICS
   ========================================================================== */

.stat-counter-item {
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.3s ease;
}

    .stat-counter-item:hover {
        transform: translateY(-4px);
    }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

@media (min-width: 992px) {
    .stat-number {
        font-size: 3.5rem;
    }
}

.stat-label {
    font-size: 0.9rem;
    color: #e5e5e5;
    line-height: 1.4;
}

/* ==========================================================================
   SECTION 2: 2x2 INDUSTRY CARDS
   ========================================================================== */

.industry-card {
    position: relative;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    /* CARD HOVER */
    .industry-card:hover {
        background-color: #ffffff !important;
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
    }

/* IMAGE */
.industry-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.industry-card:hover .industry-card-img {
    opacity: 0;
    transform: scale(1.08);
}

/* OVERLAY */
.industry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.15) 100% );
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    transition: all 0.4s ease;
    z-index: 2;
}

/* HOVER PAR OVERLAY WHITE */
.industry-card:hover .industry-card-overlay {
    background: #ffffff !important;
    color: #000000 !important;
}

/* TITLE */
.industry-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 0.65rem;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-card-title {
    color: #000000 !important;
}

/* TEXT */
.industry-card-text {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #e2e2e2;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-card-text {
    color: #000000 !important;
}

/* WATERMARK SVG */
.industry-card-watermark {
    position: absolute;
    top: 0rem;
    right: 0rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
    z-index: 5;
}

/* HOVER PAR SVG SHOW */
.industry-card:hover .industry-card-watermark {
    opacity: 0.55;
    visibility: visible;
    transform: scale(1);
}

/* ==========================================================================
   SECTION 3: PORTFOLIO CAROUSEL
   ========================================================================== */

.portfolio-slide-card {
    height: 540px;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.portfolio-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-slide-card:hover .portfolio-slide-img {
    transform: scale(1.07);
}

.portfolio-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 2;
}

.portfolio-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #ffffff;
    z-index: 3;
}

.portfolio-slide-title {
    font-size: 1.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: transform 0.4s ease, color 0.3s ease;
}

.portfolio-slide-card:hover .portfolio-slide-title {
    transform: translateY(-6px);
    color: var(--primary);
}

.portfolio-slide-text-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.portfolio-slide-card:hover .portfolio-slide-text-wrapper {
    max-height: 220px;
    opacity: 1;
}

.portfolio-slide-text {
    font-size: 0.88rem;
    color: #d1d5db;
    line-height: 1.6;
    padding-top: 0.5rem;
    margin-bottom: 0;
}

/* Swiper Navigation Custom Buttons */
.swiper-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 10;
}

    .swiper-nav-btn:hover {
        background-color: #000000;
        border-color: var(--primary);
        color: #ffffff;
        transform: scale(1.08);
    }

/* ==========================================================================
   SECTION 4: PARTNERING FOR GROWTH
   ========================================================================== */
.section-growth-banner {
    /* position: relative; */
    /* width: 100%; */
    /* min-height: 177px; */
    /* height: 80vh; */
    /* max-height: 850px; */
    /* display: flex; */
    /* align-items: center; */
    /* overflow: hidden; */
    /* background-color: #000000; */
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0.001px);
    inset: 0px auto auto 0px;
    margin: 0px;
    max-width: 1592px;
    width: 1592px;
    max-height: 731px;
    height: 731px;
    padding: 0px;
}



@media (min-width: 992px) {
    .growth-card-positioned {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 6%;
    }
}

.growth-watermark {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    opacity: 1.35;
    pointer-events: none;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

    .footer-link:hover {
        color: var(--primary);
        padding-left: 0.35rem;
    }

.footer-contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

    .footer-contact-link:hover {
        color: var(--primary);
    }
/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 767.98px) {
    .industry-card {
        height: 280px;
    }

    .portfolio-slide-card {
        height: 460px;
    }

    .growth-glass-card {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }
}
/* Section overall height increase */
.py-lg-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

@media (min-width: 992px) {
    .mt-lg-6 {
        margin-top: 4rem !important;
    }
}
/* Stat items ki height/padding barhana */
.stat-counter-item {
    padding: 2.5rem 1.5rem;
    min-height: 140px;
    text-align: left;
    transition: transform 0.3s ease;
}

.stat-number {
    font-size: 3.5rem;
}

@media (min-width: 992px) {
    .stat-number {
        font-size: 4rem;
    }
}

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

.growth-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.growth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.25) 100% );
    z-index: 2;
}

.growth-card-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.growth-glass-card {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 658px;
    background: #000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3.25rem 5rem;
    color: rgb(182 169 153);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
    margin-left: 0;
}
/*.growth-glass-card {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 661px;
    background: #000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3.25rem 3rem;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
    margin-left: 0;
}*/

.growth-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.growth-card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 1.75rem;
}
/* Responsive Scaling */
@media (max-width: 991.98px) {
    .section-growth-banner {
        min-height: 560px;
        height: auto;
        padding: 4rem 0;
    }

    .growth-overlay {
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.70) 100% );
    }

    .growth-glass-card {
        padding: 2.5rem 2rem;
        max-width: 100%;
    }

    .growth-card-title {
        font-size: 1.95rem;
    }
}

@media (max-width: 575.98px) {
    .section-growth-banner {
        padding: 2.5rem 0;
    }

    .growth-glass-card {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }

    .growth-card-title {
        font-size: 1.65rem;
    }

    .growth-card-text {
        font-size: 0.9rem;
    }
}

.py-5, .py-lg-6 {
    padding-top: 10rem !important;
    padding-bottom: 8rem !important;
}

.paddingsubheading {
    padding-top: 0rem !important;
    padding-bottom: 5rem !important;
}
/*Swier css*/
.swiper-container {
    width: 100%;
    overflow: visible !important;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    width: 452px !important;
    margin-right: 30px !important;
    flex-shrink: 0;
}

.portfolio-strip {
    background: #050505;
    color: #fff;
    border-bottom: 1px solid #444;
}
.portfolio-custom {
    width: 100%;
    max-width: 1359px;
    /* max-height: 128px; */
    margin: auto;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.portfolioemail {
    color: #fff;
    font-size: 17px;
}

.portfolio-heading {
    margin: 0;
    font-size: 50px !important;
    font-weight: 500;
}

.portfolio-link {
    color: white;
    text-decoration: none;
}

.portfolio-heading span {
    color: var(--gold);
}
.portfolio:hover {
    color: var(--gold);
}
.portfolio-strip .portfolio-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
[dir="rtl"] .future-nav-btn i {
    transform: scaleX(-1);
    display: inline-block;
}

.portfolio-slide-card {
    width: 452px;
}
/*contect use page */
/* =========================================================
   GLOBAL
========================================================= */
.btn-cs:hover {
    color: #bfb3a5 !important;
}

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

body {
    font-family: 'Montserrat',Arial,sans-serif;
    overflow-x: hidden;
    color: #050505;
}

a {
    text-decoration: none;
}

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

:root {
    --black: #050505;
    --gold: #c4b39e;
    --gold-dark: #a7957e;
}
/* =========================================================
   NAVBAR
========================================================= */

.navbar-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 4%;
    transition: .4s ease;
}

    .navbar-main.scrolled {
        position: fixed;
        background: rgba(0,0,0,.94);
        backdrop-filter: blur(10px);
        padding-top: 11px;
        padding-bottom: 11px;
    }
/* LOGO */

.logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

    .logo:hover {
        color: #fff;
    }


.logo-symbol {
    width: 38px;
    height: 38px;
    margin-right: 8px;
}
/* MENU */

.navbar-nav {
    gap: 27px;
}

.navbar-main .nav-link {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 0 !important;
    position: relative;
}


    .navbar-main .nav-link:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background: #fff;
        transition: .3s;
    }


    .navbar-main .nav-link:hover:after {
        width: 100%;
    }
/* LANGUAGE */

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
}


.language {
    width: 43px;
    height: 22px;
    border: 1px solid #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 8px;
}


.language-circle {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #8c9e88;
}
/* =========================================================
   HERO
========================================================= */

.contactushero {
    height: 575px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: linear-gradient( rgba(5, 20, 32, .42), rgba(0, 8, 18, .63) ), url('/Content/images/contact-us-subheader.jpg');
    background-size: cover;
    background-position: center;
}


.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.22), transparent 70% );
}


.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 0 76px 4.2%;
}


.hero-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600 !important;
    letter-spacing: -1px;
    margin: 0;
}
/* =========================================================
   CONTACT BLACK SECTION
========================================================= */

.contact-section {
    background: #050505;
    color: #fff;
    padding: 88px 0 82px;
}


.contact-container {
    width: 82%;
    max-width: 1180px;
    margin: auto;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}


.contact-left {
    padding-right: 20px;
}


.contact-title {
    color: var(--gold);
    font-size: 50px;
    line-height: 1.18;
    font-weight: 600;
    margin-bottom: 47px;
}


.contact-description {
    color: #fff;
    font-size: 17px;
    line-height: 1.7;
    max-width: 405px;
    margin-bottom: 42px;
}


.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 40px;
}


.detail-title {
    color: var(--gold);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 5px;
}


.detail-text {
    color: #fff;
    font-size: 17px;
}


.hours-title {
    color: var(--gold);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 6px;
}


.hours-text {
    color: #fff;
    font-size: 17px;
    line-height: 1.65;
}
/* =========================================================
   FORM
========================================================= */

.form-column {
    border-left: 1px solid #9b8c78;
    padding-left: 54px;
}


.form-title {
    color: var(--gold);
    font-size: 50px;
    font-weight: 600;
    margin: 20px 0 43px;
}


.form-control {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #776957 !important;
    border-radius: 0 !important;
    color: #fff !important;
    box-shadow: none !important;
    padding: 11px 0 !important;
    font-size: 23px !important;
    margin-bottom: 30px;
}


    .form-control::placeholder {
        color: #888078;
    }


textarea.form-control {
    height: 60px;
    resize: none;
}


.submit-btn {
    background: none;
    border: 0;
    color: var(--gold);
    font-size: 27px;
    display: flex;
    align-items: center;
    gap: 14px;
}


.submit-icon {
    font-size: 21px;
}
/* =========================================================
   MAP
========================================================= */

.map-section {
    background: #050505;
    padding: 0 0 88px;
}


.map-container {
    width: 90%;
    max-width: 1170px;
    height: 315px;
    margin: auto;
}


    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: #fff;
    padding: 82px 0 90px;
}


.faq-container {
    width: 100%;
    max-width: 1282px;
    margin: auto;
}


.faq-grid {
    display: grid;
    grid-template-columns: 1.8fr 2.4fr;
    gap: 63px;
}


.faq-title {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
}


.faq-description {
    font-size: 17px;
    line-height: 1.7;
    max-width: 568px;
    margin-bottom: 39px;
}


.faq-contact {
    color: var(--gold-dark);
    font-size: 25px;
}

[dir="rtl"] .accordion-button {
    display: flex;
    flex-direction: row;
    justify-content: revert;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: right;
    /* padding-right: 20px; */
    padding-left: 20px;
    box-sizing: border-box;
}

    [dir="rtl"] .accordion-button::after {
        margin: 0;
        flex-shrink: 0;
    }

[dir="rtl"] .accordion-body {
    text-align: right[dir="rtl"] .accordion-button {
        display: flex;
        flex-direction: row;
        justify-content: revert;
        align-items: center;
        gap: 8px;
        width: 100%;
        text-align: right;
        /* padding-right: 20px; */
        padding-left: 20px;
        box-sizing: border-box;
    }
}

/* ACCORDION */

.accordion-item {
    border: 0;
    border-bottom: 1px solid #666;
}


.accordion-button {
    background: #fff !important;
    box-shadow: none !important;
    color: #080808 !important;
    padding: 19px 0;
    font-size: 20px !important;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-weight: 600;
}


    .accordion-button:before {
        content: "+";
        width: 24px;
        height: 24px;
        background: #050505;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 34px;
        flex-shrink: 0;
        font-size: 14px;
    }


    .accordion-button:not(.collapsed):before {
        content: "−";
    }


    .accordion-button:after {
        display: none;
    }


.accordion-body {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 0 18px 58px;
    color: #1f1f1f;
}
/* =========================================================
   ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(50px);
}


.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}


.reveal-right {
    opacity: 0;
    transform: translateX(60px);
}
/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px) {

    .navbar-nav {
        gap: 10px;
    }

    .navbar-main .nav-link {
        font-size: 9px;
    }


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


    .form-column {
        border-left: 0;
        border-top: 1px solid #9b8c78;
        padding-left: 0;
        padding-top: 45px;
    }


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


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


@media(max-width:767px) {

    .navbar-main {
        padding: 12px 18px;
    }


        .navbar-main .navbar-collapse {
            background: #050505;
            padding: 15px;
            margin-top: 12px;
        }


    .hero {
        height: 390px;
    }


    .hero-content {
        padding: 0 22px 52px;
    }


    .hero-title {
        font-size: 27px;
    }


    .contact-container {
        width: 88%;
    }


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


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


    .contact-details {
        gap: 15px;
    }


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


    .map-container {
        width: 100%;
        height: 280px;
    }


    .faq-container {
        width: 88%;
    }


    .faq-title {
        font-size: 28px;
    }


    .footer-container {
        width: 88%;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
/*contect use page */
/*Careeer Page */
/* =========================================================
   GLOBAL
========================================================= */

:root {
    --black: #050505;
    --gold: #c6b59f;
    --light-border: #d7d7d7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: #050505;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}
/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 4%;
    transition: all .35s ease;
}


    .main-navbar.scrolled {
        position: fixed;
        background: rgba(0, 0, 0, .94);
        backdrop-filter: blur(12px);
        padding-top: 10px;
        padding-bottom: 10px;
    }
/* LOGO */

.logo {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    line-height: .95;
}


.logo-icon {
    width: 39px;
    height: 39px;
    margin-right: 8px;
}
/* NAV LINKS */

.main-navbar .nav-link {
    position: relative;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 0 !important;
    margin: 0 13px;
}


    .main-navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background: #fff;
        transition: .3s ease;
    }


    .main-navbar .nav-link:hover::after {
        width: 100%;
    }
/* RIGHT NAV */

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}


.language {
    width: 47px;
    height: 23px;
    border: 1px solid #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 8px;
}


.language-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #77917e;
}
/* =========================================================
   careerheroHERO
========================================================= */

.careerhero {
    height: 596px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: linear-gradient( rgba(5, 20, 32, .42), rgba(0, 8, 18, .63) ), url('/Content/images/career-subheader.jpg');
    background-size: cover;
    background-position: center center;
}


    .careerhero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 0, 0, .48), transparent 65% );
    }


.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 88px 4.1%;
    color: #fff;
}


.hero-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -1.3px;
}
/* =========================================================
   WHY WORK SECTION
========================================================= */

.why-section {
    background: #fff;
    padding: 90px 0 105px;
}


.container-custom {
    width: 100%;
    max-width: 1268px;
    /* max-height: 128px; */
    margin: auto;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}


.section-heading {
    margin: 0 0 38px;
    font-size: 50px;
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -1px;
}


.why-text {
    max-width: 573px;
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 38px;
}


.apply-link {
    color: var(--gold);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
}


    .apply-link:hover {
        color: #a99782;
    }


.apply-symbol {
    font-size: 21px;
}


.why-image {
    width: 100%;
    height: 310px;
    object-fit: cover;
}
/* =========================================================
   JOBS
========================================================= */

.jobs-section {
    background: #fff;
    padding-bottom: 100px;
}


.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}


.jobs-heading {
    margin: 0;
    font-size: 50px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -1px;
}


.category-box {
    width: 205px;
}


    .category-box label {
        display: block;
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 6px;
    }


    .category-box select {
        width: 100%;
        height: 42px;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 3px;
        padding: 0 12px;
        font-size: 17px;
    }
/* JOB GRID */

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}


.job-item {
    min-height: 92px;
    border-top: 1px solid var(--light-border);
    padding: 19px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: .25s ease;
}


    .job-item:last-child {
        border-bottom: 1px solid var(--light-border);
    }


    .job-item:hover {
        padding-left: 8px;
        background: rgba(198,181,159,.04);
    }

.job-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 7px;
}


.job-info {
    font-size: 17px;
    margin: 0 0 5px;
    line-height: 1.35;
    max-width: 403px;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


    .job-info strong {
        font-weight: 700;
    }


.job-apply {
    white-space: nowrap;
    color: var(--gold);
    font-size: 19px !important;
}


    .job-apply i {
        font-size: 19px;
        margin-left: 9px;
    }
/* =========================================================
   CONTACT BAR
========================================================= */

.contact-strip {
    background: #050505;
    color: #fff;
    border-bottom: 1px solid #444;
}

.careeeres {
    width: 100%;
    max-width: 1268px;
    /* max-height: 128px; */
    margin: auto;
    padding-top: 2rem;
    padding-bottom: 1rem;
}
.careers-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    column-gap: 0.75rem;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.25rem;
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    font-size: 48px !important;
    font-weight: 600;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}
.contact-strip .careeeres {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.careereemail {
    color: #fff;
    font-size: 17px;

}

.career-heading {
    margin: 0;
    font-size: 50px !important;
    font-weight: 500;
}
.careeeres-link {
    color: white;
    text-decoration: none;
}
.career-heading span {
    color: var(--gold);
}


.contact-email {
    color: #fff;
    font-size: 10px;
}


    .contact-email:hover {
        color: var(--gold);
    }
/* =========================================================
   SCROLL ANIMATION
========================================================= */
/* =========================================================
   TABLET
========================================================= */

@media(max-width: 991px) {

    .main-navbar .nav-link {
        margin: 0 6px;
        font-size: 9px;
    }


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


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


    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 767px) {

    .main-navbar {
        padding: 13px 18px;
    }


        .main-navbar .navbar-collapse {
            background: #050505;
            margin-top: 10px;
            padding: 15px;
        }


        .main-navbar .nav-link {
            margin: 8px 0;
            font-size: 10px;
        }


    .careerhero {
        height: 410px;
    }


    .hero-content {
        padding: 0 22px 55px;
    }


    .hero-title {
        font-size: 27px;
    }


    .container-custom {
        width: 88%;
    }


    .why-section {
        padding: 65px 0 70px;
    }


    .section-heading,
    .jobs-heading {
        font-size: 29px;
    }


    .why-image {
        height: 250px;
    }


    .jobs-header {
        display: block;
    }


    .category-box {
        width: 100%;
        margin-top: 22px;
    }


    .contact-strip .container-custom {
        display: block;
    }


    .contact-email {
        display: block;
        margin-top: 15px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
/*Careeer Page */
/*Whate We Do Page */
/* =========================================
   GLOBAL
========================================= */

:root {
    --gold: #c9bda9;
    --gold-light: #d7d1c5;
    --black: #050505;
    --text: #111;
    --white: #fff;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: #fff;
}
/* =========================================
   HERO
========================================= */

.whatwedohero {
    height: 520px;
    background-image: linear-gradient(rgba(5, 20, 32, .42), rgba(0, 8, 18, .63)), url('/Content/images/service-subheader-image.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .08) 55%, rgba(0, 0, 0, .15) );
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 90px;
}

.hero h1 {
    color: #fff;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0;
    letter-spacing: -.4px;
}

    .hero h1 span {
        padding: 0 4px;
    }
/* =========================================
   INTRO
========================================= */

.intro {
    background: #fff;
    border-bottom: 1px solid #aaa;
}

    .intro h2 {
        font-size: 50px;
        line-height: 1.35;
        font-weight: 600;
        margin: 0;
    }

    .intro p {
        font-size: 17px;
        line-height: 1.55;
        margin: 0 0 18px;
        max-width: 510px;
    }

.contact-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #b6aa98;
    text-decoration: none;
    padding-bottom: 4px;
}

    .contact-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background: #b6aa98;
        transition: width .35s ease;
    }

    .contact-link:hover::after {
        width: 100%;
    }

    .contact-link span {
        font-size: 14px;
        margin-left: 4px;
        display: inline-flex;
        transition: transform .35s ease;
    }

        .contact-link span svg {
            transition: transform .5s ease;
        }

    .contact-link:hover span {
        transform: translateX(6px);
    }

        .contact-link:hover span svg {
            transform: rotate(360deg);
        }
/* =========================================
   SERVICE SECTION
========================================= */

.service-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid #aaa;
}
/* =========================================
   LARGE SERVICE CARD
========================================= */

.service-card {
    position: relative;
    min-height: 650px;
    padding: 35px 0 50px;
    transition: background-color .65s cubic-bezier(.22, .61, .36, 1), box-shadow .65s ease, transform .65s cubic-bezier(.22, .61, .36, 1);
}
    /* =========================================
   CARD PATTERN
========================================= */

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('/Content/images/Warehousing-pattern.png');
        background-size: auto;
        background-position: center;
        background-repeat: repeat;
        opacity: 0;
        transition: opacity .65s ease;
        pointer-events: none;
    }
    /* =========================================
   CARD HOVER
========================================= */

    .service-card:hover {
        background: #050505;
        color: #fff;
    }

        .service-card:hover::before {
            opacity: 1.1;
        }
    /* =========================================
   CONTAINER
========================================= */

    .service-card .container {
        position: relative;
        z-index: 2;
    }
/* =========================================
   LEFT CONTENT
========================================= */

.service-copy {
    position: relative;
    z-index: 2;
    padding-right: 35px;
}
/* =========================================
   SERVICE ICON
========================================= */

.service-icon {
    font-size: 58px;
    color: var(--gold);
    height: 80px;
    display: flex;
    align-items: center;
    transition: color .5s ease;
}
/* =========================================
   SERVICE HEADING
========================================= */

.service-copy h2 {
    font-size: 52px;
    line-height: 1.22;
    margin: 18px 0 55px;
    color: #b9ad9c;
    font-weight: 600;
    letter-spacing: -1.5px;
    transition: color .5s ease;
}
/* =========================================
   SERVICE PARAGRAPHS
========================================= */

.service-copy p {
    font-size: 17px;
    line-height: 1.55;
    margin: 0 0 48px;
    max-width: 700px;
    transition: color .5s ease;
}
/* =========================================
   HOVER TEXT
========================================= */

.service-card:hover .service-copy h2 {
    color: #c9bda9;
}

.service-card:hover .service-copy p {
    color: #fff;
}

.service-card:hover .service-icon {
    color: #c9bda9;
}
/* =========================================
   RIGHT IMAGE
========================================= */

.service-image-wrap {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
}
    /* =========================================
   BIG IMAGE
========================================= */

    .service-image-wrap img {
        width: 100%;
        height: 535px;
        object-fit: cover;
        display: block;
        transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .7s ease;
    }
/* =========================================
   IMAGE HOVER
========================================= */

.service-card:hover .service-image-wrap img {
    transform: scale(1.045);
    filter: saturate(1.08);
}
/* =========================================
   CORNER SVG
========================================= */

.corner-mark {
    position: absolute;
    right: 0;
    top: 0;
    color: #d9cfbf;
    background: rgba(0, 0, 0, .05);
    font-size: 35px;
    line-height: 1;
    padding: 8px 12px;
}
/* =========================================
   SCROLL REVEAL
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity .75s ease, transform .85s cubic-bezier(.22, .61, .36, 1);
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }
/* =========================================
   FOOTER
========================================= */

footer {
    background: #000;
    color: #fff;
}
/* =========================================
   FOOTER CONTACT
========================================= */

.footer-contact {
    border-top: 1px solid #222;
    border-bottom: 1px solid #333;
    padding: 22px 0;
}

    .footer-contact h3 {
        font-size: 22px;
        font-weight: 400;
        margin: 0;
    }

        .footer-contact h3 span {
            color: #bcae99;
            font-size: 16px;
        }

    .footer-contact a {
        font-size: 8px;
        color: #fff;
        text-decoration: none;
    }
/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
    padding: 30px 0 25px;
}
/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: .9;
}
/* =========================================
   BRAND MARK
========================================= */

.brand-mark {
    font-size: 31px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 36px;
    transform: skewY(-12deg);
    border-left: 4px solid #fff;
    border-right: 4px solid #fff;
}
/* =========================================
   FOOTER META
========================================= */

.footer-meta {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 7px;
    color: #ddd;
}

    .footer-meta i {
        color: #b9ad9c;
        margin-right: 4px;
    }
/* =========================================
   FOOTER HEADINGS
========================================= */

.footer-main h6 {
    font-size: 8px;
    margin: 0 0 13px;
    color: #b9ad9c;
}
/* =========================================
   FOOTER LINKS
========================================= */

.footer-main a {
    display: block;
    font-size: 7px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 9px;
}
/* =========================================
   COPYRIGHT
========================================= */

.copyright {
    border-top: 1px solid #242424;
    text-align: center;
    padding: 12px 0;
    font-size: 6px;
    color: #ddd;
}
/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1200px) {

    .hero {
        height: 550px;
    }

    .service-section {
        padding: 0;
    }

    .service-card {
        min-height: 650px;
        padding: 35px 0 50px;
    }

    .service-icon {
        font-size: 64px;
        height: 90px;
    }

    .service-copy h2 {
        font-size: 54px;
        line-height: 1.22;
        margin-top: 15px;
        margin-bottom: 58px;
    }

    .service-copy p {
        font-size: 18px;
        line-height: 1.55;
        margin-bottom: 48px;
        max-width: 700px;
    }

    .service-image-wrap img {
        height: 535px;
    }
}
/* =========================================
   DESKTOP / TABLET
========================================= */

@media (max-width: 1199.98px) and (min-width: 992px) {

    .hero {
        height: 480px;
    }

    .service-card {
        min-height: 590px;
    }

    .service-copy h2 {
        font-size: 43px;
    }

    .service-copy p {
        font-size: 14px;
    }

    .service-image-wrap img {
        height: 480px;
    }
}
/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .hero {
        height: 420px;
    }

    .hero-content {
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .intro h2 {
        font-size: 30px;
    }
    /* SERVICE */

    .service-section {
        min-height: auto;
        padding: 0;
    }

    .service-card {
        min-height: auto;
        padding: 40px 0 50px;
    }

    .service-copy {
        padding-right: 0;
    }

    .service-icon {
        font-size: 48px;
        height: 65px;
    }

    .service-copy h2 {
        font-size: 40px;
        margin: 15px 0 35px;
    }

    .service-copy p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .service-image-wrap {
        margin-top: 30px;
    }

        .service-image-wrap img {
            height: 420px;
        }
    /* FOOTER */

    .footer-contact .container {
        gap: 20px;
    }
}
/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .hero {
        height: 350px;
    }

    .hero-content {
        padding-bottom: 45px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .intro h2 {
        font-size: 26px;
    }
    /* SERVICE */

    .service-section {
        padding: 0;
    }

    .service-card {
        padding: 30px 0 40px;
    }

    .service-icon {
        font-size: 42px;
        height: 58px;
    }

    .service-copy h2 {
        font-size: 34px;
        line-height: 1.25;
        margin: 12px 0 30px;
    }

    .service-copy p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .service-image-wrap {
        margin-top: 25px;
    }

        .service-image-wrap img {
            height: 300px;
        }
    /* FOOTER */

    .footer-contact .container {
        display: block !important;
    }

    .footer-contact a {
        display: block;
        margin-top: 12px;
    }

    .footer-main {
        padding: 25px 0 20px;
    }

    .footer-meta {
        gap: 12px;
    }
}
/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .hero {
        height: 320px;
    }

    .service-copy h2 {
        font-size: 30px;
    }

    .service-copy p {
        font-size: 13px;
    }

    .service-image-wrap img {
        height: 260px;
    }
}
/*Whate We Do Page */
/*PortFolio Page */
/* ==========================================================================
   PORTFOLIO PAGE STYLING - EXACT REFERENCE RECREATION
   Scoped strictly to #portfolio-page to prevent any global side-effects
   ========================================================================== */

#portfolio-page {
    background-color: #ffffff;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    position: relative;
}
    /* Base typography within portfolio */
    #portfolio-page h1,
    #portfolio-page h2,
    #portfolio-page h3,
    #portfolio-page h4 {
    }

.portfolio-main-title {
    color: #b6a999;
    letter-spacing: -0.02em;
}

#portfolio-page p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
}
/* ---------------- HERO SECTION ---------------- */
.portfolio-hero {
    position: relative;
    height: 80vh;
    min-height: 560px;
    max-height: 850px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: #050505;
}

.portfolio-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.portfolio-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.portfolio-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1320px;
    margin-left: 14px;
    margin-right: auto;
    padding-bottom: 8rem;
    padding-left: 0px;
    /* padding-right: 1.5rem; */
}

@media (min-width: 768px) {
    .portfolio-hero-content {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

.portfolio-hero-title {
    font-size: clamp(2.3rem, 4.5vw, 3.85rem);
    font-size: 54px;
    /* font-weight: 600; */
    /* line-height: 1.12; */
    color: #ffffff !important;
    max-width: 750px;
    /* margin: 0; */
    letter-spacing: -0.03em;
}
/* ---------------- SECTION 1: LANDMARK PROJECTS ---------------- */
.portfolio-intro-section {
    background-color: #ffffff;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .portfolio-intro-section {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
}

.portfolio-main-title {
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.portfolio-intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 540px;
    margin-bottom: 0;
}
/* CTA Button with Animated Arrow */
.portfolio-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #B6A999;
    text-decoration: none !important;
    position: relative;
    padding-bottom: 0.35rem;
    margin-top: 1.5rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .portfolio-cta-btn {
        margin-top: 2.5rem;
    }
}

.portfolio-cta-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #B6A999;
    transition: width 0.35s ease;
}

.portfolio-cta-btn:hover {
    color: #000000;
}

    .portfolio-cta-btn:hover::after {
        width: 100%;
    }

.portfolio-cta-btn svg {
    transition: transform 0.45s cubic-bezier(0.2, 1, 0.3, 1);
}

.portfolio-cta-btn:hover svg {
    transform: rotate(120deg);
}
/* Section Divider */
.portfolio-divider {
    border-bottom: 1.5px solid #939393;
    opacity: 0.45;
    width: 100%;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .portfolio-divider {
        margin-top: 4rem;
    }
}
/* ---------------- CATEGORY SECTIONS (01 - 04) ---------------- */
.portfolio-cat-section {
    background-color: #ffffff;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .portfolio-cat-section {
        padding-top: 5rem;
        padding-bottom: 6rem;
    }
}

.cat-header-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.cat-number {
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #b6a999;
    line-height: 1;
}

.cat-title {
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 700;
    /* color: #000000; */
    line-height: 1;
    margin: 0;
    color: #b6a999 !important;
}

.cat-lead-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 820px;
    margin-bottom: 0.75rem;
}

.cat-sub-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    max-width: 820px;
    margin-bottom: 0;
}
/* Image Grid Showcase */
.cat-images-wrap {
    position: relative;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .cat-images-wrap {
        margin-top: 3.5rem;
        gap: 1.5rem;
    }
}

.cat-img-left {
    width: 41.666%;
    height: 220px;
    display: none;
    border-radius: 2px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .cat-img-left {
        display: block;
        height: 480px;
    }
}

.cat-img-right {
    width: 100%;
    height: 320px;
    /*object-fit: cover;*/
    border-radius: 2px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .cat-img-right {
        width: 58.333%;
        height: 480px;
    }
}

.cat-images-wrap:hover .cat-img-left,
.cat-images-wrap:hover .cat-img-right {
    transform: scale(1.015);
}
/* Geometric Watermark Badge */
.cat-watermark-svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 85px;
    height: 85px;
    pointer-events: none;
    z-index: 5;
    opacity: 0.85;
}

@media (min-width: 768px) {
    .cat-watermark-svg {
        width: 120px;
        height: 121px;
    }
}
/* ---------------- SECTION 2: HOSPITALITY (SCROLL-PINNED HORIZONTAL) ---------------- */
.factsContainer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    height: 100vh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.factsContainer_sm {
    display: flex;
    flex-wrap: nowrap;
    width: 500vw; /* 5 slides x 100vw */
    height: 100%;
    will-change: transform;
}

.fact {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding-top: 10rem;
    padding-bottom: 3.5rem;
}

@media (max-width: 767px) {
    .factsContainer {
        height: 100vh;
        min-height: 580px;
    }

    .fact {
        padding-top: 4.5rem;
        padding-bottom: 2rem;
    }

        .fact .cat-images-wrap {
            margin-top: 1.5rem;
        }

        .fact .cat-img-right {
            height: 260px;
        }
}
/* Hospitality Slider Navigation & Indicators */
.hosp-nav-bar {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    z-index: 25;
    pointer-events: none;
}

    .hosp-nav-bar .container {
        pointer-events: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.hosp-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #000000;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

    .hosp-nav-btn:hover:not(:disabled) {
        background-color: #000000;
        color: #ffffff;
    }

    .hosp-nav-btn:disabled {
        opacity: 0.35;
        cursor: not-allowed;
    }

.hosp-indicators {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hosp-dot {
    width: 28px;
    height: 3px;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
    padding: 0;
}

    .hosp-dot.active {
        background-color: #000000;
        width: 42px;
    }

/* ==========================================================================
   HOSPITALITY SLIDER — RTL-SAFE FIX
   Scroll mechanics (GSAP ScrollTrigger) hamesha LTR force rehte hain taake
   flexbox order aur x-translation math kabhi na toote, Arabic page par bhi.
   Sirf andar ka text RTL alignment leta hai.
   ========================================================================== */
#Hospitality,
#Hospitality .factsContainer_sm,
#Hospitality .fact {
    direction: ltr !important;
}

[dir="rtl"] #Hospitality .cat-header-wrap,
[dir="rtl"] #Hospitality .cat-lead-text,
[dir="rtl"] #Hospitality .cat-title,
[dir="rtl"] #Hospitality .cat-number {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] #Hospitality .cat-header-wrap {
    flex-direction: row-reverse;
}

[dir="rtl"] .hosp-nav-btn i {
    display: inline-block;
    transform: scaleX(-1);
}

/* ---------------- FUTURE INVESTMENTS ---------------- */
.future-section {
    background-color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .future-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.future-card-content {
    display: none;
    animation: futureFadeIn 0.5s ease;
}

    .future-card-content.active {
        display: flex;
    }

@keyframes futureFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.future-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .future-img {
        height: 440px;
    }
}

.future-title {
    font-size: 49px;
    font-weight: 600;
    color: #b6a999;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.future-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.future-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .future-nav-btn.prev-btn {
        background-color: transparent;
        border: 1.5px solid #000000;
        color: #000000;
    }

        .future-nav-btn.prev-btn:hover:not(:disabled) {
            background-color: #000000;
            color: #ffffff;
        }

    .future-nav-btn.next-btn {
        background-color: #000000;
        border: 1.5px solid #000000;
        color: #ffffff;
    }

        .future-nav-btn.next-btn:hover:not(:disabled) {
            background-color: #333333;
            border-color: #333333;
        }

    .future-nav-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }



/* ---------------- PRE-FOOTER CONTACT STRIP ---------------- */
/*PortFolio Page */
/*About Us Page */

:root {
    --black: #050505;
    --black2: #0b0b0b;
    --cream: #d8ccb9;
    --cream2: #eee8dc;
    --gold: #b9a88f;
    --body: #fff;
    --ink: #111;
    --muted: #77736d;
    --border: #ddd7ce;
    --ease: cubic-bezier(.4,0,.2,1);
    --primary: #a49582;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    overflow-x: hidden;
}

.container-xl2 {
    width: min(1210px, calc(100% - 84px));
    margin-inline: auto;
}
/* ================= NAV ================= */
.navbar-main {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    color: #fff;
    transition: .45s var(--ease);
}

    .navbar-main.scrolled {
        position: fixed;
        background: rgba(4,4,4,.94);
        backdrop-filter: blur(12px);
        padding: 12px 0;
        box-shadow: 0 5px 25px rgba(0,0,0,.25);
    }

.logo {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 9px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: .08em;
}

.logo-svg {
    width: 36px;
    height: 36px;
    flex: none;
}

.main-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .main-links a {
        position: relative;
        color: #fff;
        font-size: 9px;
        font-weight: 400;
        transition: .3s;
    }

        .main-links a:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -7px;
            width: 0;
            height: 1px;
            background: var(--cream);
            transition: .35s var(--ease);
        }

        .main-links a:hover:after {
            width: 100%;
        }

.nav-tools {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mode-toggle {
    width: 33px;
    height: 17px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

    .mode-toggle:after {
        content: "";
        position: absolute;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        top: 3px;
        right: 3px;
        background: #89aaa0;
        transition: .3s;
    }

.search-icon {
    font-size: 13px;
    color: #fff;
}
/* ================= HERO ================= */
.hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.25) 65%, rgba(0,0,0,.12)), linear-gradient(0deg, rgba(0,0,0,.35), transparent 50%), url("https://images.unsplash.com/photo-1539650116574-75c0c6d73f6e?auto=format&fit=crop&w=2200&q=90") center/cover;
}

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.35), transparent 25%, transparent 75%, rgba(0,0,0,.28));
    }

.hero-bg {
    position: absolute;
    inset: -3%;
    background: inherit;
    transform: scale(1.04);
    animation: heroZoom 16s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 55px;
}

.hero-kicker {
    color: var(--cream);
    font-size: 9px;
    letter-spacing: .27em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(34px, 4.1vw, 57px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.045em;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

    .scroll-indicator span {
        width: 1px;
        height: 42px;
        background: rgba(255,255,255,.7);
        animation: scrollLine 1.8s infinite;
    }

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(.35);
        transform-origin: top;
        opacity: .35;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }
}
/* ================= SECTION COMMON ================= */
.section-pad {
    padding: 105px 0;
}

.kicker {
    color: #c9a86a;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 500;
}

.display-title {
    font-size: 48px;
    line-height: 1.5;
    font-weight: 600;
    padding-bottom: 3rem;
    letter-spacing: -0.0em;
}

/*.serif-title {
    font-family: "Playfair Display", serif;
    font-weight: 500;
}*/

.body-copy {
    font-size: 15px;
    line-height: 1.9;
    color: #58534d;
    max-width: 430px !important;
}

.rule {
    height: 1px;
    background: var(--border);
}
/* ================= WHO WE ARE ================= */
.who-we-are, pattern {
    background-image: url(/Content/images/who-we-are-patteren-about-us.png);
    background-size: cover;
    background-position: center;
    background-color: #0d0d0d;
    position: relative;
    z-index: 1;
    height: 28rem;
    overflow: visible;
}

    .who-we-are .inner {
        position: relative;
        z-index: 5;
        max-width: 626px;
        margin: 0 auto;
        text-align: center;
        margin-top: -2rem !important;
    }

    .who-we-are h2 {
        /* font-family: "Playfair Display", serif; */
        font-weight: 600;
        font-size: 32px;
        margin-bottom: 20px;
        color: rgb(182 169 153);
    }

    .who-we-are p {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 16px;
        color: rgb(255 255 255);
    }
/* overlap image: bleeds from dark section into white section below */
.who-image-wrap {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: -70px; /* pulls white section up under image */
    padding: 0 24px;
}

    .who-image-wrap img {
        width: 100%;
        max-width: 400px;
        height: 230px;
        object-fit: cover;
        display: block;
        box-shadow: 0 20px 40px rgba(0,0,0,.35);
    }
/* ================= LEGACY / VISION / MISSION ================= */
.legacy {
    background: #fff;
    padding: 120px 24px 60px;
}

.legacy-title
 {
    /* font-family: "Playfair Display", serif; */
    font-weight: 600;
    font-size: 50px !important;
    color: #111;
    line-height: 1.2;
    /* margin-bottom: 40px !important; */
    margin-top: 14rem !important;
    padding-left: 4rem !important;
}

.vm-row {
    display: block;
    padding-left: 4rem !important;
    margin-bottom: 16px;
}

.vm-label {
    display: block;
    color: rgb(182 169 153);
    /* font-size: 22px; */
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    /* margin-bottom: 10px; */
}

.vm-text {
    font-size: 30px !important;
    /* color: black !important; */
    max-width: 971px !important;
    /* max-width: 33px !important; */
    font-family: Open Sans, sans-serif !important;
    /* padding-left: 5rem; */
    /* padding-top: 0rem; */
    font-weight: 600;
    padding-right: 7rem;
}
/* two images side by side, unequal widths like screenshot */
.vm-images {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 10px;
    margin: 0 0 48px 0;
}

    .vm-images img {
        width: 100%;
        height: 367px !important;
        object-fit: cover;
        display: block;
    }

    .vm-images:last-of-type {
        margin-bottom: 0;
    }
/* ================= DESKTOP (wider screens) ================= */
@media (min-width: 861px) {
    .who-we-are {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

        .who-we-are h2 {
            font-size: 40px;
        }

    .who-image-wrap {
        margin-top: 48px;
        margin-bottom: -140px;
    }

        .who-image-wrap img {
            width: 62%;
            min-width: 320px;
            max-width: none;
            height: 420px;
        }

    .legacy {
        padding: 230px 0 90px;
    }

    .legacy-title {
        font-size: 36px;
        margin-bottom: 70px;
        margin-top: 10rem;
    }

    .vm-row {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 137px;
        align-items: start;
        margin-bottom: 36px;
    }

    .vm-label {
        font-size: 24px;
        padding-top: 4px;
        margin-bottom: 0;
    }

    .vm-text {
        font-size: 22px;
        max-width: 640px;
    }

    .vm-images {
        grid-template-columns: 1.5fr 1fr;
        gap: 16px;
        margin: 0 0 90px 180px;
    }

        .vm-images img {
            height: 260px;
        }
}
/* ================= VALUES ================= */
.values {
    background: #050505;
    color: #fff;
    padding: 80px 0 20px;
    overflow: hidden;
}

    .values h2 {
        color: var(--cream);
        font-size: 50px;
        line-height: 1.15;
        font-weight: 500;
        max-width: 550px;
    }

.values-left p {
    max-width: 440px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

/* =========================
   ORBIT AREA
========================= */

.orbit-stage {
    height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Main outer orbit */
.orbit {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 4px dashed rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    animation: orbitSpin 28s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Middle + inner orbit */
.orbit::before,
.orbit::after {
    content: "";
    position: absolute;
    border: 4px dashed rgba(255, 255, 255, 0.65);
    border-radius: 50%;
}

.orbit::before {
    width: 410px;
    height: 410px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit::after {
    width: 230px;
    height: 230px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* =========================
   VALUE CIRCLES
========================= */

.value-node {
    position: absolute;
    width: 225px;
    height: 225px;
    border-radius: 50%;
    background: #cfc3b1;
    color: #111;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
    font-size: 14px;
    line-height: 1.45;
    box-shadow: none;
    transition: transform 0.3s ease;
}

    .value-node strong {
        display: block;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .value-node i {
        font-size: 35px;
        margin-bottom: 10px;
    }


    /* =========================
   TOP CIRCLE
   Excellence
========================= */
    .value-node.one {
        top: -60px;
        left: 53%;
        transform: translateX(-50%);
    }

    /* =========================
   LEFT CIRCLE
   Integrity
========================= */

    .value-node.two {
        bottom: 53px;
        left: -5%;
    }

    /* =========================
   RIGHT CIRCLE
   Innovation / Vision
========================= */

    .value-node.three {
        bottom: 51px;
        right: -6%;
        transform: none;
    }

    /* =========================
   HOVER
========================= */

    .value-node.one:hover {
        transform: translateX(-50%) scale(1.05);
    }

    .value-node.two:hover {
        transform: scale(1.05);
    }

    .value-node.three:hover {
        transform: scale(1.05);
    }


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199.98px) {

    .values h2 {
        font-size: 42px;
    }

    .orbit-stage {
        height: 560px;
    }

    .orbit {
        width: 520px;
        height: 520px;
    }

        .orbit::before {
            width: 355px;
            height: 355px;
        }

        .orbit::after {
            width: 195px;
            height: 195px;
        }

    .value-node {
        width: 195px;
        height: 195px;
        font-size: 12px;
        padding: 22px;
    }

        .value-node strong {
            font-size: 13px;
        }

        .value-node i {
            font-size: 30px;
        }
}


@media (max-width: 991.98px) {

    .values {
        padding: 70px 0;
    }

        .values h2 {
            font-size: 38px;
        }

    .values-left p {
        font-size: 15px;
    }

    .orbit-stage {
        height: 600px;
        margin-top: 30px;
    }

    .orbit {
        width: 500px;
        height: 500px;
    }

        .orbit::before {
            width: 340px;
            height: 340px;
        }

        .orbit::after {
            width: 180px;
            height: 180px;
        }

    .value-node {
        width: 180px;
        height: 180px;
        font-size: 12px;
        padding: 20px;
    }

        .value-node.two {
            left: 0;
        }

        .value-node.three {
            right: 0;
        }
}


@media (max-width: 575.98px) {

    .values {
        padding: 60px 0;
    }

        .values h2 {
            font-size: 32px;
        }

    .values-left p {
        font-size: 14px;
    }

    .orbit-stage {
        height: 520px;
        margin-top: 20px;
    }

    .orbit {
        width: 340px;
        height: 340px;
    }

        .orbit::before {
            width: 235px;
            height: 235px;
        }

        .orbit::after {
            width: 125px;
            height: 125px;
        }

    .value-node {
        width: 135px;
        height: 135px;
        padding: 15px;
        font-size: 9px;
        line-height: 1.35;
    }

        .value-node strong {
            font-size: 10px;
            margin-bottom: 5px;
        }

        .value-node i {
            font-size: 22px;
            margin-bottom: 5px;
        }

        .value-node.one {
            top: 5px;
        }

        .value-node.two {
            bottom: 20px;
            left: 0;
        }

        .value-node.three {
            bottom: 20px;
            right: 0;
        }
}
/* ================= HISTORY ================= */
.history {
    padding: 105px 0;
    background: #fff;
}

.history-head {
    display: flex;
    /* justify-content: space-between; */
    gap: 193px;
}

    .history-head .body-copy {
        max-width: 400px;
    }

.history .timeline-section {
    width: calc(100% + 65px);
    margin-left: -32.5px;
    padding: 28px 0 0;
    overflow: visible;
}

.history .timeline {
    position: relative;
    width: 100%;
    max-width: none;
    height: 105px;
    margin: 0;
}

.history .timeline-line {
    position: absolute;
    top: 12px;
    left: 38px;
    right: 38px;
    height: 1px;
    background: #d1d1d1;
}

.history .timeline-years {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.history .year {
    position: relative;
    width: auto;
    min-width: 80px;
    padding-top: 43px;
    text-align: center;
    color: #b8aaa0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

.history .year-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #dedede !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
    z-index: 2;
    transition: background .3s ease;
}

    .history .year-dot i {
        font-size: 11px;
        color: #777;
        transition: color .3s ease;
    }

/* Active state — !important zaroori hai kyunki .year-dot ka gray background bhi !important hai */
.history .year.active .year-dot {
    background: #050505 !important;
}

    .history .year.active .year-dot i {
        color: #fff;
    }

.history .history-slide {
    width: calc(100% + 65px);
    margin: 30px 0 0 -32.5px;
    display: grid;
    grid-template-columns: 610px minmax(0,1fr);
    column-gap: 48px;
    align-items: center;
}

    .history .history-slide .image-reveal {
        width: 610px;
        height: 449px;
        overflow: hidden;
    }

.history .history-slide-image {
    display: block;
    width: 610px;
    height: 449px;
    object-fit: cover;
}

.history .history-slide > div:last-child {
    padding: 0;
    margin: 0;
}

.history .history-slide .kicker {
    display: none;
}

.history .history-slide h3 {
    margin: 0 0 20px;
    color: #b8aaa0;
 
    font-size: 50px;
    line-height: 1.34;
    font-weight: 600;
    letter-spacing: -1px;
}

.history .history-slide p {
    width: 590px;
    max-width: 100%;
    margin: 0;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

.history .slide-btns {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.circle-btn {
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: #050505;
    color: #fff;
    font-size: 11px;
    transition: .3s;
}

    .circle-btn:hover {
        transform: translateY(-2px);
    }

.history .circle-btn {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
}

    .history .circle-btn:hover {
        transform: translateY(-2px);
    }

@media (max-width: 1300px) {
    .history .timeline-section {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .history .history-slide {
        width: calc(100% + 40px);
        margin-left: -20px;
        grid-template-columns: minmax(0,48%) minmax(0,1fr);
        column-gap: 40px;
    }

        .history .history-slide .image-reveal,
        .history .history-slide-image {
            width: 100%;
            height: auto;
            aspect-ratio: 610 / 449;
        }

        .history .history-slide h3 {
            font-size: 42px;
        }
}

@media (max-width: 800px) {
    .history .timeline-section {
        width: calc(100% + 28px);
        margin-left: -14px;
        overflow-x: auto;
    }

    .history .timeline {
        min-width: 850px;
    }

    .history .history-slide {
        width: 100%;
        margin-left: 0;
        grid-template-columns: 1fr;
        gap: 35px;
    }

        .history .history-slide .image-reveal,
        .history .history-slide-image {
            width: 100%;
            height: auto;
            aspect-ratio: 610 / 449;
        }

        .history .history-slide h3 {
            font-size: 36px;
        }
}

.history .timeline-line-progress {
    position: absolute;
    top: 12px;
    height: 1px;
    background: #050505;
    z-index: 1;
    transition: width .4s ease, left .4s ease, right .4s ease;
}

.history .year-dot svg path {
    fill: #777 !important;
}

.history .year.active .year-dot svg path {
    fill: #fff !important;
}

.history .year.active .year-dot svg,
.history .year.active .year-dot svg path {
    fill: #fff;
}

[dir="rtl"] .history .slide-btns .circle-btn i {
    display: inline-block;
    transform: scaleX(-1);
}

[dir="rtl"] .team-arrows .circle-btn i {
    display: inline-block;
    transform: scaleX(-1);
}
/* ================= CSR ================= */
.csr {
    background: #050505;
    color: #fff;
    padding: 100px 0;
}

.csr-header-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 65px;
    align-items: start;
    margin-bottom: 40px;
}

.csr-grid {
    /*    display: grid;
*/ grid-template-columns: 1fr 1.05fr;
    gap: 65px;
    align-items: stretch; /* image aur list barabar height lein, khali space na bache */
}

.csr h2 {
    color: var(--cream);
    font-size: 45px;
    line-height: 1.5;
    font-weight: 500;
    padding-bottom: 4rem;
}

.csr-intro {
    display: block;

    font-size: 22px;
}

.csr-image-wrap {
    overflow: hidden;
    height: 100%;
    min-height: 546px;
}

.csr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
    display: block;
}

.csr-image-wrap:hover .csr-image {
    transform: scale(1.04);
}

.csr-list {
    display: flex;
    flex-direction: column;
    height: 95%;
    max-height: 703px;
    margin-top: 0px;
    overflow: auto;
}

.csr-item {
    padding: 30px 0;
    border-bottom: 1px solid #2e2e2e;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    padding-left: 15px;
    border-left: 3px solid transparent;
}

    .csr-item:first-child {
        padding-top: 0;
    }

    .csr-item:last-child {
        border-bottom: none;
    }

    .csr-item.active,
    .csr-item:hover {
        opacity: 1;
        border-left: 3px solid var(--cream, #b6a999);
        padding-left: 20px;
        background: rgba(255, 255, 255, 0.03);
    }

    .csr-item h4 {
        font-size: 24px;
        font-weight: 600;
        color: var(--cream, #b6a999);
        margin: 0 0 10px;
        transition: color 0.3s ease;
    }

    .csr-item:hover h4 {
        color: #fff;
    }

    .csr-item p {
        font-size: 14px;
        line-height: 1.8;
        color: #cfcac2;
        margin: 0;
        max-width: 520px;
    }
/* ===== Responsive ===== */
@media (max-width: 991px) {
    .csr {
        padding: 60px 0;
    }

    .csr-header-grid,
    .csr-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .csr-image-wrap {
        height: 320px;
        min-height: unset;
    }

    .csr h2 {
        font-size: 45px;
        padding-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .csr-image-wrap {
        height: 260px;
    }

    .csr-item h4 {
        font-size: 20px;
    }

    .csr-item p {
        font-size: 13px;
    }
}


.csr-image-wrap {
    position: relative;
    width: 100%;
    height: 400px; /* apni requirement ke hisab se adjust kar lein e.g. 350px, 450px */
    overflow: hidden;
    border-radius: 10px; /* optional - card jaisa look */
}

.csr-main-item {
    display: none;
    width: 100%;
    height: 100%;
}

    .csr-main-item.active {
        display: block;
    }

    .csr-main-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* image crop ho ke fix box mein fit hogi, distort nahi hogi */
        object-position: center;
        display: block;
    }

.csr-item {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

    .csr-item.active,
    .csr-item:hover {
        opacity: 1;
    }
/* ================= TEAM ================= */
.team {
    padding: 100px 0;
    background: #fff;
}

.team-head {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

    .team-head .body-copy {
        max-width: 410px;
    }

.team-slider {
    margin-top: 55px;
    position: relative;
    overflow: visible;
}

#teamSwiper {
    overflow: hidden;
}

.team-card {
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.member-photo {
    height: 383px;
    background: #e8e8e8;
    position: relative;
    overflow: hidden;
}

    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Overlay */
.member-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all .4s ease;
}

.team-card:hover .member-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Social icons */
.member-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
}

/* Name / designation */
.member-info {
    padding: 24px 10px 0;
    background: #fff;
}

    .member-info h5 {
        font-size: 17px;
        font-weight: 600;
        margin: 0 0 5px;
        color: #b9a891;
    }

    .member-info span {
        font-size: 16px;
        color: #111;
    }


/* =========================
   ARROWS - ONLY SLIDER
========================= */

.team-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: block;
    margin: 0;
    z-index: 20;
    pointer-events: none;
}

    .team-arrows .circle-btn {
        position: absolute;
        width: 72px;
        height: 72px;
        border: none;
        border-radius: 50%;
        background: #000;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 27px;
        pointer-events: auto;
    }

/* LEFT */
#teamPrev {
    left: -96px;
}

/* RIGHT */
#teamNext {
    right: -96px;
}
/* ================= FOOTER ================= */
/* ================= REVEALS ================= */
.reveal-line {
    overflow: hidden;
}

    .reveal-line span {
        display: inline-block;
    }

[data-aos="fade-up"] {
    transform: translate3d(0,30px,0);
}

[data-aos].aos-animate {
    transform: translate3d(0,0,0);
}

.image-reveal {
    overflow: hidden;
}

    .image-reveal img {
        transform: scale(1.12);
        transition: transform 1.2s var(--ease);
    }

    .image-reveal.aos-animate img {
        transform: scale(1);
    }
/* ================= RESPONSIVE ================= */
/* ================= RESPONSIVE BREAKPOINTS ================= */
@media (max-width: 1024px) {
    .container-xl2 {
        width: 90%;
    }

    .vm-images img {
        height: 230px;
    }

    .history .history-slide {
        grid-template-columns: 1fr;
        gap: 30px;
    }

        .history .history-slide .image-reveal {
            height: 350px;
        }
}

@media (max-width: 991px) {
    .main-links {
        gap: 12px;
    }

        .main-links a {
            font-size: 8px;
        }

    .hero {
        min-height: 560px;
    }

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

    .csr-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .container-xl2 {
        width: calc(100% - 38px);
    }

    .main-links {
        display: none;
    }

    .navbar-main {
        padding: 14px 0;
    }

    .hero {
        min-height: 520px;
    }

        .hero h1 {
            font-size: 34px;
        }

    .hero-kicker {
        font-size: 7px;
    }

    .section-pad, .legacy, .history, .team, .csr, .values {
        padding: 70px 0;
    }

    .who-image-wrap img {
        height: 260px;
    }

    .vm-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vm-images {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 40px;
    }

        .vm-images img {
            height: 180px;
        }

    .orbit-stage {
        height: 315px;
    }

    .orbit {
        width: 235px;
        height: 235px;
    }

    .value-node {
        width: 90px;
        height: 90px;
        font-size: 6px;
    }

        .value-node strong {
            font-size: 7px;
        }

        .value-node.two {
            left: 0;
        }

        .value-node.three {
            right: 0;
        }

    .history-head, .team-head {
        display: block;
    }

        .history-head .body-copy, .team-head .body-copy {
            margin-top: 18px;
        }

    .csr-grid {
        gap: 35px;
    }

    .csr h2 {
        font-size: 24px;
    }

    .csr-item h4 {
        font-size: 24px;
    }

    .csr-intro {
        font-size: 13px;
    }

    .values h2 {
        font-size: 22px;
    }

    .member-photo {
        font-size: 90px;
        height: 190px;
    }

    .team-card {
        margin-right: 5px;
    }

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

@media (max-width: 480px) {
    .legacy {
        padding-top: 120px;
    }

    .vm-images {
        grid-template-columns: 1fr;
    }

        .vm-images img {
            height: 200px;
        }

    .csr-item h4 {
        font-size: 20px;
    }

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

.csr-title {
    font-weight: 700 !important;
    font-size: 48px !important;
    line-height: 1.2 !important;
    color: #ada496;
    max-width: 480px !important; /* isi se text 2 lines mein wrap hoga */
    word-wrap: break-word;
}
/*About Us Page */
/* ============ RTL FIX: PARTNERING FOR GROWTH ============ */
[dir="rtl"] .growth-overlay {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.25) 100%);
}

@media (min-width: 992px) {
    [dir="rtl"] .growth-card-positioned {
        left: auto;
        right: 6%;
    }
}

[dir="rtl"] .growth-glass-card {
    text-align: right;
}

[dir="rtl"] .growth-watermark {
    right: auto;
    left: 0.25rem;
}
/*.growth-watermark-svg.arabic-svg {
    transform: scaleX(-1);
}*/

/* ============================================================================
   FINAL MOBILE RESPONSIVE + RTL
   Breakpoint: 0 - 780px
   NOTE: Also add <meta name="viewport" content="width=device-width, initial-scale=1.0">
   inside <head> if it is not already present.
   ============================================================================ */
@media screen and (max-width: 780px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden !important;
    }

    body {
        font-size: 15px;
        line-height: 1.65;
    }

    .container-xl2,
    .container,
    .container-fluid {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        margin-left: auto;
        margin-right: auto;
        min-width: 0;
    }

    /* ---------- Generic typography ---------- */
    h1, h2, h3, h4, h5, h6 {
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: normal;
        line-height: 1.25;
    }

    h1 {
        font-size: clamp(28px, 8vw, 38px) !important;
    }

    h2 {
        font-size: clamp(24px, 6.5vw, 32px) !important;
    }

    h3 {
        font-size: clamp(21px, 5.5vw, 28px) !important;
    }

    h4 {
        font-size: clamp(18px, 4.8vw, 24px) !important;
    }

    h5 {
        font-size: 17px !important;
    }

    h6 {
        font-size: 16px !important;
    }

    p,
    li,
    label,
    .body-copy,
    .vm-text,
    .service-copy p,
    .growth-card-text,
    .csr-intro,
    .csr-item p,
    .cat-lead-text,
    .cat-sub-text,
    .portfolio-intro-text {
        font-size: 15px !important;
        line-height: 1.7 !important;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .kicker,
    .hero-kicker {
        font-size: 10px !important;
        line-height: 1.4 !important;
        letter-spacing: .08em;
    }

    .display-title,
    .legacy-title,
    .who-we-are h2,
    .service-copy h2,
    .portfolio-main-title,
    .portfolio-hero-title,
    .growth-card-title,
    .csr h2 {
        font-size: clamp(25px, 7vw, 34px) !important;
        line-height: 1.2 !important;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    /* ---------- Navbar ---------- */
    .navbar-main {
        padding: 12px 0 !important;
    }

        .navbar-main .container-xl2,
        .navbar-main .container {
            padding-left: 16px;
            padding-right: 16px;
        }

    .logo {
        font-size: 9px !important;
    }

    .main-links {
        display: none !important;
    }

    .nav-tools {
        gap: 10px;
    }

    /* ---------- Hero ---------- */
    .hero {
        width: 100%;
        min-height: 560px;
        height: auto;
    }

    .hero-content,
    .portfolio-hero-content {
        width: 100%;
        max-width: 100%;
        padding: 80px 16px 50px !important;
        min-width: 0;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 38px) !important;
        line-height: 1.2 !important;
        max-width: 100%;
    }

    /* ---------- General sections ---------- */
    .section-pad,
    .legacy,
    .history,
    .team,
    .csr,
    .values {
        padding: 60px 0 !important;
    }

    .legacy {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .legacy-title {
        margin-top: 0 !important;
        margin-bottom: 28px !important;
    }

    .vm-row,
    .csr-grid,
    .csr-header-grid,
    .history .history-slide,
    .why-grid,
    .jobs-grid,
    .contact-grid,
    .faq-grid,
    .footer-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: 1fr !important;
    }

        .vm-row > *,
        .csr-grid > *,
        .history .history-slide > *,
        .why-grid > *,
        .jobs-grid > *,
        .contact-grid > *,
        .faq-grid > * {
            min-width: 0;
            max-width: 100%;
        }

    /* ---------- Vision / Mission ---------- */
    .vm-label {
        font-size: 16px !important;
        line-height: 1.4 !important;
        letter-spacing: .08em;
    }

    .vm-text {
        margin-bottom: 22px;
    }

    .vm-images {
        width: 100%;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px;
        margin-bottom: 30px;
    }

        .vm-images img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

    /* ---------- Who we are ---------- */
    .who-we-are {
        width: 100%;
        height: auto !important;
        min-height: 360px;
        padding: 60px 0 70px !important;
    }

        .who-we-are .inner {
            width: 100%;
            max-width: 100%;
            margin: 0 auto !important;
            padding: 0 16px;
        }

        .who-we-are h2 {
            margin-bottom: 16px;
        }

        .who-we-are p {
            font-size: 15px !important;
            line-height: 1.7 !important;
        }

    .who-image-wrap {
        width: 100%;
        padding: 0 16px;
        margin-top: 24px;
        margin-bottom: -45px;
    }

        .who-image-wrap img {
            width: 100%;
            max-width: 420px;
            height: 220px;
            margin: 0 auto;
            object-fit: cover;
        }

    /* ---------- Services / cards ---------- */
    .service-section {
        min-height: 0 !important;
        padding: 0 !important;
    }

    .service-card {
        width: 100%;
        min-height: 0 !important;
        padding: 40px 0 !important;
    }

    .service-copy {
        width: 100%;
        min-width: 0;
        padding: 0 !important;
    }

        .service-copy h2 {
            margin: 12px 0 24px !important;
        }

        .service-copy p {
            margin-bottom: 24px !important;
        }

    .service-icon {
        font-size: 40px !important;
        height: 54px;
    }

    .service-image-wrap {
        width: 100%;
        margin-top: 24px;
    }

        .service-image-wrap img {
            width: 100%;
            height: 300px !important;
            object-fit: cover;
        }

    /* ---------- Statistics ---------- */
    .stat-counter-item {
        min-width: 0;
        min-height: 0;
        padding: 20px 10px !important;
    }

    .stat-number {
        font-size: clamp(30px, 9vw, 44px) !important;
        line-height: 1 !important;
    }

    /* ---------- Portfolio / swiper ---------- */
    .swiper-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden !important;
    }

    .swiper-wrapper {
        align-items: stretch;
    }

    .swiper-slide {
        width: min(360px, calc(100vw - 32px)) !important;
        max-width: calc(100vw - 32px) !important;
        margin-right: 12px !important;
        flex-shrink: 0;
    }

    .portfolio-slide-card {
        width: 100% !important;
        max-width: 100%;
        height: auto;
        min-height: 420px;
    }

    .portfolio-hero-title {
        max-width: 100%;
    }

    .portfolio-intro-section,
    .portfolio-cat-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .cat-header-wrap {
        gap: 10px;
        margin-bottom: 16px;
    }

    .cat-number,
    .cat-title {
        font-size: clamp(24px, 7vw, 34px) !important;
    }

    .cat-images-wrap {
        width: 100%;
        max-width: 100%;
        gap: 8px;
        margin-top: 24px;
    }

    .cat-img-left,
    .cat-img-right {
        width: 100% !important;
        height: 260px !important;
        min-width: 0;
    }

    .cat-img-left {
        display: none !important;
    }

    /* ---------- Hospitality horizontal section ---------- */
    .factsContainer {
        width: 100%;
        max-width: 100%;
        min-height: 580px;
        height: auto;
        overflow: hidden;
    }

    .factsContainer_sm {
        width: 500vw;
    }

    .fact {
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        padding: 70px 16px 70px;
    }

    /* ---------- Growth section ---------- */
    .section-growth-banner {
        min-height: 520px;
        height: auto;
        padding: 50px 0 !important;
    }

    .growth-card-wrapper {
        padding: 20px 0;
    }

    .growth-glass-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 22px !important;
        margin: 0;
    }

    .growth-card-title {
        margin-bottom: 16px;
    }

    /* ---------- CSR ---------- */
    .csr-image-wrap {
        width: 100%;
        height: 280px !important;
        min-height: 0 !important;
    }

    .csr-list {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .csr-item {
        padding: 22px 0 22px 12px;
    }

        .csr-item h4 {
            font-size: 19px !important;
            line-height: 1.3 !important;
        }

    /* ---------- Forms / accordion ---------- */
    .form-column {
        min-width: 0;
        max-width: 100%;
        padding: 0 !important;
        border: 0 !important;
    }

    input,
    textarea,
    select,
    button {
        max-width: 100%;
        min-width: 0;
        font-size: 15px;
    }

    .accordion-body {
        padding: 0 !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
        overflow-wrap: anywhere;
    }

    /* ---------- Footer ---------- */
    .footer-grid {
        gap: 24px;
    }

    .footer-link,
    .footer-contact-link {
        font-size: 14px !important;
    }
}

/* ============================================================================
   RTL MOBILE SAFETY
   ============================================================================ */
[dir="rtl"] {
    direction: rtl;
}

    [dir="rtl"] body {
        direction: rtl;
        text-align: right;
    }

    [dir="rtl"] .hero-content,
    [dir="rtl"] .portfolio-hero-content,
    [dir="rtl"] .contact-left,
    [dir="rtl"] .form-column,
    [dir="rtl"] .why-section,
    [dir="rtl"] .jobs-section,
    [dir="rtl"] .faq-section,
    [dir="rtl"] .csr,
    [dir="rtl"] .values,
    [dir="rtl"] .growth-glass-card {
        text-align: right;
    }

    [dir="rtl"] p,
    [dir="rtl"] li,
    [dir="rtl"] label,
    [dir="rtl"] .body-copy,
    [dir="rtl"] .vm-text,
    [dir="rtl"] .detail-text,
    [dir="rtl"] .hours-text,
    [dir="rtl"] .contact-description,
    [dir="rtl"] .faq-description,
    [dir="rtl"] .accordion-body,
    [dir="rtl"] .why-text,
    [dir="rtl"] .cat-lead-text,
    [dir="rtl"] .cat-sub-text,
    [dir="rtl"] .growth-card-text {
        direction: rtl;
        unicode-bidi: normal;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
        line-height: 1.8 !important;
    }

    [dir="rtl"] .contact-grid,
    [dir="rtl"] .faq-grid,
    [dir="rtl"] .why-grid,
    [dir="rtl"] .jobs-grid,
    [dir="rtl"] .csr-grid,
    [dir="rtl"] .vm-row {
        direction: rtl;
    }

@media screen and (max-width: 780px) {
    [dir="rtl"] .form-column {
        padding: 0 !important;
        border: 0 !important;
    }

    [dir="rtl"] .accordion-body {
        padding: 0 !important;
    }

    [dir="rtl"] .footer-link:hover,
    [dir="rtl"] .nav-link-custom:hover,
    [dir="rtl"] .main-navbar .nav-link:hover {
        padding-left: 0;
        padding-right: 0;
    }

    [dir="rtl"] .cat-header-wrap {
        flex-direction: row;
    }
}

h1.display-4.fw-bolder.leading-tight.text-white.mb-3.aos-init.aos-animate {
    font-weight: 600 !important;
    line-height: 1.3;
}


.hero-content {
    position: absolute;
    left: 0;
    bottom: 70px;
    width: 100%;
    z-index: 3;
    padding-left: 4%;
    padding-right: 4%;
}

    .hero-content h1 {
        font-size: 48px;
        line-height: 1.35;
        max-width: 750px;
    }

    .hero-content h1 {
        font-size: 48px;
        line-height: 1.35;
        max-width: 800px;
    }

    .hero-content p {
        font-size: 20px;
        line-height: 1.5;
        max-width: 680px;
    }


/* Mobile */
@media (max-width: 767.98px) {
    .hero-content {
        bottom: 40px;
        padding-left: 5%;
        padding-right: 5%;
    }

        .hero-content h1 {
            font-size: 32px;
            line-height: 1.25;
        }

        .hero-content p {
            font-size: 16px;
        }
}

.display-4 {
    font-size: 54px;
    font-weight: 600 !important;
    line-height: 1.3;
}




/*Cookis css*/
.cookie-modal {
    position: fixed;
    bottom: 20px;
    width: 444px;
    background: #fff;
    left: 20px;
    border-radius: 12px;
    z-index: 1000;
    text-align: left;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    display: none;
}

@media screen and (max-width: 768px) {
    .cookie-modal {
        width: 92%;
        left: 4%;
        bottom: 10px;
    }
}

.cookie-modal .modal-footer {
    margin-top: 10px;
    padding: 8px 15px;
    background: #1a1a1a !important; /* Shorouq black */
    border-top: 2px solid #B6A99945; /* gold tint */
    border-radius: 0 0 12px 12px;
}

#cookieModal h5 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-left: 10px;
    margin-bottom: 5px;
}

#cookieModal p {
    font-size: 13.5px !important;
    color: #444;
    line-height: 1.6;
    text-align: left !important;
}

    #cookieModal p a {
        color: #B6A999; /* Shorouq gold */
        text-decoration: none;
        font-weight: 500;
    }

#cookieModal .cancelbtn {
    background: transparent !important;
    color: #333 !important;
    border: 1.5px solid #ccc !important;
    padding: 7px 18px !important;
    border-radius: 6px !important;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s;
}

    #cookieModal .cancelbtn:hover {
        border-color: #d93025 !important;
        color: #d93025 !important;
        background: transparent !important;
    }

#cookieModal .accpbtn {
    background-color: #B6A999 !important; /* Shorouq gold */
    color: #1a1a1a !important;
    border: none !important;
    padding: 7px 18px !important;
    border-radius: 6px !important;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s;
}

    #cookieModal .accpbtn:hover {
        background-color: #a08e7f !important;
    }

#cookieModal .pref {
    color: #B6A999;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

    #cookieModal .pref:hover {
        text-decoration: underline;
    }

.cookie-modal-content {
    padding: 20px 20px 15px 20px;
    box-sizing: border-box;
}

.cookie-modal .imageflex {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

    .cookie-modal .imageflex img {
        height: 30px;
        width: auto;
        flex-shrink: 0;
    }

#cookieModal h5 {
    margin: 0;
}

#cookieModal .cancelbtn {
    background: #fff !important;
    color: #333 !important;
    border: 1.5px solid #999 !important;
}

#preferences .cookie-modal-content {
    padding: 20px 20px 15px 20px;
    box-sizing: border-box;
}

#preferences {
    width: 596px;
}

@media screen and (max-width: 768px) {
    #preferences {
        width: 92%;
    }
}

.cookie-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.cookie-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.cookie-card-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.cookie-card-desc {
    font-size: 12px;
    color: #666;
    margin: 4px 0 6px 0;
    line-height: 1.5;
}

.toggle-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.toggle-label {
    font-size: 11px;
    font-weight: 600;
}

    .toggle-label.on {
        color: #B6A999;
    }

    .toggle-label.off {
        color: #999;
    }

.toggle {
    position: relative;
    width: 36px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

    .toggle.active {
        background: #B6A999;
    }

    .toggle::after {
        content: '';
        position: absolute;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: white;
        top: 3px;
        left: 3px;
        transition: left 0.3s;
    }

    .toggle.active::after {
        left: 19px;
    }

    .toggle.disabled {
        background: #d8c9b5 !important;
        cursor: not-allowed;
        opacity: 0.8;
    }

.cancelbtn {
    background: #fff !important;
    color: #333 !important;
    border: 1.5px solid #999 !important;
    padding: 7px 18px !important;
    border-radius: 6px !important;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s;
}

    .cancelbtn:hover {
        border-color: #d93025 !important;
        color: #d93025 !important;
        background: transparent !important;
    }

.accpbtn {
    background-color: #B6A999 !important;
    color: #1a1a1a !important;
    border: none !important;
    padding: 7px 18px !important;
    border-radius: 6px !important;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s;
}

    .accpbtn:hover {
        background-color: #a08e7f !important;
    }

#cookieModal .pref {
    margin-left: 4px;
    white-space: nowrap;
}

/*for arabic*/
/* ================= RTL / Arabic Support ================= */

[dir="rtl"] .cookie-modal {
    left: auto;
    right: 20px;
    text-align: right;
}

@media screen and (max-width: 768px) {
    [dir="rtl"] .cookie-modal {
        right: 4%;
        left: auto;
    }
}

[dir="rtl"] #cookieModal p,
[dir="rtl"] #cookieModal p.mb-1 {
    text-align: right !important;
}

[dir="rtl"] .cookie-modal .imageflex {
    flex-direction: row-reverse;
}

[dir="rtl"] #cookieModal h5 {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .cookie-modal .d-flex.align-items-center.gap-2 {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

[dir="rtl"] #cookieModal .pref {
    margin-left: 0;
    margin-right: 4px;
}

/* Preferences modal RTL */
[dir="rtl"] #preferences {
    left: auto;
    right: 20px;
}

[dir="rtl"] .cookie-card-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .cookie-card-title,
[dir="rtl"] .cookie-card-desc {
    text-align: right;
}

[dir="rtl"] .toggle-wrap {
    flex-direction: row-reverse;
}

[dir="rtl"] .toggle::after {
    left: auto;
    right: 3px;
}

[dir="rtl"] .toggle.active::after {
    right: 19px;
    left: auto;
}

[dir="rtl"] .cookie-modal .d-flex.align-items-center.justify-content-between {
    flex-direction: row-reverse;
}

[dir="rtl"] #backFromPrefsBtn i {
    transform: scaleX(-1); /* back arrow flip ho jayega right pointing */
}
/*for arabic*/


/*Cookis css*/
