
   
        :root {
            --wp--preset--color--first-color: #fcb814;
            --wp--preset--color--white: #ffffff;
        }

        *, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
        body, html { 
           height:100%; 
            overflow-x: hidden;
            background-color: #fff;
            color: #000;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        a { text-decoration:none; color:inherit; }

        /* ==== HERO SECTION ==== */
        .container {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            color: #fff;
            text-align: center;
        }

        #bgVideo {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
           
        }
        @media (max-width: 768px) {
  
}
        .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,.35);
            z-index: -1;
        }
header.scrolled .hamburger span {
  background: #000 !important;
}
header.scrolled .hamburger.active span {
  background: #fcb814 !important;
}
 nav a.active {
            color: #fcb814;
        }
        header.scrolled nav a.active {
  color: #fcb814 !important;
}
       header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5rem;
  z-index: 10000;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease;
}

/* When scrolled */
header.scrolled {
  background: #fff;
  backdrop-filter: blur(8px);
 
}
header.scrolled nav a {
  color: #000 !important;   /* nav links black on scroll */
}
header.scrolled nav a:hover {
  color: #fcb814 !important; /* hover pe yellow */
}
header.scrolled .dropdown-menu a:hover {
  color: #fff !important;              /* hover state white text */
  background: #fcb814 !important;      /* keep same yellow background */
}

header.scrolled .logo img {
  height: 100px;
    width: auto;
    transition: height 0.3s 
ease;
}

 .logo img {
    height: 100px;
    width: auto;
    transition: height 0.3s 
ease;
}
@media (max-width: 768px) {
    .logo {
        position: relative;
        z-index: 10000;
    }
}
@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
}
@media (max-width: 768px) {
    .logo img {
        height: 55px;
        width: auto;
    }
}
@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

/* --- For tablets --- */
@media (max-width: 768px) {
  .logo {
    position: relative;
    z-index: 10000;
  }

  /* normal + scrolled dono par apply */
  .logo img,
  header.scrolled .logo img {
    height: 55px;
    width: auto;
  }
}

/* --- For small phones --- */
@media (max-width: 480px) {
  .logo img,
  header.scrolled .logo img {
    height: 50px;
    width: auto;
  }
}

/* --- Optional mid-size adjustment --- */
@media (max-width: 1024px) {
  .logo img,
  header.scrolled .logo img {
    height: 60px;
  }
}

/* --------------------------------------------------------------
   HERO ANIMATIONS – Logo left, Nav right, Hero bottom
   -------------------------------------------------------------- */
.hero-anim {
    opacity: 0;
    transform: translateY(60px);          /* start lower */
    transition: all 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo – from left */
.logo-anim {
    opacity: 0;
    transform: translateX(-120px);
    transition: all 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.logo-anim.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Nav + Social – from right */
.nav-anim {
    opacity: 0;
    transform: translateX(120px);
    transition: all 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-anim.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.logo-anim { transition-delay: 0.3s; }
.nav-anim  { transition-delay: 0.6s; }
.hero-anim { transition-delay: 0.9s; }
        .nav-social-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            padding: 19px;
        }

        nav ul {
            display: flex;
            gap: 1.8rem;
            list-style: none;
            margin-right: 30px;
            margin-bottom: 10px;
        }
        nav a {
            position: relative;
            font-weight: 700;
            font-size: 19px;
            transition: color .3s;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
            color: #fff;
        }
        nav a:hover { color: #fcb814; }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -6px; left: 0;
            width: 0; height: 2px;
            background: #fcb814;
            transition: width .3s;
        }
        nav a:hover::after { width: 100%; }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }
        .social-icons a {
            color: var(--wp--preset--color--first-color);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            transition: all .3s ease;
        }
        .social-icons a:hover {
       
       
        transform: translateY(-3px);
        }

        /* ==== DROPDOWN - HOVER BRIDGE ==== */
        .dropdown {
            position: relative;
        }
        .dropdown::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 40px;
            z-index: 999;
        }
        .dropdown-icon {
            font-size: .8em;
            transition: transform .3s ease;
        }
        .dropdown:hover .dropdown-icon,
        .dropdown.active .dropdown-icon {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            min-width: 220px;
            box-shadow: 0 12px 24px rgba(0,0,0,.15);
            text-align: start;
            opacity: 0;
            visibility: hidden;
            transition: all .3s ease;
            z-index: 1000;
            padding: .6rem 0;
        }
        .dropdown:hover .dropdown-menu,
        .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown-menu a {
            display: block;
            padding: .7rem 1.2rem;
            color: #333;
            font-weight: 700;
            font-size: .95rem;
            transition: all .2s;
        }
        .dropdown-menu a:hover {
            background: #fcb814;
            color: #fff;
            padding-left: 1.5rem;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            z-index: 1000;
        }
        .hamburger span {
            width: 30px; height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: .3s;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px,8px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px,-8px); }

        .hero {
            max-width: 900px;
            z-index: 100;
            margin-top: 140px;
        }
        .hero h1 {
            font-size: 55px;
            line-height: 1.2;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .learn-more-btn {
            position: absolute;
            bottom: 10vh;
            left: 5vw;
            z-index: 1000;
            background: var(--wp--preset--color--first-color);
            color: var(--wp--preset--color--white);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all .3s ease;
            animation: moveUpDown 2s infinite, fadeInOut 2s infinite;
            box-shadow: 0 8px 20px rgba(249,168,38,.3);
        }
        .learn-more-btn i { font-size: 1.1rem; }
        .learn-more-btn:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 12px 25px rgba(249,168,38,.5);
        }

        @keyframes moveUpDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
        @keyframes fadeInOut { 0%,100%{opacity:1} 50%{opacity:.4} }

        /* ==== ZOOM IN ANIMATION (default) ==== */
        @keyframes zoomIn {
            from { opacity: 0; transform: scale(0.6); }
            to { opacity: 1; transform: scale(1); }
        }

        /* ==== ZOOM IN + UP for text-card ==== */
        @keyframes zoomInUp {
            from { opacity: 0; transform: translateY(22px) scale(0.6); }
            to   { opacity: 1; transform: translateY(-58px) scale(1); } /* final: slightly higher */
        }

        @media (max-width: 1024px) {
  header {
    padding: 1.2rem 2rem;
  }

  nav ul {
    gap: 1.2rem;
  }

  nav a {
    font-size: 18px;
  }

 
}
@media (max-width: 768px) {
  /* Hide Learn More button when mobile menu is open */
  .nav-social-wrapper.show ~ .learn-more-btn {
    display: none !important;
  }
  
  /* Ensure Learn More button has proper z-index */
  .learn-more-btn {
    z-index: 10 !important; /* Lower than mobile menu */
  }
  
  /* Mobile menu container - ensure higher z-index */
  .nav-social-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
   background: rgba(255, 255, 255, 0.98);
    z-index: 9999; /* Higher than Learn More button */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    overflow-y: auto;
    display: none; /* Hidden by default */
  }

  /* Rest of your existing mobile styles... */
  header {
    padding: 1rem 1.5rem;
    align-items: center;
    z-index: 1000;
  }


  /* Show when toggled */
  .nav-social-wrapper.show {
    display: flex;
  }

  /* Navigation styles */
  nav {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    width: 100%;
   border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul a {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    padding: 1.2rem 2rem;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
  }

  nav ul a:hover {
    color: #fcb814;
    background: rgba(252, 184, 20, 0.1);
  }

  /* DROPDOWN STYLES - FIXED FOR CENTER ALIGNMENT */
  .dropdown {
    position: relative;
    width: 100%;
  }

  .dropdown > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    width: 100%;
  }

  /* Dropdown menu - CENTERED */
  .dropdown-menu {
    display: none;
    position: static;
   background: rgba(0, 0, 0, 0.05) !important;
    box-shadow: none;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    border-radius: 0;
  }

  /* Show dropdown when active */
  .dropdown.active .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  /* Dropdown menu items - PERFECTLY CENTERED */
  .dropdown-menu a {
    font-size: 1.1rem;
    padding: 1rem 2rem;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        font-weight: 500;
        color: #000 !important;
        background: transparent !important;
    text-align: center;
    font-weight: 500;
    color: #fff;
    background: transparent;
    text-decoration: none;
    display: block;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }

  .dropdown-menu a:hover {
    background: #fcb814;
    color: #000;
    transform: none;
  }

  /* Remove any transforms that might affect centering */
  .dropdown-menu {
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

  /* Dropdown icon animation */
  .dropdown-icon {
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }

  /* Social icons in mobile menu */
  .nav-social-wrapper .social-icons {
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    width: 100%;
    display: flex;
  }

  .nav-social-wrapper .social-icons a {
    font-size: 1.5rem;
           color: #000;
        background: rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
  }

  .nav-social-wrapper .social-icons a:hover {
    background: #fcb814;
    color: #000;
    transform: translateY(-3px);
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
    z-index: 10000;
  }

  /* Close button style */
  .hamburger.active {
    position: fixed;
    top: 2rem;
    right: 1.5rem;
  }

  .hamburger.active span {
    background: #fff;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #fcb814;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
.logo {
  position: relative;
  z-index: 10000; /* higher than .nav-social-wrapper (9999) */
}




  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #fcb814;
  }

  /* Animation for dropdown */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
  @media (max-width: 480px) {
    nav ul a {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }
}    





/* ==== INFO SECTION - OVER VIDEO + ALWAYS VISIBLE ==== */
        .info-section {
            position: relative;
            margin-top: -25vh; /* Overlap video */
            padding: 8rem 2rem 5rem;
            background: transparent;
            z-index: 5;
        }

        .info-grid {
            max-width: 1050px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        /* === FORCE SAME SIZE FOR BADGE & STATS CARD === */
        .badge-card, .stats-card {
            width: 100px !important;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .stats-card:hover {
           background: #676767;
           color: #fff;
        }
        .badge-card:hover {
           background: #676767;
           color: #fff;
        }
        /* DEFAULT (hidden) state: not visible at all until .visible is added */
        .badge-card, .stats-card, .text-card {
            opacity: 0;
            transform: scale(0.6);
            visibility: hidden; /* prevent initial flash */
            will-change: transform, opacity, visibility;
        }

        /* Visible: run zoomIn animation slowly and keep final state */
        .badge-card.visible, .stats-card.visible {
            visibility: visible;
            animation: zoomIn 1.25s cubic-bezier(.22,.9,.15,1) forwards;
        }
        /* Stagger for badges/stats */
        .badge-card.visible { animation-delay: 0.15s; }
        .stats-card.visible { animation-delay: 0.35s; }

        /* text-card uses zoomInUp so it ends slightly higher */
        .text-card.visible {
            visibility: visible;
            animation: zoomInUp 1.25s cubic-bezier(.22,.9,.15,1) forwards;
            animation-delay: 0.55s;
        }

        /* When hiding, we want smooth transition back to small/invisible */
        .badge-card.hidden, .stats-card.hidden, .text-card.hidden {
            visibility: hidden;
            opacity: 0;
            transform: scale(0.6);
            transition: transform .55s cubic-bezier(.22,.9,.15,1), opacity .45s ease;
            animation: none !important;
        }

       .badge-card {
  flex: 1 1 280px;
  min-width: 250px;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

/* Circle wrapper */
.badge-card .circle {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
 
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* ✅ keeps image inside circle */
  position: relative;
}

/* Outer ring */
.badge-card .circle::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 5px solid #fcb814;
  border-radius: 50%;
  pointer-events: none;
}

/* Image styling */
.badge-card .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ✅ fills the circle without distortion */
  display: block;
}

        .badge-card .circle small { font-size: 1rem; }
        .badge-card p { margin-top: 1rem; font-size: 1.2rem; }

        .stats-card {
            flex: 1 1 280px;
            min-width: 250px;
            background: #fcb814;
            color: #111;
        }
        .stats-card h3 { font-size: 4.5rem; margin-bottom: .3rem; }
        .stats-card p { font-size: 1.2rem; }

       .text-card {
    flex: 2 1 400px;
    min-width: 300px;
    height: 600px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    padding: 2.5rem;
    text-align: left;
    font-family: 'Kanit', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 35px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* Headings & Paragraphs */
.text-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}
.text-card p {
    margin-bottom: .8rem;
    font-size: 1.2rem;
}
.text-card strong {
    color: #fcb814;
    font-weight: 300 !important;
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
    .text-card {
        height: auto;                /* Allow flexible height */
        padding: 2rem;
        font-size: 20px;
        line-height: 32px;
    }
    .text-card h2 {
        font-size: 1.5rem;
    }
    .text-card p {
        font-size: 1.1rem;
    }
}

/* Mobile devices (≤768px) */
@media (max-width: 768px) {
    .text-card {
        height: auto;
        padding: 1.5rem;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 1.5rem;
    }
    .text-card h2 {
        font-size: 1.3rem;
    }
    .text-card p {
        font-size: 1rem;
    }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
    .text-card {
        padding: 1.2rem;
        font-size: 16px;
        line-height: 26px;
        border-radius: 10px;
    }
    .text-card h2 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    .text-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}


        /* ==== Mobile ==== */
      
       

      
/* set fixed card width as a CSS variable so it's easy to change in one place */
:root { --fixed-card: 360px; }

/* ---------- Container ---------- */
.slider-section{
    position:relative;
    max-width:1440px;
    margin:0 auto;         /* 👈 Top margin removed */
    overflow:hidden;
}
.slider-wrapper{position:relative;height:480px;background:#111;}

/* ---------- Moving track (6 slides) ---------- */
.slider-track{
    position:absolute;top:0;left:0;
    display:flex;width:max-content;height:100%;
    transition:transform .6s cubic-bezier(.25,.8,.25,1);
}

/* ---------- Slide item ---------- */
.slider-item{
    position:relative;
    width:100vw;max-width:360px;height:100%;flex-shrink:0;
    background-size:cover;background-position:center;
    overflow:hidden;
}

/* ---------- Text on top ---------- */
.slide-content{
    position:relative;z-index:2;
    padding:2rem 2rem 0;
    color:#fff;
    background:linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.slide-title{font-size:1.8rem;font-weight:700;margin-bottom:.8rem;}
.slide-text{font-size:1rem;line-height:1.5;opacity:.95;}

/* ---------- Fixed press-release card ---------- */
.fixed-card{
    position:absolute;top:0;left:0;width:100%;max-width:var(--fixed-card);
    height:100%; background:#fff;color:#111;z-index:10;padding:1.5rem;
}
.fixed-card .press-img{width:100%;height:180px;object-fit:cover;margin-bottom:1rem;}
.fixed-card h3{font-size:1.25rem;margin-bottom:.5rem;}
.fixed-card .date{font-size:.8rem;color:#777;margin-bottom:.5rem;}

/* ---------- Arrows ---------- */
.slider-arrow{
    width:44px;height:44px;background:rgba(0,0,0,.5);color:#fff;
    border-radius:50%;display:flex;align-items:center;justify-content:center;
    cursor:pointer;z-index:30;transition:background .3s,opacity .25s;
    box-shadow:0 6px 18px rgba(0,0,0,.25);
}

/* disabled look */
.slider-arrow.disabled {
  opacity: 0.35;
  pointer-events: none;
  background: rgba(0,0,0,0.25);
}

/* hover */
.slider-arrow:not(.disabled):hover{background:#fcb814;}

/* RIGHT arrow fixed on wrapper (right edge) */
.slider-arrow.right{
    position:absolute;
    top:50%;
    right:1rem;
    transform:translateY(-50%);
}

/* LEFT arrow fixed over where first slide appears (right of fixed-card) */
/* left offset = fixed-card width + extra gap (1rem) */
.slider-arrow.left{
    position:absolute;
    top:50%;
    left: calc(var(--fixed-card) + 1rem);
    transform:translateY(-50%);
}
/* Arrow button inside each slide */
.slide-arrow-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;

    width: 44px;
    height: 44px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.2rem;
    cursor: pointer;
    border: none;

    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    transition: .3s ease;
}

.slide-arrow-btn:hover {
    background: #fcb814;
    color: #fff;
}

/* ---------- Responsive ---------- */
@media(max-width:960px){.slider-wrapper{height:560px;}.slider-item{max-width:300px;}}

@media(max-width: 640px) {
    .slider-section {
        margin: 4rem auto;
    }

    .slider-wrapper {
        height: auto;
        min-height: 480px;
        display: flex;
        flex-direction: column; /* 👈 Fixed card and slider track stack vertically */
        background: #fff;
    }

    /* Fixed card full width, show first */
    .fixed-card {
        position: relative;   /* 👈 remove absolute */
        max-width: 100%;      /* full width on mobile */
        width: 100%;
        height: auto;
        order: 1;             /* show first */
        z-index: 1;
    }

    /* Slider track full width, below fixed card */
    .slider-track {
        position: relative;   /* 👈 remove absolute */
        display: flex;
        width: 100%;
        overflow-x: scroll;   /* allow horizontal scroll/swipe */
        scroll-snap-type: x mandatory;
        height: auto;
        order: 2;
        transform: none !important; /* disable translate on mobile */
    }

    .slider-item {
        min-width: 80%;
        max-width: 80%;
        height: 300px;
        scroll-snap-align: center;
        border-radius: 1rem;
        margin: 1rem;
    }

    /* Hide arrows on mobile */
    .slider-arrow {
        display: none;
    }
}

/* ---- Panel container (orange top line) ---- */
.covenants-dynamics {
    position: relative;
    max-width: 1400px;
    margin: 6rem auto 4rem;
    box-shadow: 0 1px 18px #131a0a33;
    padding: 0 2rem;
}
.covenants-dynamics::before {
    content:"";
    
    position:absolute;
    top:0; left:0; right:0;
    height:6px;
    background:#fcb814;
}

/* ---- Two columns ---- */
.cd-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 30px;
}
.cd-col {
    flex: 1 1 45%;
  
}

/* ---- Column titles ---- */
.cd-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ---- List items ---- */
.cd-list {
    list-style: none;
}
.cd-item {
    position: relative;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    user-select: none;
}
.cd-item:last-child { border-bottom:none; }

.cd-item .toggle {
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #555;
    transition: transform .3s;
}
.cd-item.active .toggle { transform: translateY(-50%) rotate(45deg); }

.cd-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    padding-right: 2.5rem;
}

/* ---- Content that opens ---- */
.cd-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    background:#fafafa;
    padding:0 1rem;
}
.cd-item.active .cd-content {
    max-height: 600px;
    padding:1rem;
}

/* ---- Image inside Overview ---- */
.cd-content img {
    width:100%;
    height:auto;
    display:block;
    margin-top:.5rem;
    border-radius:8px;
}

/* ---- Hover effect ---- */
.cd-item:hover .cd-label { color:#fcb814; }

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 /* ------------------ FOOTER – 100% MATCH ------------------ */
  .vision-footer {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 200px;               /* matches image height */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    background: linear-gradient(to right, #fcb814 50%, #000 50%);
    overflow: hidden;
  }

  .footer-left,
  .footer-right {
    flex: 1;
    padding: 2.5rem 5rem;            /* exact padding from image */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer-left  { background:#fcb814; align-items:flex-start; }
  .footer-right { background:#000;    align-items:center; }

  /* ---------- SOCIAL ICONS ---------- */
  .social-icons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;             /* exact spacing */
  }
  .social-icons i {
    font-size: 1.35rem;
    transition: transform .3s;
  }
  .social-icons a:hover i { transform: translateY(-3px); }

  /* ---------- TEXT LINKS & COPYRIGHT ---------- */
  .footer-links {
    margin: 0 0 .8rem 0;
    font-size: 1rem;
    font-weight: 500;
  }
  .footer-links a {
    color:#fff;
    text-decoration:none;
  }
  .footer-links a:hover { opacity:.8; }

  .footer-copy {
    margin:0;
    font-size:.9rem;
    opacity:.9;
  }

  /* ---------- VISION 2030 LOGO ---------- */
/* ---------- VISION 2030 LOGO ---------- */
.vision-logo {
  text-align: center;
}

.vision-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

/* Make the logo image fully responsive */
.vision-head img {
  max-width: 60%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Optional: add gentle responsiveness for smaller screens */
@media (max-width: 768px) {
  .vision-head img {
    max-width: 150px; /* adjust as you like */
  }
}

  .vision-2030::before {
    content:"";
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    width:90px; height:90px;
    background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23ffffff" opacity="0.15" d="M50 15 L61 35 L83 35 L66 48 L71 68 L50 58 L29 68 L34 48 L17 35 L39 35 Z"/></svg>') center/contain no-repeat;
    z-index:-1;
  }

  .vision-en   { font-size:1.05rem; font-weight:600; letter-spacing:.08em; margin:0 0 .3rem 0; }
  .vision-sub-ar { font-family:'Geeza Pro','Arial Unicode MS',sans-serif; font-size:1rem; margin:0 0 .2rem 0; }
  .vision-sub-en { font-size:.85rem; opacity:.9; margin:0; }


  /* ---------- RESPONSIVE ---------- */
  @media (max-width:768px){
    .vision-footer{flex-direction:column;min-height:auto;background:#fcb814;}
    .footer-left,.footer-right{padding:2rem 1.5rem;text-align:center;align-items:center;}
    .footer-right{background:#000;order:-1;padding-bottom:3rem;}
    .vision-head{font-size:2.5rem;}
    .vision-ar{font-size:1.8rem;}
    .vision-2030{font-size:2.8rem;}
    .scroll-top{right:1rem;bottom:1rem;}
  }
  @media (max-width:480px){
    .vision-ar{font-size:1.6rem;}
    .vision-2030{font-size:2.4rem;}
    .vision-en{font-size:.95rem;}
  }


/* ==================== OUR CLIENTS SECTION ==================== */
.clients-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
    overflow: hidden;
}
.clients-container { max-width: 1400px; margin: 0 auto; text-align: center; }

.clients-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #111;
    position: relative;
    display: inline-block;
}
.clients-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fcb814;
    border-radius: 2px;
}

/* ---- wrapper for arrows + slider ---- */
.clients-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* ---- arrows ---- */
.client-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(0,0,0,.45);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background .3s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-arrow:hover { background: #fcb814; }
.client-arrow:active { transform: translateY(-50%) scale(.93); }

.client-arrow--left  { left: 1rem; }
.client-arrow--right { right: 1rem; }

/* ---- slider ---- */
.clients-slider {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.clients-track {
    display: flex;
    gap: 3rem;
    will-change: transform;
    transition: transform .6s cubic-bezier(.25,.8,.25,1);
}

/* ---- each logo ---- */
.client-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 150px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.client-logo img {
    width: 85%;
    height: auto;
    filter: grayscale(100%);
    transition: filter .3s ease;
}
.client-logo:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}
.client-logo:hover img { filter: grayscale(0%); }

/* ---- pause auto-scroll on hover (optional) ---- */
.clients-wrapper:hover .clients-track { animation-play-state: paused; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .clients-title { 
        font-size: 1.8rem; 
        margin-bottom: 2rem; 
    }
    
    .clients-wrapper {
        position: relative;
        padding: 0 40px; /* Space for arrows */
    }
    
    .clients-slider {
        width: 100%;
        overflow: hidden;
    }
    
    .clients-track {
        gap: 0; /* Remove gap for single item view */
        width: 100%;
    }
    
    .client-logo { 
        width: 100%;
        max-width: 280px;
        height: 140px;
        margin: 0 auto;
        flex: 0 0 100%; /* Each logo takes full width */
    }
    
    .client-arrow { 
        width: 36px; 
        height: 36px; 
        font-size: 1rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .client-arrow--left {
        left: 0;
    }
    
    .client-arrow--right {
        right: 0;
    }
}

@media (max-width: 480px) {
    .clients-wrapper {
        padding: 0 30px;
    }
    
    .client-logo { 
        max-width: 240px;
        height: 120px;
    }
    
    .client-arrow { 
        width: 32px; 
        height: 32px; 
        font-size: 0.9rem;
    }
    
    /* Keep arrows visible on mobile for better UX */
    /* .client-arrow { display: none; } */
}

/* Contact Banner Styles */
.contact-banner {
  position: relative;
  background: url('/img/bg-1.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #fff;
}

.contact-overlay {
  background-color: #fcb814; /* golden yellow overlay */
  width: 100%;
  opacity: 0.7;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content {
  text-align: center;
  color: #000;
}

.contact-heading {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.contact-phone {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  margin-bottom: 10px;
}

.contact-address {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 30px;
}

.contact-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  letter-spacing: 3px;
  border: 2px solid #000;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: transparent;
  color: #000;
}
