  html {
  scroll-behavior: smooth;
}
:root {
  --color-white: #ffffff;
  --color-black: #181716;
  --color-primary: #d39c25;
  --color-primary-dark: #faedb1;
  --color-primary-light: #eecf46;
  --color-muted: #d8d8d8;
  --color-bg-light: #ececec;
  --color-gray-900: #333333;
  --color-accent-light: #ffe5e5;
  --color-dot: #1a243f;
  --color-dark-maroon: #310000;

  /* Transparent variants defined once here 
     so you can use var() without rgba() wrappers! */
  --color-dark-maroon-faded: #31000040; /* 40 at the end is ~25% opacity */
  --color-black-faded: #0000008c;       /* ~55% opacity for your panels */
  --color-white-subtle: #ffffff0f;      /* ~6% opacity */
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation link sizing and stroke */
nav a {
  color: var(--color-black);
  text-decoration: none;
  display: inline-block;
  padding: 18px 28px;
  font-size: 20px;
  font-weight: normal;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  transition: color 180ms ease;
  margin: 0 2px;
}

/* modern underline grow animation (red) */
nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 0%;
  height: 3px;
  background-color: var(--color-primary); /* Mitsubishi-like red */
  transform: translateX(-50%);
  transition: width 260ms cubic-bezier(.2,.9,.2,1);
  z-index: 0;
}

nav a:hover::before { width: 84%; }

nav a:hover { color: var(--color-primary); cursor: pointer; }



body {
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--color-black);
}

/* Navbar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 96px; /* increased navbar height */
/* 🎨 The Gradient Magic: Light gray at bottom, White at top */
  background: linear-gradient(to top, #c5c5c5 10%, var(--color-white) 100%);

  transition: background-color 160ms ease, box-shadow 160ms ease, transform 200ms ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 2;
        margin-left: 15px;
    }

    nav ul {
      position: fixed;
      top: -100vh;
      left: 0;
      width: 100%;
      height: auto;
      background: var(--color-black); /* solid black mobile menu */
      flex-direction: column;
      padding: 70px 20px 15px;
      transition: top 0.28s ease;
      box-shadow: 0 4px 12px rgba(var(--black-rgb),0.2);
    }


    nav ul.active {
        top: 0;
    }

    nav {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        height: 80px;
        z-index: 1001;
    }

    nav img {
      height: 60px;
      transform: none; /* no visual scaling */
      order: 1;
      margin: 0;
      margin-top: 10px;
    }

    nav.nav-scrolled img {
        transform: scale(1);
    }

    nav ul li {
        margin: 5px 0;
        text-align: right;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 8px;
        font-size: 18px;
    }
}

/* Navbar state when the page is scrolled */
nav.nav-scrolled {
  /* keep a subtle shadow when scrolled but keep solid background */
  background-color: var(--color-white);
  box-shadow: 0 6px 18px var(--color-black);
  animation: rollDown 220ms ease both;
}

/* When scrolled, shrink the logo smoothly to reduce nav height */
/* When scrolled, logo returns to its small visual size (nav stays fixed) */
nav.nav-scrolled img {
    transform: translateY(0) scale(1);
}

@keyframes rollDown {
    from {
        transform: translateY(-12px);
        opacity: 0.95;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0; /* reset margins; layout is controlled by flex and row-reverse */
}

nav ul li {
    cursor: pointer;
    font-weight: bold;
}

nav img {
  display: block;
  transform: none; /* remove scaling behavior */
  transition: filter 220ms ease;
}

/* Desktop header logo sizing to fit taller navbar */
@media (min-width: 769px) {
  nav img { height: 84px; }
}

/* Optional: intensify on hover */
nav img:hover { filter: drop-shadow(0 6px 18px rgba(var(--primary-rgb), 0.15)); }

/* Corner logos (fit inside nav) */
.corner-logo {
  position: fixed; /* keep fixed so they stay with nav */
  top: 48px; /* vertically centered inside desktop nav (nav height: 96px) */
  transform: translateY(-50%);
  height: 70px; /* enforce equal heights */
  width: auto;
  z-index: 1100;
  pointer-events: none;
}
.corner-logo.left { left: 20px; }
.corner-logo.right { right: 20px; }


/* Desktop: center nav buttons horizontally */
@media (min-width: 769px) {
  nav ul {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* Mobile adjustments: smaller corner logos and put them near the hamburger */
@media (max-width: 768px) {


  /* place logos at the far left/right edges on mobile and center vertically inside mobile nav */
  .corner-logo {
    position: fixed;
    top: 40px; /* center inside mobile nav (nav height: 80px) */
    transform: translateY(-50%);
    height: 40px;
    width: auto;
    z-index: 1100;
    height: 60px
  }
 
  .corner-logo.left { left: 12px;  }
  .corner-logo.right { right: 12px; }

  /* center the burger horizontally and vertically inside the nav */
  .hamburger {
    display: flex;
    position: fixed;
    left: 10%;

    transform: translateX(-50%);
    margin-left: 0;
    z-index: 1200;
    order: 0;
  }

  /* make the hamburger bars black on white nav */
  .hamburger span { background-color: var(--color-black); }

  /* mobile menu background should be white with black links */
  nav ul { background: linear-gradient(to top, #c5c5c5 0%, var(--color-white) 70%, var(--color-white) 100%); }
  nav ul li a { color: var(--color-black) !important; }

  /* hide the nav img to avoid overlap on small screens (corner logos take its place)
     if you prefer to keep it visible set display back to block */
  nav img { display: none; }
}



/* Sections */
section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

@media (max-width: 768px) {
    section {
        padding: 60px 15px;
    }
}

@keyframes focusIn {
  0% {
    filter: blur(20px);
    transform: scale(1.1);
  }
  100% {
    filter: blur(0px);
    transform: scale(1);
  }
}

#section2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: flex-end;   /* panel at the bottom */
  padding: 40px 20px;
  overflow: hidden;
    
}

/* 🖼️ This layer handles ONLY the background image and the blur */
#section2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/background.jpeg') center center / cover no-repeat;
  z-index: -1; /* Keep it behind everything */
  
  /* 🪄 Apply the animation ONLY to this layer */
  animation: focusIn 0.8s ease-out forwards;
}

/* 🌑 Your existing dark gradient overlay (keep this as ::before) */
#section2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark-maroon-faded) 60%);
  z-index: 0; /* Sits on top of the image but behind the text */
  pointer-events: none;
}
.intro-panel {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 34px;
background: var(--color-black-faded); 
  border: 1px solid var(--color-white-subtle);
  box-shadow: 0 14px 40px var(--color-black-faded);
  border-radius: 14px;
  text-align: center;
  color: var(--color-white); /* keep text white */
  overflow: hidden;
  animation: fadeUp 3s cubic-bezier(.2,.9,.2,1) both;
  backdrop-filter: blur(8px); /* optional glass effect */
}


.intro-panel::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* attach to bottom */
  width: 100%;  /* full width */
  height: 8px;  /* stripe height */
  background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark)); /* gradient left → right */
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}


.intro-panel h1 {
  font-size: 32px;
  margin: 0 0 12px 0;
  color: var(--color-primary); /* red title */
  line-height: 1.2;
}

.intro-panel p {
  font-size: 17px;
  margin: 0;
  line-height: 1.9;
  color: var(--color-white);
}



.intro-panel .cta-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn.primary { background: var(--color-primary); color: var(--color-white); box-shadow: 0 8px 18px rgba(var(--primary-rgb), 0.18); }
.btn.primary:hover { transform: translateY(-3px); }
.btn.secondary { 
    background: transparent;          /* 👻 Makes it see-through */
    color: var(--color-white);        /* ⚪ Makes the text white */
    border: 2px solid var(--color-white); /* 🎨 Adds the white stroke/border */
    box-shadow: none;                 /* 🚫 Optional: removes the shadow for a cleaner look */
    transition: all 0.3s ease;        /* ✨ Smooth transition for the hover effect */
}

/* Let's add a cool hover effect so users know it's clickable! */
.btn.secondary:hover { 
    background: var(--color-white);   /* ⚪ Fills with white on hover */
    color: var(--color-black);        /* ⚫ Text turns black so it's readable */
    transform: translateY(-3px);      /* 🚀 Keeps your nice "pop" animation */
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px) scale(0.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .intro-panel { padding: 20px; }
  .intro-panel h1 { font-size: 22px; }
  .intro-panel p { font-size: 15px; }
}



/* Third section - خدماتنا */
/* Section padding reduced */
#section3 {
    background-color: var(--color-white);
    padding: 40px 0px; /* less space on top and bottom */
    text-align: center;
}


h2 {
  color: var(--color-black);
  font-size: 36px;
  margin-bottom: 30px;
}

/* Grid layout - staggered */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center items inside */
    gap: 20px;
    width: 70%; /* your reduced width */
    margin: 0 auto; /* center the container horizontally */
    align-items: stretch;
}


/* Each service card */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 320px; /* fixed card width to mimic the previous 3-column grid */
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

/* Info overlay */
.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(var(--black-rgb),0.4);
    color: var(--color-white);
    padding: 15px;
    text-align: center;
}

.service-info h3 {
    margin: 0 0 5px;
    font-size: 20px;
}

.service-info p {
    font-size: 14px;
    margin: 0;
}

/* Hover effect */
.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover .service-info {
    background: rgba(var(--black-rgb),0.6);
}

/* Responsive - keep fixed card size and enable horizontal scroll on small screens */
@media (max-width: 992px) {
  .service-card {
    flex: 0 0 320px;
    width: 320px; /* keep fixed width */
  }
}


@media (max-width: 768px) {
  /* Phone view: stack services vertically, one per row */
  .services-grid {
    overflow-x: visible; /* disable horizontal scrolling on phones */
    flex-wrap: wrap;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
  }

  .service-card {
    flex: 0 0 auto;
    width: min(320px, 92%); /* fixed visual size but never larger than viewport */
    max-width: 100%;
    margin: 0 auto;
    scroll-snap-align: none; /* disable snapping for vertical list */
  }
}


/* Fourth section - stats */
#section4 {
  position: relative;
  min-height: 60vh; /* match section6's baseline height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
  padding: 40px 20px; /* same vertical padding as section6 */
  background: url('images/background-section.jpg') center/cover no-repeat;

}

#section4 h2 {
color: rgb(255, 255, 255);
}

#section4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/background-section.jpg') center/cover no-repeat;
  filter: blur(6px); /* 👈 This actually blurs only the image */
  transform: scale(1.1); /* avoids visible edges from blur */
  z-index: 0;
}

/* color overlay on top of blurred image */
#section4::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--black-rgb), 0.55);
  opacity: 0.7;
  z-index: 1;
}

#section4 .overlay {
  display: none; /* Not needed now since we used ::before */
}

#section4 .content {
  position: relative;
  z-index: 2;
}

#section4 .stats {
  display: flex;
  gap: 10rem;
  justify-content: center;
  margin: 0; /* remove extra top margin so height aligns with padding */
  flex-wrap: wrap; /* ⬅ makes it responsive on small screens */
}

#section4 .stat {
  font-size: 1.5rem;
}

#section4 .counter {
  font-size: 3rem;
  font-weight: bold;
  display: block;
}


.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 24px;
}

.fa-solid {
  font-size: 32px; /* make all solid icons larger */
}

/* Fifth section - معرض الصور (Carousel) */
#section5 {
  background-color: var(--color-bg-light);
  padding: 60px 0;
  text-align: center;
}

/* Carousel styles */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1400px; /* increased so more slides are visible */
  margin: 0 auto;
  padding: 20px 10px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 12px; /* slightly tighter so more slides fit */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  padding-bottom: 8px;
}

.slide {
  flex: 0 0 280px; /* slightly narrower for more items visible */
  height: 460px; /* portrait height */
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 6px 18px rgba(var(--black-rgb),0.08);
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-prev, .carousel-next {
  pointer-events: auto;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 8px;
  box-shadow: 0 6px 14px rgba(var(--black-rgb),0.25);
}

.carousel-controls .left { position: absolute; right: 10px; }
.carousel-controls .right { position: absolute; left: 10px; }

.carousel-dots {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background: rgba(var(--dot-rgb),0.16);
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dot.active { background: var(--color-primary); }

@media (max-width: 768px) {
  .carousel { max-width: 100vw; width: 100vw; margin: 0; padding-left: 0; padding-right: 0; }
  .slide {
    flex: 0 0 min(260px, 78vw); /* allow slides to shrink with viewport */
    height: 420px;
    scroll-snap-align: start;
  }
  .carousel-track { gap: 10px; padding-left: 8px; padding-right: 8px; }
}


/* Sixth Section - ما نقدمه / خدماتنا */
/* Sixth Section - ما نقدمه / خدماتنا */
#section6 {
  background-color: var(--color-muted);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-black); /* default text black */
  text-align: center;
  position: relative;
  overflow: visible;
  padding: 60px 20px;
}

/* Sixth Section - اهدافنا / Cards */
#section6 h2 {
  font-size: 42px;
  margin-bottom: 60px;
  color: var(--color-black);
  font-weight: bold;
}

/* Grid layout for cards */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Individual card */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg-light);
  border-radius: 16px; /* rounded corners */
  padding: 40px 25px; /* increase padding for more internal space */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;

  box-shadow: none; /* shadow hidden by default */
  min-height: 400px; /* increase from 180px to desired height */
}


/* Service images in section6 */
.service-item img {
  width: 100%;       /* make image fill card width */
  max-height: 220px; /* higher than before */
  object-fit: cover; /* crop/fit nicely */
  border-radius: 12px; /* optional: rounded corners for image */
  margin-bottom: 18px; /* spacing from content */
}


.service-item:hover {
  transform: translateY(-8px);
  /* You can even use a hex code directly here if it's a one-off! */
  box-shadow: 0 12px 28px #00000040; 
}

/* Icon styling */
.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 18px;
  color: var(--color-white);
  transition: transform 0.28s ease, background 0.28s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.15) rotate(8deg);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

/* Title & description */
.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-black);
  font-weight: bold;
}

.service-content p {
  font-size: 16px;
  color: var(--color-gray-900);
  line-height: 1.7;
}

/* Animations */
.service-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}
.service-item:nth-child(1) { animation-delay: 0.08s; }
.service-item:nth-child(2) { animation-delay: 0.16s; }
.service-item:nth-child(3) { animation-delay: 0.24s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Responsive adjustments */
@media (max-width: 992px) {
  .services-list {
    gap: 20px 24px;
  }
}

@media (max-width: 768px) {
  #section6 h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .service-item {
    padding: 20px 16px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 14px;
  }

  .service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .service-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Section 7 - Map full screen with overlay panel */
#section7 {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.section7-map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact panel */
.contact-panel {
  position: absolute;
  top: 20%;
  right: 60px; /* desktop position */
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8); /* أبيض بـ شفافية 80% ⚪ */

  color: var(--color-black);
  max-width: 450px;
  width: 100%;
  padding: 50px 30px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(var(--black-rgb),0.25);
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeUp 0.9s cubic-bezier(.2,.9,.2,1) both;
}

.contact-panel h2 {
  font-size: 32px;
  margin-bottom: 0px;
  color: var(--color-black);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover; /*  هذا يضمن أن الفيديو يغطي المساحة بالكامل بدون تشويه */
    display: block;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
}

.info-item i {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--color-black);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .contact-panel {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: 90%;
    margin: 10px auto 0 auto;
    padding: 10px 10px;
  }

  .contact-info {
    gap: 15px;
  }

  .info-item i {
    font-size: 28px;
  }

  .contact-panel h2 {
    font-size: 24px;
  }
}


/* Responsive - remove separators on small screens */
@media (max-width: 768px) {
  #section6 {
    padding: 60px 15px;
  }

  .why-grid {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 100%;
  }

  .why-item {
    max-width: 100%;
    padding: 0 15px;
  }

  .why-item p {
    font-size: 14px;
    line-height: 1.5;
  }

  .separator {
    display: none;
  }
}



/* Responsive adjustments */
@media (max-width: 992px) {

  #section2 {
  background-size: cover;
}

  .client-card {
    width: 300px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .client-card {
    width: calc(50% - 20px);
    height: 180px;
  }
}

@media (max-width: 480px) {
  .client-card {
    width: 100%;
    height: 160px;
  }
}



/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 20px;
    }


    
    /* reduce sizes on small screens so header doesn't dominate */
    nav img {
        height: 70px;
    }

    nav a {
        font-size: 20px;
        padding: 6px 10px;
    }

    .services-table {
        flex-direction: column;
        align-items: center;
    }

    #section4 {
        flex-direction: column;
    }
}

.left-logo-container {
    position: fixed;
    top: 10px;
    left: 40px;  
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1100;

    /* Force the layout left → right even in RTL */
    direction: ltr;
    flex-direction: row;
}





