/* ============================================
   ZOOM BAHRAIN - CLEAN CSS
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Base keyframes (for future use if needed) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

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

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Generic scroll-animate class (optional base) */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Modern GSAP Scroll Reveal initial states */
.js .reveal-up,
.js .reveal-left,
.js .reveal-right,
.js .fade-in,
.js .fade-in-up,
.js .slide-in-left,
.js .slide-in-right,
.js .service-item,
.js .partner-item,
.js .feature-item,
.js .faq-item,
.js .footer-brand-companies-list li,
.js .certification-card,
.js .membership-card,
.js .media-item,
.js .youth-item,
.js .client-card,
.js .future-item,
.js .pillar-card,
.js .value-card,
.js .differentiator-item,
.js .culture-item,
.js .stagger-reveal>* {
    opacity: 0;
    will-change: transform, opacity;
}

/* Default vertical offset */
.js .reveal-up,
.js .fade-in-up,
.js .fade-in,
.js .service-item,
.js .partner-item,
.js .feature-item,
.js .faq-item,
.js .footer-brand-companies-list li,
.js .certification-card,
.js .membership-card,
.js .media-item,
.js .youth-item,
.js .client-card,
.js .future-item,
.js .pillar-card,
.js .value-card,
.js .differentiator-item,
.js .culture-item,
.js .stagger-reveal>* {
    transform: translateY(50px);
}

/* Horizontal offsets */
.js .reveal-left,
.js .slide-in-left {
    transform: translateX(-50px);
}

.js .reveal-right,
.js .slide-in-right {
    transform: translateX(50px);
}

.js .fade-in {
    transform: translateY(30px);
}

.js .is-revealed {
    opacity: 1;
    visibility: visible;
}

.js .image-reveal img.is-revealed {
    clip-path: inset(0% 0% 0% 0%);
}

.hero-background,
.image-reveal img,
.reveal-up,
.reveal-left,
.reveal-right,
.fade-in,
.fade-in-up,
.slide-in-left,
.slide-in-right,
.service-item,
.partner-item,
.feature-item,
.faq-item,
.stagger-reveal > * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Image Reveal Animations (Clip-path) */
.image-reveal {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.image-reveal img {
    opacity: 0;
    transform: scale(1.06);
    clip-path: inset(8% 8% 8% 8%);
    will-change: clip-path, transform, opacity;
}

/* Stagger wrapper helper */
.stagger-reveal>* {
    opacity: 0;
    transform: translateY(30px);
}

/* Stagger Animation Delays */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

/* Fallback: show elements if JS disabled */
.no-js .fade-in,
.no-js .fade-in-up,
.no-js .slide-in-left,
.no-js .slide-in-right {
    opacity: 1 !important;
    transform: none !important;
}

/* Safety fallback removed – IntersectionObserver handles visibility */
/* Removed auto-show after 500ms to allow proper scroll animations */

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .fade-in,
    .fade-in-up,
    .slide-in-left,
    .slide-in-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .fade-in.show,
    .fade-in-up.show,
    .slide-in-left.show,
    .slide-in-right.show {
        opacity: 1 !important;
        transform: none !important;
    }
}

main {
    position: relative;
    z-index: 5;
}

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

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

.global-bahrain-highlight {
    color: #179cd8;
    font-weight: 800;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #014B6F;
    color: #fff;
    padding: 8px;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* ============================================
   HEADER & NAVIGATION CONTAINER
   ============================================ */
.bahrain-main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Blue decorative element above logo - REMOVED */

.bahrain-main-header-col-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 0px 60px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

@media (max-width: 1799.98px) {
    .bahrain-main-header-col-wrapper {
        gap: 30px;
    }
}

@media (max-width: 1399.98px) {
    .bahrain-main-header-col-wrapper {
        gap: 20px;
    }
}

@media (max-width: 1199.98px) {
    .bahrain-main-header-col-wrapper {
        padding: 20px 60px;
    }
}

@media (max-width: 767.98px) {
    .bahrain-main-header-col-wrapper {
        padding: 20px 40px;
    }
}

@media (max-width: 575.98px) {
    .bahrain-main-header-col-wrapper {
        padding: 20px 20px;
    }
}

.logo-menu-wrapper {
    display: contents;
}

@media (max-width: 1799.98px) {
    .logo-menu-wrapper {
        gap: 30px;
    }
}

.bh-logo-area {
    display: flex;
    align-items: center;
}

.bh-logo-area img {
    max-width: 200px;
    height: 100px;
    object-fit: contain;
    transition: all 0.75s ease;
}

.bh-logo-area .logo-transparent {
    display: block;
    opacity: 1;
}

.bh-logo-area .logo-scrolled {
    display: none;
    opacity: 0;
}

.bahrain-main-header.headroom--not-top .bh-logo-area .logo-transparent {
    display: none;
    opacity: 0;
}

.bahrain-main-header.headroom--not-top .bh-logo-area .logo-scrolled {
    display: block;
    opacity: 1;
}

@media (max-width: 1599.98px) {
    .bh-logo-area img {
        max-width: 180px;
        height: 90px;
    }
}

/* ============================================
   NAVIGATION MENU
   ============================================ */
.bahrain-primary-menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

.bh-navigation-area {
    width: 100%;
    display: flex;
    justify-content: center;
}

.navik-menu {
    width: auto;
}

.navik-menu>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 1799.98px) {
    .navik-menu>ul {
        gap: 50px;
    }
}

@media (max-width: 1599.98px) {
    .navik-menu>ul {
        gap: 40px;
    }
}

@media (max-width: 1399.98px) {
    .navik-menu>ul {
        gap: 25px;
    }
}

.navik-menu>ul>li {
    position: relative;
}

.navik-menu>ul>li>a {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 10px 0;
    font-family: "Inter", sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1599.98px) {
    .navik-menu>ul>li>a {
        font-size: 15px;
    }
}

@media (max-width: 1399.98px) {
    .navik-menu>ul>li>a {
        font-size: 14px;
    }
}

.navik-menu>ul>li>a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   MEGA MENU DROPDOWN
   ============================================ */
.navik-menu>ul>li.mega-menu {
    position: relative;
}

.navik-menu>ul>li.mega-menu>ul {
    position: absolute;
    top: calc(100% + 5px);
    left: -110px;
    padding: 45px;
    width: auto !important;
    min-width: 950px;
    max-width: 950px;
    margin-top: 0 !important;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: -1px -1px 18px -2px rgba(0, 0, 0, 0.22);
    transform: translateY(100px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition-delay: 0s;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    list-style: none;
}

/* Bridge gap between menu and dropdown */
.navik-menu>ul>li.mega-menu>ul::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
}

@media (max-width: 1599.98px) {
    .navik-menu>ul>li.mega-menu>ul {
        min-width: 850px;
        max-width: 850px;
    }
}

@media (max-width: 1399.98px) {
    .navik-menu>ul>li.mega-menu>ul {
        left: -220px;
        min-width: 800px;
        max-width: 800px;
    }
}

/* Dropdown Arrow */
.navik-menu>ul>li.mega-menu>ul:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    top: -10px;
    left: 18%;
}

@media (max-width: 1399.98px) {
    .navik-menu>ul>li.mega-menu>ul:before {
        left: 33%;
    }
}

/* Show dropdown on hover - handled by JavaScript and CSS fallback */
.navik-menu>ul>li.mega-menu:hover>ul,
.navik-menu>ul>li.mega-menu.active>ul {
    transform: translateY(0px);
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition-delay: 0.1s;
}

.navik-menu>ul>li.mega-menu:hover>ul::after,
.navik-menu>ul>li.mega-menu.active>ul::after {
    pointer-events: auto;
}

/* ============================================
   MEGA MENU CONTAINER
   ============================================ */
.mega-menu-container {
    padding: 0px;
}

.mega-menu-container .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.mega-menu-container .col-xxl-7,
.mega-menu-container .col-xl-8 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 0 15px;
}

.mega-menu-container .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.mega-menu-container .col-xxl-5,
.mega-menu-container .col-xl-4 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0 15px;
}

.mega-menu-events-content h5 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-size: 22px;
}

.mega-menu-events-content .mega-menu-desc p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.mega-menu-events-content .mega-menu-desc p strong {
    color: #179cd8;
    font-weight: 600;
}

.flyout-main-menu>li>a.active-service {
    color: #179cd8 !important;
    padding-left: 25px !important;
}

.flyout-main-menu>li>a.active-service:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #179cd8;
    border-radius: 0px;
}

.mega-menu-container h4 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
    font-size: 28px;
}

@media (max-width: 1399.98px) {
    .mega-menu-container h4 {
        font-size: 24px;
    }
}

/* ============================================
   FLYOUT MENU (Left Column Links)
   ============================================ */
.flyout-main-menu-container {
    width: 100%;
    background: transparent;
    position: relative;
    padding-bottom: 5px;
    padding-top: 5px;
    margin-top: 20px;
    overflow: hidden;
}

.flyout-main-menu-container__wrapper {
    transition: all 0.5s ease;
    display: flex;
}

.flyout-main-menu-container__wrapper>ul {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.flyout-main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flyout-main-menu>li {
    position: relative;
}

.flyout-main-menu>li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 3px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.flyout-main-menu>li:hover:after {
    background-color: #179cd8;
}

.flyout-main-menu>li>a {
    padding: 6px 22px 6px 20px !important;
    transition: all 0.2s ease-out;
    color: rgba(66, 66, 66, 0.75) !important;
    font-size: 18px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    display: block;
    pointer-events: auto;
    cursor: pointer;
}

@media (max-width: 1599.98px) {
    .flyout-main-menu>li>a {
        font-size: 16px;
    }
}

.flyout-main-menu>li:hover>a {
    padding: 6px 17px 6px 25px !important;
    color: #179cd8 !important;
}

/* Services events submenu */
.flyout-main-menu>li.services-submenu-item:hover:after,
.flyout-main-menu>li.services-submenu-item.open:after {
    background-color: #179cd8;
}

.events-parent-link {
    padding: 6px 22px 6px 20px;
    transition: all 0.2s ease-out;
    color: rgba(66, 66, 66, 0.75);
    font-size: 18px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1599.98px) {
    .events-parent-link {
        font-size: 16px;
    }
}

.flyout-main-menu>li.services-submenu-item:hover>.events-parent-link,
.flyout-main-menu>li.services-submenu-item.open>.events-parent-link {
    padding: 6px 17px 6px 25px;
    color: #179cd8;
}

.submenu-arrow {
    font-size: 14px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.services-submenu-item.open .submenu-arrow {
    transform: rotate(90deg);
}

.events-submenu {
    display: none;
    list-style: none;
    margin: 2px 0 8px;
    padding: 0 0 0 14px;
}

.services-submenu-item.open .events-submenu,
.services-submenu-item:hover .events-submenu {
    display: block;
}

.events-submenu li a {
    display: block;
    padding: 6px 16px 6px 20px;
    color: rgba(66, 66, 66, 0.85);
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.events-submenu li a:hover {
    color: #179cd8;
    transform: translateX(3px);
}

/* ============================================
   MEGA MENU SLIDER (Right Column)
   ============================================ */
.mega-menu-slider {
    position: relative;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.1s ease;
}

.navik-menu>ul>li.mega-menu:hover .mega-menu-slider {
    pointer-events: inherit;
    opacity: 1;
    visibility: visible;
}

.mega-menu-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.mega-menu-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mega-menu-slide.active {
    display: block;
    opacity: 1;
}

.mega-menu-box {
    margin-bottom: 0px !important;
    background-color: #ffffff;
    transition: all 0.75s ease;
    transition-delay: 0.5s;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.navik-menu>ul>li.mega-menu:hover .mega-menu-box {
    pointer-events: inherit;
    opacity: 1;
    visibility: visible;
}

.mega-menu-thumbnail {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 30px;
}

.mega-menu-thumbnail a {
    display: block;
    position: relative;
}

.mega-menu-thumbnail a img {
    border-radius: 30px;
    transition: all 0.5s ease;
    height: 100%;
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    display: block;
}

.mega-menu-thumbnail a:hover img {
    transform: scale(1.05);
}

.mega-menu-desc {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #535353;
    font-style: normal;
    line-height: 1.5;
}

.mega-menu-description-only {
    padding: 20px 0;
}

.mega-menu-description-only .mega-menu-desc {
    margin-bottom: 15px;
}

.mega-menu-description-only .mega-menu-desc p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.mega-menu-description-only .mega-menu-desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1399.98px) {
    .mega-menu-desc {
        font-size: 14px;
    }
}

/* Slider Navigation Buttons */
.mega-menu-slider-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.mega-menu-prev,
.mega-menu-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 24px;
    color: #179cd8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mega-menu-prev:hover,
.mega-menu-next:hover {
    background-color: #179cd8;
    color: #ffffff;
    transform: scale(1.1);
}

.mega-menu-prev:active,
.mega-menu-next:active {
    transform: scale(0.95);
}

/* ============================================
   STICKY HEADER STYLES
   ============================================ */
.bahrain-main-header.headroom--not-top {
    background-color: #ffffff !important;
    backdrop-filter: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bahrain-main-header.headroom--not-top .bh-logo-area img {
    max-width: 160px;
    height: 80px;
}

.bahrain-main-header.headroom--not-top .navik-menu>ul>li>a {
    color: #000000;
    text-shadow: none;
}

.bahrain-main-header.headroom--not-top .navik-menu>ul>li>a:hover {
    color: #179cd8;
}

.bahrain-main-header.headroom--not-top .navik-menu>ul>li.mega-menu>ul {
    margin-top: 18px !important;
}

/* Social Links */
.social-section {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.bahrain-main-header.headroom--not-top .social-link {
    background-color: rgba(23, 156, 216, 0.1);
    color: #179cd8;
    border-color: rgba(23, 156, 216, 0.2);
}

.bahrain-main-header.headroom--not-top .social-link:hover {
    background-color: #179cd8;
    color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.bahrain-main-header.headroom--not-top .hamburger-line {
    background: #333;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 940px;
    min-height: 940px;
    overflow: hidden;
    margin-top: -80px;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-image: url("images/images/imgi_3_shutterstock_1976348039.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(50, 130, 180, 0.35) 0%, rgba(30, 80, 120, 0.5) 100%);
    transform: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: clamp(2rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    margin-left: clamp(3rem, 6vw, 5rem);
    padding-top: clamp(8rem, 15vw, 12rem);
}

.hero-content-bubble {
    background: rgba(100, 150, 200, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: min(85%, 600px);
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: clamp(0.8rem, 2.5vw, 1.2rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title .highlighted-text {
    color: #70AEEB;
    font-weight: 700;
}

.hero-description {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    font-weight: 400;
}

.hero-cta {
    margin-top: 34px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #179cd8;
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1280b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 156, 216, 0.35);
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.industries-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-title strong {
    color: #005B96;
}

.section-description {
    text-align: center;
    max-width: 100%;
    margin-bottom: 50px;
    padding: 0 40px;
}

.section-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Services Carousel */
.services-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.services-carousel {
    display: flex;
    gap: 25px;
    animation: scrollCarousel 60s linear infinite;
    width: fit-content;
    will-change: transform;
}

.services-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 180px;
    min-width: 180px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(23, 156, 216, 0.4);
    border: 2px solid #179cd8;
    background: rgba(23, 156, 216, 0.02);
}

.service-icon {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: transparent;
    position: relative;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    /* Filter for #179cd8 - bright blue */
    filter: brightness(0) saturate(100%) invert(58%) sepia(96%) saturate(2000%) hue-rotate(175deg) brightness(0.85) contrast(0.9);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon img {
    /* Filter for #255575 - darker blue */
    filter: brightness(0) saturate(100%) invert(30%) sepia(50%) saturate(1500%) hue-rotate(195deg) brightness(0.5) contrast(1.2);
    transform: scale(1.05);
}

.service-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.4;
    font-family: "Inter", sans-serif;
    transition: color 0.3s ease;
}

.service-item:hover .service-name {
    color: #179cd8;
}

/* Company Description */
.company-description {
    max-width: 100%;
    margin: 60px auto;
    text-align: center;
    padding: 0 40px;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.description-content strong {
    color: #014B6F;
}

.highlighted-text {
    color: #179cd8;
    font-weight: 600;
}

.about-zoom-link {
    margin: 40px 0;
    text-align: center;
}

.about-zoom-link a {
    color: #014B6F;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.about-zoom-link a:hover {
    color: #179cd8;
}

.zoom-logo-image {
    text-align: center;
    margin: 40px 0;
}

.zoom-logo-image img {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}

/* Zoom Companies Information Section */
.zoom-companies-info {
    margin: 40px auto 60px;
    text-align: center;
    padding: 0 40px;
    max-width: 100%;
}

.zoom-companies-info h3 {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #014B6F;
    margin-bottom: 30px;
}

.companies-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.companies-list li {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    font-family: "Lato", sans-serif;
}

@media (max-width: 767.98px) {
    .zoom-companies-info {
        padding: 0 20px;
    }

    .zoom-companies-info h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .companies-list li {
        font-size: 14px;
    }
}

/* ============================================
   EXPERIENCE SECTION - CARDS CAROUSEL
   ============================================ */
.experience-bahrain-section {
    padding: 100px 0;
    position: relative;
    background: #f8fafc;
    z-index: 10;
    width: 100%;
}

.experience-bahrain-section .container-fluid {
    max-width: 100%;
    padding: 0 40px;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.home-exp-container {
    max-width: 100%;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.home-exp-container .row {
    margin: 0;
}

.home-exp-container .col-12 {
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 {
    width: 100%;
    padding: 0 15px;
}

.sec-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.sec-title-area {
    flex: 1;
}

.sec-title-area h2 {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.sec-title-area .abstract {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: #424242;
    margin-bottom: 0;
}

.sec-cta-button-area {
    display: flex;
    align-items: center;
}

.sec-cta-button-area.mob-sec-cta-btn {
    display: none;
    margin-top: 40px;
    text-align: center;
}

/* Carousel Container - Full Width */

.masonary-grid-slider-wrapper {
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}

.full-width-masonry-swiper {
    border-radius: 0;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    cursor: grab;
}

.full-width-masonry-swiper.dragging {
    cursor: grabbing;
}

.full-width-masonry-swiper .swiper-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: fit-content;
    will-change: transform;
    overflow: visible;
}

.full-width-masonry-swiper .swiper-wrapper.auto-scroll {
    animation: scrollCarouselHorizontal 60s linear infinite;
    animation-fill-mode: both;
}

@keyframes scrollCarouselHorizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Ensure seamless infinite loop - never ending */
.full-width-masonry-swiper .swiper-wrapper.auto-scroll {
    animation: scrollCarouselHorizontal 60s linear infinite;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.full-width-masonry-swiper:hover .swiper-wrapper {
    animation-play-state: paused;
}

.full-width-masonry-swiper .swiper-slide {
    flex-shrink: 0;
    height: auto;
    transition: all 0.5s ease;
    opacity: 1;
    width: auto;
}

/* Masonry Card Wrapper */
.masonry-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    position: relative;
    width: 400px;
    /* Fixed width for each slide */
    height: 100%;
    transition: all 0.5s ease;
}

/* Big Card - Full Height */
.masonry-slider-wrapper:has(.masonry-slider-link-wrapper:only-child) {
    height: 600px;
}

/* Small Cards - Stacked */
.masonry-slider-wrapper:not(:has(.masonry-slider-link-wrapper:only-child)) {
    height: 600px;
}

.masonry-slider-link-wrapper {
    width: 100%;
    background-color: #000000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex: 1;
}

/* Small cards get 50% height minus gap */
.masonry-slider-wrapper:not(:has(.masonry-slider-link-wrapper:only-child)) .masonry-slider-link-wrapper {
    height: calc(50% - 10px);
}

/* Card Styles */
.common-hover-link {
    display: block;
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.common-hover-img-area {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    transition: all 0.5s ease;
    border-radius: 10px;
    background-color: #000000;
}

.common-hover-img-area:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.common-hover-img-area img {
    height: 100%;
    width: 100%;
    transition: all 0.5s ease;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.common-hover-title-area {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
    width: 100%;
    color: #ffffff;
    z-index: 11;
    transition: all 0.5s ease;
    transform: translateY(0px);
}

.common-hover-title-area h4 {
    font-weight: 700;
    font-family: "Inter", sans-serif;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all 0.5s ease;
    width: 90%;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.3;
}

.icon-right-arrow {
    opacity: 0;
    visibility: hidden;
    background-color: #179cd8;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

/* Hover Effects */
.common-hover-link:hover .common-hover-title-area h4 {
    color: #179cd8;
}

.common-hover-link:hover .icon-right-arrow {
    opacity: 1;
    visibility: visible;
}

.common-hover-link:hover .common-hover-img-area img {
    transform: scale(1.05);
    opacity: 0.75;
}

.masonry-slider-wrapper .common-hover-link:hover .common-hover-title-area {
    transform: translateY(-50px);
}

/* Carousel Navigation - Hidden */
.carousel-nav {
    display: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 30px;
    color: #CD2417;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: #CD2417;
    color: #ffffff;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Pagination Dots */
.masonry-slider-pagination-sec {
    display: none;
}

.common-pagination-bullets {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination-bullet:hover {
    background-color: #999999;
    transform: scale(1.2);
}

.pagination-bullet.active {
    background-color: #179cd8;
    width: 30px;
    border-radius: 6px;
    border-color: #179cd8;
}

/* Buttons */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: #CD2417;
    color: #ffffff;
    border: 1px solid #CD2417;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.5s ease;
    font-family: "Lato", sans-serif;
}

.primary-btn:hover {
    background-color: #ffffff;
    color: #CD2417;
}

.primary-btn.transparent-bg-btn {
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
}

.primary-btn.transparent-bg-btn:hover {
    background-color: #CD2417;
    border-color: #CD2417;
    color: #ffffff;
}

/* Dragging States */
.full-width-masonry-swiper.dragging .swiper-wrapper {
    transition: none;
}

.full-width-masonry-swiper.dragging .common-hover-link {
    pointer-events: none;
}

/* ============================================
    SERVICES DETAIL SECTION
    ============================================ */
.services-detail-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    z-index: 10;
    width: 100%;
}

.service-detail-item {
    margin-bottom: 100px;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-content-featured {
    grid-template-areas:
        "heading image"
        "body image";
    align-items: start;
}

.service-detail-content-featured .service-detail-heading {
    grid-area: heading;
    padding: 40px 40px 0 40px;
}

.service-detail-heading-mobile {
    display: none;
}

.service-detail-content-featured .service-detail-image {
    grid-area: image;
}

.service-detail-content-featured .service-detail-text {
    grid-area: body;
    padding-top: 10px;
}

.service-detail-heading h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-detail-heading h3 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #179cd8;
    margin-bottom: 10px;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse>* {
    direction: ltr;
}

.service-detail-text {
    padding: 40px;
}

.service-category {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #179cd8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}

.service-detail-text h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-detail-text h3 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #179cd8;
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    font-weight: 500;
    color: #424242;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-seo-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #179cd8;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
}

.service-cta-btn:hover {
    background: #1280b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 156, 216, 0.35);
}

.service-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Match all other service images to the logistics card proportions,
   while leaving the logistics section itself unchanged. */
.services-detail-section .service-detail-item:not(:nth-child(5)) .service-detail-image {
    aspect-ratio: 4 / 3;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    min-height: 400px;
}

.service-detail-item:hover .service-detail-image img {
    transform: scale(1.05);
}

@media (max-width: 1199.98px) {
    .service-detail-content {
        gap: 40px;
    }

    .service-detail-text h2 {
        font-size: 36px;
    }

    .service-detail-text h3 {
        font-size: 22px;
    }
}

@media (max-width: 991.98px) {
    .services-detail-section {
        padding: 80px 0;
    }

    .service-detail-item {
        margin-bottom: 80px;
    }

    .service-detail-content {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        gap: 20px;
    }

    .service-detail-content-featured {
        display: flex;
        flex-direction: column;
        grid-template-areas: none;
        gap: 20px;
    }

    .service-detail-content-featured .service-detail-heading {
        padding: 30px 20px 0 20px;
        order: 1;
    }

    .service-detail-content-featured .service-detail-text {
        padding: 0 20px 30px 20px;
        order: 3;
    }

    .service-detail-content-featured .service-detail-image {
        order: 2;
    }

    .service-detail-heading-mobile {
        display: block;
        order: 1;
        padding: 30px 20px 0 20px;
    }

    .service-detail-heading-mobile .service-category {
        margin-bottom: 12px;
    }

    .service-detail-heading-mobile h2 {
        font-family: "Inter", sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .service-detail-heading-mobile h3 {
        font-family: "Inter", sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: #179cd8;
        margin-bottom: 0;
    }

    .service-detail-content .service-detail-image {
        order: 2;
    }

    .service-detail-content .service-detail-text {
        order: 3;
    }

    .service-detail-content .service-detail-text>.service-category,
    .service-detail-content .service-detail-text>h2,
    .service-detail-content .service-detail-text>h3 {
        display: none;
    }

    .service-detail-content.reverse {
        direction: ltr;
    }

    .service-detail-text {
        padding: 30px 20px;
        order: 2;
    }

    .service-detail-image {
        order: 1;
    }

    .service-detail-text h2 {
        font-size: 32px;
    }

    .service-detail-heading h2 {
        font-size: 32px;
    }

    .service-detail-text h3 {
        font-size: 20px;
    }

    .service-detail-heading h3 {
        font-size: 20px;
    }

    .service-description {
        font-size: 16px;
    }

    .service-seo-text {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .services-detail-section {
        padding: 60px 0;
    }

    .service-detail-item {
        margin-bottom: 60px;
    }

    .service-detail-text {
        padding: 25px 15px;
    }

    .service-detail-content-featured .service-detail-heading {
        padding: 25px 15px 0 15px;
    }

    .service-detail-heading-mobile {
        padding: 25px 15px 0 15px;
    }

    .service-detail-content-featured .service-detail-text {
        padding: 0 15px 25px 15px;
    }

    .service-detail-text h2 {
        font-size: 28px;
    }

    .service-detail-heading h2 {
        font-size: 28px;
    }

    .service-detail-text h3 {
        font-size: 18px;
    }

    .service-detail-heading h3 {
        font-size: 18px;
    }

    .service-detail-heading-mobile h2 {
        font-size: 28px;
    }

    .service-detail-heading-mobile h3 {
        font-size: 18px;
    }

    .service-description {
        font-size: 15px;
    }

    .service-seo-text {
        font-size: 14px;
    }

    .service-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .service-detail-image img {
        min-height: 300px;
    }

    .services-detail-section .service-detail-item:not(:nth-child(5)) .service-detail-image {
        aspect-ratio: 4 / 3;
    }
}

/* ============================================
    WHY CHOOSE US SECTION
    ============================================ */
.why-choose-us-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
    width: 100%;
}

.why-choose-us-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.why-choose-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-us-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.why-choose-us-header .why-choose-us-description {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    color: #424242;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose-us-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(23, 156, 216, 0.2);
    border-color: #179cd8;
    background: #ffffff;
}

.feature-checkmark {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #179cd8 0%, #255575 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(23, 156, 216, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-checkmark {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(23, 156, 216, 0.4);
    background: linear-gradient(135deg, #255575 0%, #179cd8 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.feature-item h4 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.feature-item:hover h4 {
    color: #179cd8;
}

.trusted-partners {
    margin-top: 60px;
}

.trusted-partners h3 {
    font-family: "Inter", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

/* Partners Carousel */
.partners-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.partners-carousel {
    display: flex;
    gap: 20px;
    animation: scrollPartnersCarousel 40s linear infinite;
    width: fit-content;
    will-change: transform;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollPartnersCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    width: 200px;
    height: 150px;
    min-width: 200px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: #179cd8;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(23, 156, 216, 0.25);
    background: #f8fafc;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 1199.98px) {
    .why-choose-us-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .why-choose-us-section {
        padding: 60px 0;
    }

    .why-choose-us-wrapper {
        padding: 0 20px;
    }

    .why-choose-us-header h2 {
        font-size: 36px;
    }

    .why-choose-us-header .why-choose-us-description {
        font-size: 18px;
    }

    .why-choose-us-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .trusted-partners h3 {
        font-size: 28px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    z-index: 10;
    width: 100%;
}

.faq-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-section h2 {
    font-family: "Inter", sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #179cd8;
    box-shadow: 0 4px 12px rgba(23, 156, 216, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: #179cd8;
    background: #f8fafc;
}

.faq-question:focus {
    outline: 2px solid #179cd8;
    outline-offset: -2px;
}

.faq-question[aria-expanded="true"] {
    color: #179cd8;
    background: #f8fafc;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #179cd8;
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: #255575;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 1000px;
    padding: 0 30px 24px 30px;
}

.faq-answer p {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    padding-top: 16px;
}

@media (max-width: 1199.98px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-wrapper {
        padding: 0 30px;
    }

    .faq-section h2 {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-wrapper {
        padding: 0 20px;
    }

    .faq-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-question[aria-expanded="true"]+.faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .faq-section h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-question[aria-expanded="true"]+.faq-answer {
        padding: 0 18px 18px 18px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .partner-item {
        width: 150px;
        height: 110px;
        min-width: 150px;
        padding: 15px;
    }
}

/* ============================================
    FOOTER
    ============================================ */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

/* Footer Brand Companies Information */
.footer-brand-companies {
    margin-top: 25px;
}

.footer-brand-companies h4 {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-brand-companies-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand-companies-list li {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    font-family: "Lato", sans-serif;
}

@media (max-width: 991.98px) {
    .footer-brand-companies h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-brand-companies-list li {
        font-size: 0.85rem;
    }
}

.footer-contact h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact-item i {
    color: #179cd8;
    margin-top: 4px;
}

.footer-contact-item address,
.footer-contact-item div,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: #179cd8;
}

.bahrain-text {
    color: #B00F0F;
}

.days {
    color: #014B6F;
}

.hours-highlight {
    color: #179cd8;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #179cd8;
    transform: translateY(-2px);
}

.footer-map-container {
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* Footer Companies Information */
.footer-companies-info {
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
}

.footer-companies-info h4 {
    font-family: "Inter", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-companies-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-companies-list li {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: "Lato", sans-serif;
}

@media (max-width: 767.98px) {
    .footer-companies-info {
        max-width: 100%;
    }

    .footer-companies-info h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-companies-list li {
        font-size: 0.85rem;
    }
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #179cd8;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
}

.footer-back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-back-to-top:hover {
    color: #179cd8;
}

/* ============================================
   Bahrain.com-style Mobile Footer for Zoom
   ============================================ */

.footer {
    background: #111;
    color: #fff;
}

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

.footer a:hover {
    color: #179cd8;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-mobile-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    margin: 28px 0;
}

.footer-mobile-heading {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 18px;
    color: #fff;
}

.footer-mobile-brand {
    text-align: left;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    max-width: 210px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.footer-description {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.footer-mobile-social {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
}

.footer-social-pill {
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social-pill i {
    color: #179cd8;
    font-size: 1rem;
}

.footer-social-pill:hover {
    background: rgba(23, 156, 216, 0.14);
    border-color: rgba(23, 156, 216, 0.45);
    transform: translateY(-1px);
}

.footer-mobile-links-block,
.footer-mobile-contact,
.footer-mobile-newsletter,
.footer-mobile-entities {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}

.footer-mobile-links li {
    margin: 0;
}

.footer-mobile-links a {
    display: block;
    padding: 9px 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

.footer-mobile-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.6;
}

.footer-mobile-contact-item:last-child {
    margin-bottom: 0;
}

.footer-mobile-contact-item i {
    flex: 0 0 18px;
    color: #179cd8;
    margin-top: 4px;
}

.footer-mobile-contact-item address {
    margin: 0;
    font-style: normal;
}

.footer-mobile-newsletter p {
    margin: 0 0 16px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter-form input {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0 18px;
    font-size: 0.95rem;
    outline: none;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.footer-newsletter-form input:focus {
    border-color: #179cd8;
}

.footer-newsletter-form button {
    min-height: 48px;
    border-radius: 999px;
    border: 0;
    background: #179cd8;
    color: #fff;
    padding: 0 22px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
}

.footer-mobile-entities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-mobile-entities li {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 8px;
}

.footer-mobile-updated {
    padding: 22px 0 10px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.48);
}

.footer-mobile-bottom {
    padding-top: 18px;
    text-align: left;
}

.footer-copyright {
    margin: 0 0 16px;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
}

.footer-mobile-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 20px;
}

.footer-mobile-legal a {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
}

/* Mobile only layout */
@media (max-width: 767.98px) {
    .footer {
        padding: 42px 0 28px;
    }

    .footer-container {
        width: 100%;
        max-width: 100%;
        padding: 0 22px;
        margin: 0 auto;
    }

    .zoom-mobile-footer.has-mobile-footer .footer-top,
    .zoom-mobile-footer.has-mobile-footer .footer-bottom {
        display: none !important;
    }

    .zoom-mobile-footer.has-mobile-footer .footer-brand-companies,
    .zoom-mobile-footer.has-mobile-footer .footer-map-container,
    .zoom-mobile-footer.has-mobile-footer .footer-contact > h3,
    .zoom-mobile-footer.has-mobile-footer .footer-social > h3,
    .zoom-mobile-footer.has-mobile-footer .footer-social-links {
        display: none !important;
    }

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

/* Slightly wider mobile */
@media (min-width: 390px) and (max-width: 767.98px) {
    .footer-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-logo {
        max-width: 230px;
    }
}

/* Tablet and desktop: allow your existing footer layout to work */
@media (min-width: 768px) {
    .footer-mobile-brand,
    .footer-mobile-social,
    .footer-mobile-divider,
    .footer-mobile-links-block,
    .footer-mobile-contact,
    .footer-mobile-newsletter,
    .footer-mobile-entities,
    .footer-mobile-updated,
    .footer-mobile-bottom {
        display: none !important;
    }
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199.98px) {
    .container-fluid {
        max-width: 100%;
        padding: 0 30px;
    }

    .sec-title-area h2 {
        font-size: 40px;
    }

    .sec-title-area .abstract {
        font-size: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 991.98px) {
    .sec-title-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .sec-cta-button-area {
        display: none;
    }

    .sec-cta-button-area.mob-sec-cta-btn {
        display: block;
    }

    .masonry-slider-wrapper {
        width: 350px;
    }

    .masonry-slider-wrapper:has(.masonry-slider-link-wrapper:only-child) {
        height: 550px;
    }

    .masonry-slider-wrapper:not(:has(.masonry-slider-link-wrapper:only-child)) {
        height: 550px;
    }

    .full-width-masonry-swiper .swiper-wrapper {
        gap: 15px;
    }

    .carousel-nav {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 1199.98px) {
    .bahrain-main-header-col-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .bh-logo-area {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
    }

    .bh-logo-area a {
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .bh-logo-area img {
        max-width: clamp(140px, 34vw, 190px);
        width: auto;
        height: auto;
        max-height: 52px;
        object-fit: contain;
    }

    .social-section {
        display: none;
    }

    .mobile-menu-toggle {
        margin-left: auto;
        align-self: center;
        justify-content: center;
    }

    .bahrain-primary-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
        pointer-events: none;
    }

    .bahrain-primary-menu.active {
        transform: translateX(0);
        pointer-events: auto;
    }

    .navik-menu>ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .navik-menu>ul>li {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }

    .navik-menu>ul>li>a {
        padding: 15px;
        color: #333;
        text-shadow: none;
    }

    .navik-menu>ul>li.mega-menu>ul {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-left: 20px;
        margin-top: 0 !important;
        padding: 20px;
        min-width: auto;
        max-width: 100%;
        left: 0;
    }

    .navik-menu>ul>li.mega-menu>ul:before {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 0;
        overscroll-behavior-y: auto;
    }

    .bahrain-main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        height: 88px;
        min-height: 88px;
        z-index: 5000;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        will-change: auto;
    }

    .bahrain-main-header,
    .bahrain-main-header.headroom--not-top {
        transform: translate3d(0, 0, 0) !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
    }

    .bahrain-main-header-col-wrapper {
        padding: 12px 16px;
        min-height: 88px;
    }

    .bahrain-primary-menu {
        top: 88px;
        max-height: calc(100dvh - 88px);
    }

    .bh-logo-area img {
        max-width: clamp(220px, 58vw, 300px);
        width: auto;
        height: auto;
        max-height: 64px;
    }

    .bahrain-main-header.headroom--not-top .bh-logo-area img,
    .bahrain-main-header.headroom--not-top .logo-img,
    .bahrain-main-header .logo-img {
        max-width: clamp(220px, 58vw, 300px) !important;
        width: auto !important;
        height: auto !important;
        max-height: 64px !important;
    }

    .bahrain-main-header.headroom--not-top .bh-logo-area .logo-transparent {
        display: none !important;
        opacity: 0 !important;
    }

    .bahrain-main-header.headroom--not-top .bh-logo-area .logo-scrolled {
        display: block !important;
        opacity: 1 !important;
    }

    .social-section {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        padding: 6px;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    .social-section {
        display: none;
    }

    .hero-section {
        height: 940px;
        min-height: 540px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .container-fluid {
        max-width: 100%;
        padding: 0 20px;
    }

    .industries-container {
        padding: 0 20px;
    }

    .section-description {
        padding: 0 20px;
    }

    .company-description {
        padding: 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .sec-title-area h2 {
        font-size: 30px;
    }

    .abstract {
        font-size: 18px;
    }

    .experience-bahrain-section .sec-title-area .abstract {
        margin: 10px;
    }

    .experience-bahrain-section .sec-title-area h2 {
        margin: 10px;
    }

    .experience-bahrain-section {
        padding: 60px 0;
    }

    .experience-bahrain-section .container-fluid,
    .experience-bahrain-section .home-exp-container,
    .experience-bahrain-section .home-exp-container .row,
    .experience-bahrain-section .home-exp-container .col-12 {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .full-width-masonry-swiper .swiper-wrapper {
        gap: 16px;
    }

    .masonry-slider-wrapper {
        --mobile-card-width: 100vw;
        width: var(--mobile-card-width);
        gap: 16px;
    }

    .masonry-slider-wrapper:has(.masonry-slider-link-wrapper:only-child) {
        height: calc(var(--mobile-card-width) * 1.32);
    }

    .masonry-slider-wrapper:not(:has(.masonry-slider-link-wrapper:only-child)) {
        height: calc(var(--mobile-card-width) * 1.32);
    }

    .masonry-slider-wrapper:not(:has(.masonry-slider-link-wrapper:only-child)) .masonry-slider-link-wrapper {
        height: calc(50% - 8px);
    }

    .masonry-slider-link-wrapper,
    .common-hover-link,
    .common-hover-img-area,
    .common-hover-img-area img {
        border-radius: 24px;
    }

    .common-hover-title-area {
        padding: 20px;
    }

    .common-hover-title-area h4 {
        font-size: 22px;
    }

    .icon-right-arrow {
        right: 20px;
        bottom: 20px;
        height: 40px;
        width: 40px;
    }

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

@media (max-width: 575.98px) {
    .sec-title-area h2 {
        font-size: 28px;
    }

    .common-hover-title-area h4 {
        font-size: 20px;
    }
}

@media (max-width: 340px) {
    .masonry-slider-wrapper {
        --mobile-card-width: 100vw;
        gap: 14px;
    }

    .full-width-masonry-swiper .swiper-wrapper {
        gap: 14px;
    }

    .masonry-slider-wrapper:not(:has(.masonry-slider-link-wrapper:only-child)) .masonry-slider-link-wrapper {
        height: calc(50% - 7px);
    }
}

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

    .hero-description {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .service-item {
        width: 150px;
        min-width: 150px;
        padding: 25px 15px;
    }

    .service-icon {
        height: 100px;
        margin-bottom: 15px;
    }

    .service-icon img {
        width: 60px;
        height: 60px;
    }

    .service-name {
        font-size: 13px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-background {
        transform: none !important;
    }

    .services-carousel {
        animation: none;
    }
}

@media (max-width: 767.98px) {
    html,
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }

    body {
        padding-top: 0 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    body.mobile-menu-open {
        overflow: hidden !important;
    }

    .new-header,
    #header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 88px !important;
        z-index: 99999 !important;

        display: flex !important;
        align-items: center !important;

        background: transparent !important;
        box-shadow: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);

        transform: translate3d(0, 0, 0) !important;
        translate: none !important;
        will-change: background-color, box-shadow;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;

        transition:
            background-color 0.25s ease,
            box-shadow 0.25s ease,
            border-color 0.25s ease;
    }

    .new-header.is-scrolled,
    #header.is-scrolled {
        background: #ffffff !important;
        box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08) !important;
        border-bottom-color: rgba(0, 0, 0, 0.08) !important;
    }

    .new-header.is-scrolled .bh-logo-area .logo-transparent,
    #header.is-scrolled .bh-logo-area .logo-transparent {
        display: none !important;
        opacity: 0 !important;
    }

    .new-header.is-scrolled .bh-logo-area .logo-scrolled,
    #header.is-scrolled .bh-logo-area .logo-scrolled {
        display: block !important;
        opacity: 1 !important;
    }

    .new-header .header-wrapper,
    #header .header-wrapper,
    .new-header .bahrain-main-header-col-wrapper,
    #header .bahrain-main-header-col-wrapper {
        width: 100%;
        min-height: 88px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-section,
    .logo-link,
    .bh-logo-area,
    .bh-logo-area a {
        display: flex;
        align-items: center;
    }

    .logo-img,
    .bh-logo-area .logo-transparent,
    .bh-logo-area .logo-scrolled {
        display: block;
        width: 118px;
        height: auto;
        max-height: none;
        max-width: none;
    }

    .bh-logo-area .logo-scrolled {
        display: none !important;
    }

    .mobile-menu-toggle {
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        background: transparent !important;
        transform: none !important;
    }

    .hamburger-line {
        width: 26px;
        height: 3px;
        border-radius: 999px;
        background: #ffffff;
        transition: background-color 0.25s ease;
    }

    .new-header.is-scrolled .hamburger-line,
    #header.is-scrolled .hamburger-line {
        background: #222222;
    }

    .hero-section,
    .hero,
    .home-hero {
        position: relative;
        margin-top: 0 !important;
    }

    main,
    #main-content {
        transform: none !important;
        filter: none !important;
        perspective: none !important;
        contain: none !important;
    }

    .whatsapp-btn {
        position: fixed !important;
        right: 18px !important;
        bottom: calc(18px + env(safe-area-inset-bottom)) !important;
        z-index: 99998 !important;
        transform: none !important;
        translate: none !important;
        will-change: auto !important;
    }
}

@media (max-width: 767.98px) {
    .home-hero,
    .hero-section {
        position: relative;
        min-height: 100svh;
        height: 100svh;
        overflow: hidden;
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        align-items: flex-end;
        background: #0b2944;
    }

    .hero-background {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        top: 0 !important;
        left: 0;
        overflow: hidden;
        transform: none !important;
        background-position: calc(50% - 50px) center !important;
    }

    .hero-background img,
    .hero-background video,
    .hero-bg,
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(
                to bottom,
                rgba(6, 33, 56, 0.35) 0%,
                rgba(6, 33, 56, 0.18) 35%,
                rgba(6, 33, 56, 0.78) 100%
            );
        transform: none !important;
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: none;
        margin: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 28px calc(58px + env(safe-area-inset-bottom));
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        transform: none !important;
    }

    .hero-content::before,
    .hero-content::after {
        display: none !important;
        content: none !important;
    }

    .hero-eyebrow {
        display: block;
        margin: 0 0 12px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 0.82rem;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .hero-title {
        max-width: 330px;
        margin: 0;
        color: #ffffff;
        font-size: clamp(2.15rem, 9vw, 3.1rem);
        line-height: 0.98;
        font-weight: 800;
        letter-spacing: -0.045em;
        text-wrap: balance;
    }

    .hero-title span {
        color: #19a7df;
    }

    .hero-description {
        max-width: 310px;
        margin: 18px 0 0;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        line-height: 1.62;
        font-weight: 500;
    }

    .hero-cta,
    .hero-content .btn,
    .hero-content .cta-button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto !important;
        min-width: 190px;
        max-width: 260px;
        min-height: 52px;
        margin-top: 44px;
        padding: 0 24px;
        border-radius: 999px !important;
        border: 0 !important;
        background: #1da7df !important;
        color: #ffffff !important;
        font-size: 0.96rem;
        line-height: 1.2;
        font-weight: 800;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
        transform: none !important;
    }

    .hero-cta:hover,
    .hero-content .btn:hover,
    .hero-content .cta-button:hover {
        background: #128fc4 !important;
        color: #ffffff !important;
    }

    .hero-card,
    .hero-glass,
    .hero-content-card,
    .glass-card,
    .hero-content-bubble {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .whatsapp-btn {
        width: 54px !important;
        height: 54px !important;
        right: 18px !important;
        bottom: calc(18px + env(safe-area-inset-bottom)) !important;
        z-index: 99998 !important;
    }

    .home-hero .whatsapp-btn,
    .hero-section .whatsapp-btn {
        position: fixed !important;
    }
}

/* ============================================
   MOBILE DRAWER NAVIGATION (MOBILE ONLY)
   ============================================ */
.zoom-mobile-drawer {
    display: none;
}

@media (max-width: 767.98px) {
    /* Disable old mobile menu system */
    .main-nav,
    .bahrain-primary-menu,
    .nav-list {
        display: none !important;
    }

    .main-nav.active,
    .nav-list.active,
    .bahrain-primary-menu.active,
    .dropdown-menu.active,
    .submenu.active {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Header stays visible, but no desktop changes */
    .new-header,
    .bahrain-main-header,
    #header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        transform: none !important;
    }

    .mobile-menu-toggle {
        width: 48px;
        height: 48px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 0;
        margin: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        transform: none !important;
    }

    .hamburger-line {
        width: 28px;
        height: 3px;
        display: block;
        border-radius: 999px;
        background: #222222;
    }

    /* New drawer */
    .zoom-mobile-drawer {
        position: fixed;
        inset: 0;
        z-index: 100000;
        display: flex;
        flex-direction: column;
        background: #ffffff;
        color: #111111;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        overflow: hidden;
    }

    .zoom-mobile-drawer.is-open {
        transform: translateX(0);
    }

    .zoom-mobile-drawer-header {
        height: 88px;
        flex: 0 0 88px;
        padding: 0 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        background: #ffffff;
    }

    .zoom-mobile-drawer-logo img {
        width: 130px;
        height: auto;
        display: block;
    }

    .zoom-mobile-drawer-close {
        width: 48px;
        height: 48px;
        border: 2px solid #222222;
        border-radius: 6px;
        background: transparent;
        position: relative;
        cursor: pointer;
        flex: 0 0 48px;
    }

    .zoom-mobile-drawer-close span {
        position: absolute;
        left: 9px;
        top: 21px;
        width: 27px;
        height: 3px;
        border-radius: 999px;
        background: #222222;
    }

    .zoom-mobile-drawer-close span:first-child {
        transform: rotate(45deg);
    }

    .zoom-mobile-drawer-close span:last-child {
        transform: rotate(-45deg);
    }

    .zoom-mobile-drawer-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 24px 36px 48px;
        background: #ffffff;
    }

    .zoom-mobile-link,
    .zoom-mobile-toggle,
    .zoom-mobile-subtoggle {
        width: 100%;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        border: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        background: transparent;
        color: #000000;
        font-family: inherit;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.3;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
    }

    .zoom-mobile-icon {
        color: #179cd8;
        font-size: 1.35rem;
        line-height: 1;
        font-weight: 400;
    }

    .zoom-mobile-panel,
    .zoom-mobile-subpanel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .zoom-mobile-group.is-open > .zoom-mobile-panel {
        max-height: 900px;
    }

    .zoom-mobile-subgroup.is-open > .zoom-mobile-subpanel {
        max-height: 650px;
    }

    .zoom-mobile-panel > a,
    .zoom-mobile-subpanel > a {
        display: block;
        padding: 13px 0 13px 18px;
        color: rgba(0, 0, 0, 0.66);
        font-size: 0.96rem;
        font-weight: 500;
        line-height: 1.45;
        text-decoration: none;
    }

    .zoom-mobile-subtoggle {
        min-height: 54px;
        padding-left: 18px;
        border-bottom: 0;
        color: rgba(0, 0, 0, 0.76);
        font-size: 0.96rem;
        font-weight: 600;
    }

    .zoom-mobile-subpanel > a {
        padding-left: 36px;
        font-size: 0.92rem;
        color: rgba(0, 0, 0, 0.58);
    }

    body.zoom-mobile-menu-open {
        overflow: hidden;
    }
}

@media (min-width: 768px) {
    .zoom-mobile-drawer {
        display: none !important;
    }
}

@media (min-width: 768px) {
    /* Restore desktop hero appearance after mobile hero refactor */
    .home-hero .hero-eyebrow {
        display: none;
    }

    .home-hero .hero-content {
        width: auto;
        max-width: min(85%, 600px);
        height: auto;
        margin-top: clamp(8rem, 15vw, 12rem);
        margin-left: clamp(3rem, 6vw, 5rem);
        background: rgba(100, 150, 200, 0.2);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
    }

    .home-hero .hero-title span {
        color: #70aeeb;
        font-weight: 700;
    }

    .home-hero .hero-cta {
        display: inline-block;
        padding: 12px 28px;
        margin-top: 1.5rem;
        background: #179cd8;
        color: #fff;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        line-height: 1.2;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .home-hero .hero-cta:hover {
        background: #1280b0;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(23, 156, 216, 0.35);
    }
}

/* ============================================
   MOBILE HERO STYLES FOR ALL PAGE TYPES
   Only applies at max-width: 767.98px
   ============================================ */
@media (max-width: 767.98px) {

    /* All hero section types full-screen on mobile */
    .realestate-hero-section,
    .marketing-hero-section,
    .logistics-hero-section,
    .consultancy-hero-section,
    .education-hero-section,
    .pr-hero-section,
    .event-hero-section,
    .about-hero-section,
    .about-awards-hero-section,
    .awards-hero-section,
    .leadership-hero-section,
    .timeline-hero-section,
    .vision-hero-section,
    .contact-hero-section,
    .gcc-hero-section {
        min-height: 100svh !important;
        height: 100svh !important;
        margin-top: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: flex-end !important;
        overflow: hidden !important;
        background: #0b2944;
    }

    /* Background image full-cover on mobile */
    .realestate-hero-bg,
    .marketing-hero-bg,
    .logistics-hero-bg,
    .consultancy-hero-bg,
    .education-hero-bg,
    .pr-hero-bg,
    .event-hero-bg,
    .about-hero-background,
    .about-awards-hero-background,
    .awards-hero-background,
    .leadership-hero-background,
    .timeline-hero-background,
    .vision-hero-background,
    .contact-hero-bg,
    .gcc-hero-bg {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
    }

    .realestate-hero-bg img,
    .marketing-hero-bg img,
    .logistics-hero-bg img,
    .consultancy-hero-bg img,
    .education-hero-bg img,
    .pr-hero-bg img,
    .event-hero-bg img,
    .about-hero-background img,
    .awards-hero-background img,
    .leadership-hero-background img,
    .timeline-hero-background img,
    .vision-hero-background img,
    .contact-hero-bg img,
    .gcc-hero-bg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
    }

    /* Overlay � bottom-dark gradient */
    .realestate-hero-overlay,
    .marketing-hero-overlay,
    .logistics-hero-overlay,
    .consultancy-hero-overlay,
    .education-hero-overlay,
    .pr-hero-overlay,
    .event-hero-overlay,
    .about-hero-overlay,
    .awards-hero-overlay,
    .leadership-hero-overlay,
    .timeline-hero-overlay,
    .vision-hero-overlay,
    .contact-hero-overlay,
    .gcc-hero-overlay {
        position: absolute !important;
        inset: 0 !important;
        z-index: 1 !important;
        background: linear-gradient(
            to bottom,
            rgba(6, 33, 56, 0.35) 0%,
            rgba(6, 33, 56, 0.18) 35%,
            rgba(6, 33, 56, 0.82) 100%
        ) !important;
        transform: none !important;
        pointer-events: none;
    }

    /* Content area � overlay text, no glass card */
    .realestate-hero-content,
    .marketing-hero-content,
    .logistics-hero-content,
    .consultancy-hero-content,
    .education-hero-content,
    .pr-hero-content,
    .event-hero-content,
    .about-hero-content,
    .awards-hero-content,
    .leadership-hero-content,
    .timeline-hero-content,
    .vision-hero-content,
    .contact-hero-content,
    .gcc-hero-content {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 28px calc(80px + env(safe-area-inset-bottom)) !important;
        padding-top: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        transform: none !important;
    }

    /* Remove glass card inner wrappers */
    .about-hero-text,
    .awards-hero-text,
    .leadership-hero-text,
    .timeline-hero-text,
    .vision-hero-text {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        max-width: none !important;
        padding: 0 !important;
    }

    /* Hero text on mobile */
    .realestate-hero-content h1,
    .realestate-hero-content h2,
    .marketing-hero-content h1,
    .marketing-hero-content h2,
    .logistics-hero-content h1,
    .logistics-hero-content h2,
    .consultancy-hero-content h1,
    .consultancy-hero-content h2,
    .education-hero-content h1,
    .education-hero-content h2,
    .pr-hero-content h1,
    .pr-hero-content h2,
    .event-hero-content h1,
    .event-hero-content h2,
    .about-hero-title,
    .awards-hero-title,
    .leadership-hero-title,
    .timeline-hero-title,
    .vision-hero-title,
    .contact-hero-title,
    .gcc-hero-title {
        color: #ffffff !important;
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
        font-weight: 800 !important;
        letter-spacing: -0.03em !important;
        margin: 0 0 14px !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
    }

    .realestate-hero-content p,
    .marketing-hero-content p,
    .logistics-hero-content p,
    .consultancy-hero-content p,
    .education-hero-content p,
    .pr-hero-content p,
    .event-hero-content p,
    .about-hero-description,
    .about-hero-brand-intro,
    .awards-hero-description,
    .leadership-hero-description,
    .timeline-hero-description,
    .vision-hero-description,
    .contact-hero-description,
    .gcc-hero-description {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.97rem !important;
        line-height: 1.6 !important;
        margin: 0 0 20px !important;
        max-width: 320px !important;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25) !important;
    }

    /* Eyebrow/subtitle labels */
    .about-hero-subtitle,
    .awards-hero-subtitle,
    .leadership-hero-subtitle,
    .timeline-hero-subtitle,
    .vision-hero-subtitle {
        font-size: 0.78rem !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        color: rgba(255, 255, 255, 0.8) !important;
        margin-bottom: 10px !important;
        display: block !important;
    }

    /* CTA buttons inside hero on mobile */
    .realestate-hero-content .btn-primary,
    .marketing-hero-content .btn-primary,
    .logistics-hero-content .btn-primary,
    .consultancy-hero-content .btn-primary,
    .education-hero-content .btn-primary,
    .pr-hero-content .btn-primary,
    .event-hero-content .btn-primary,
    .about-hero-cta .btn-primary,
    .awards-hero-cta .btn-primary,
    .leadership-hero-cta .btn-primary,
    .vision-hero-cta .btn-primary {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 160px;
        min-height: 48px;
        padding: 0 22px !important;
        border-radius: 999px !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        background: #1da7df !important;
        color: #fff !important;
        border: 0 !important;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
        text-decoration: none;
        transform: none !important;
        margin-top: 0 !important;
    }

    .about-hero-cta .btn-secondary,
    .awards-hero-cta .btn-secondary,
    .leadership-hero-cta .btn-secondary,
    .vision-hero-cta .btn-secondary {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 130px;
        min-height: 44px;
        padding: 0 18px !important;
        border-radius: 999px !important;
        font-size: 0.88rem !important;
        font-weight: 600 !important;
        background: transparent !important;
        color: #fff !important;
        border: 2px solid rgba(255, 255, 255, 0.7) !important;
        text-decoration: none;
        margin-top: 0 !important;
    }

    /* CTA flex wrapping */
    .about-hero-cta,
    .awards-hero-cta,
    .leadership-hero-cta,
    .vision-hero-cta {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin-top: 44px !important;
        justify-content: flex-start !important;
    }

    /* Remove container-fluid horizontal padding inside hero */
    .realestate-hero-section > .container-fluid,
    .marketing-hero-section > .container-fluid,
    .logistics-hero-section > .container-fluid,
    .consultancy-hero-section > .container-fluid,
    .education-hero-section > .container-fluid,
    .pr-hero-section > .container-fluid,
    .event-hero-section > .container-fluid {
        padding: 0 28px calc(80px + env(safe-area-inset-bottom)) !important;
        position: relative;
        z-index: 2;
    }

    /* About page: force text block below fixed navbar */
    .about-hero-content {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 110px 28px calc(80px + env(safe-area-inset-bottom)) !important;
    }

    .about-hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(1, 75, 111, 0.82) 0%,
            rgba(23, 156, 216, 0.70) 100%
        ) !important;
    }
}

/* Mobile only: align hero CTA gap consistently */
@media (max-width: 767.98px) {
    .realestate-hero-section > .container-fluid,
    .marketing-hero-section > .container-fluid,
    .logistics-hero-section > .container-fluid,
    .consultancy-hero-section > .container-fluid,
    .education-hero-section > .container-fluid,
    .pr-hero-section > .container-fluid,
    .event-hero-section > .container-fluid,
    .contact-hero-section > .container-fluid,
    .gcc-hero-section > .container-fluid {
        padding: 0 28px calc(30px + env(safe-area-inset-bottom)) !important;
        z-index: 2 !important;
        display: flex !important;
        align-items: flex-end !important;
    }

    .about-hero-content,
    .awards-hero-wrapper,
    .timeline-hero-wrapper,
    .vision-hero-wrapper {
        padding: 0 28px calc(30px + env(safe-area-inset-bottom)) !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: flex-start !important;
    }

    .realestate-hero-content,
    .marketing-hero-content,
    .logistics-hero-content,
    .consultancy-hero-content,
    .education-hero-content,
    .pr-hero-content,
    .event-hero-content,
    .contact-hero-content,
    .gcc-hero-content,
    .about-hero-text,
    .awards-hero-content,
    .leadership-hero-content,
    .timeline-hero-content,
    .vision-hero-content {
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .realestate-hero-content .hero-buttons,
    .marketing-hero-content .hero-buttons,
    .logistics-hero-content .hero-buttons,
    .consultancy-hero-content .hero-buttons,
    .education-hero-content .hero-buttons,
    .pr-hero-content .hero-buttons,
    .event-hero-content .hero-buttons,
    .about-hero-cta,
    .contact-hero-cta,
    .hero-cta {
        margin-top: 44px !important;
    }
}

/* ============================================
   DESKTOP HERO RESTORE (min-width: 768px)
   Restore original look for about-style pages
   that use glass card inner wrappers
   ============================================ */
@media (min-width: 768px) {
    .about-hero-text,
    .awards-hero-text,
    .leadership-hero-text,
    .timeline-hero-text,
    .vision-hero-text {
        background: rgba(100, 150, 200, 0.2);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        max-width: min(85%, 600px);
        padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
    }

    .about-hero-cta,
    .contact-hero-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 34px;
        justify-content: flex-start;
    }

    .about-hero-cta .btn-primary,
    .about-hero-cta .btn-secondary,
    .contact-hero-cta .btn-primary,
    .contact-hero-cta .btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 210px;
        padding: 12px 22px;
        border-radius: 999px;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    }

    .about-hero-cta .btn-primary,
    .contact-hero-cta .btn-primary {
        background: #179cd8;
        color: #fff;
        box-shadow: 0 8px 20px rgba(23, 156, 216, 0.3);
    }

    .about-hero-cta .btn-primary:hover,
    .contact-hero-cta .btn-primary:hover {
        transform: translateY(-2px);
        background: #0e7cae;
    }

    .about-hero-cta .btn-secondary,
    .contact-hero-cta .btn-secondary {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.45);
    }

    .about-hero-cta .btn-secondary:hover,
    .contact-hero-cta .btn-secondary:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.28);
    }
}
