body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  background-color: #111 !important;
}

header {
    background-color: #333;
    color: white;
    padding: 5px 0;
    text-align: center;
}
.top-header {
        position: relative; /* parent container for absolute positioning */

    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    color: green;
    font-size: 14px;
    padding: 5px 0;
    margin: 0px 0 ;
}

.location {
    margin: 0;
    padding: 0;
}
.location p {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0px; /* space between icon and text */
}


.contact-info {
    display: flex;
    justify-content: center;
    align-items: center; /* Align icons and text vertically */
    gap: 10px;
    margin: 0px; /* Remove all vertical margins */
    padding: 0;
}


.contact-info p {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.top-header img {
    width: 25px;
    height: 25px;
    vertical-align: middle; /* centers with text */
    position: relative;
    top: 0px; /* adjust up/down visually */
    margin-right: 0px; /* spacing between icon and text */
}




/*AWANAUTO HEADER PICTURE WITH SIDEBAR*/
/* Banner Image */
/* ✅ STICKY HEADER (logo + menu + book button) */
.banner {
  text-align: center;
  margin: 0;
  background-color: #ffffff;
  position: sticky;     /* <— makes it stick */
  top: 0;               /* <— sticks to very top of viewport */
  z-index: 9999;        /* <— stays above hero + content */
}




.banner img {
    width: 70%; /* Set the image width to 80% of the container */
    max-width: 600px; /* Limit the maximum width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure the image is centered */

}

/* Toggle Menu Button */
/* Sidebar default hidden */
.menu-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  transition: filter 0.25s ease;
      filter: invert(71%) sepia(91%) saturate(418%) hue-rotate(62deg) brightness(98%) contrast(94%);

}

/* hide the X initially */
.menu-icon-close {
  display: none;
}

/* show only one at a time */
.menu-button.active .menu-icon-open {
  display: none;
}
.menu-button.active .menu-icon-close {
  display: block;
}

/* optional: tint the X icon red */
.menu-button.active .menu-icon-close {
  filter: brightness(0) saturate(100%) invert(17%) sepia(99%) saturate(7492%) hue-rotate(358deg) brightness(91%) contrast(122%);
}

/* keep button styling */
.menu-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: white;
  border: 1px solid rgba(32, 204, 69, 0.85);
  border-radius: 7px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;

}

.menu-button.active {
  border-color: rgb(255, 0, 0);
}




/* Dropdown Menu (hidden by default) */
.dropdown-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff; /* black dropdown background */
    border-top: 2px solid rgba(32, 204, 69, 0.842);
    padding: 10px 0;
    animation: fadeDown 0.25s ease;
}

.dropdown-menu a {
    color: #00c000;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.dropdown-menu a:hover {
    background-color: rgba(32, 204, 69, 0.15);
}

/* Fade-in effect */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* === HERO SECTION BELOW LOGO === */
.hero-section {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}

/* HERO BACKGROUND INIT (hidden) */
.hero-section {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-section.visible {
  opacity: 1;
}


.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-text {
  max-width: 750px;
  line-height: 1.4;
    margin-top: -30px; /* 👈 moves everything upward */

}

.hero-text h2 {
  position: relative;
  top: 14px; /* 👈 moves only this line down */
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: 800;

  margin-bottom: 20px; /* tighter spacing */
}


.hero-text .tagline {
  font-size: 1.05rem;
  color: #aee4ff; /* light blue accent */
  font-style: italic;
  margin-bottom: 18px;
}

.hero-text .description {
  font-size: 1rem;
  color: #f2f2f2;
  margin-bottom: 24px;
}

/* Button styling */
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  border: 2px solid rgb(109, 236, 54);;
  border-radius: 5px;
  padding: 12px 30px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.hero-button:hover {
  background: rgba(32, 204, 69, 0.85);
  border-color: rgba(32, 204, 69, 0.85);
  color: #fff;
  transform: scale(1.05);
}

.awan-green {
  color: rgb(103, 223, 51); /* your signature green */
  display: block;
  margin-top: 4px; /* slight gap between lines */
}


#intro-video.fade-out {
  opacity: 0;
  transition: opacity 1s ease;
}









/* === WE WORK WITH SECTION === */
.partners-section {
  background-color: #ffffff;
  text-align: center;
  padding: 40px 0;
  overflow: hidden;
  border-top: 2px solid #e5e5e5;
}

.partners-section h3 {
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(200px * 20);
  animation: scrollLogos 50s linear infinite;
}

.logo-track img {
  width: 120px;
  height: auto;
  margin: 0 30px;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Brand-specific size tweaks */
.logo-box[alt="Mercedes-Benz"] {
  transform: scale(1.25); /* slightly larger */
}

.logo-track img:hover {
}

/* === MOBILE: single logo slides in → stays → slides out === */
/* === MOBILE: each logo slides in, pauses, fully exits before next === */

/* === MOBILE: each logo slides in, pauses, fully exits before next === */
/* === MOBILE: each logo slides in, pauses, fully exits before next === */

    .book-btn {
    display: none !important;
  }

    .submenu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #111;
  }

  .menu-item.open .submenu {
    display: flex;
  }

  .partners-section {
    background: #fff;
    text-align: center;
    padding: 40px 0;
  }

  .logo-slider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
  }

  .logo-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: auto;
    opacity: 0;
    transform: translate(100%, -50%);
    transition: transform 0.6s ease, opacity 0.4s ease;
  }

  .logo-box.active {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .logo-box.exit {
    opacity: 0;
    transform: translate(-250%, -50%);
  }








/* === MOBILE: each logo slides in, pauses, fully exits before next === */


/* === OUR MOST POPULAR SERVICES === */
/* === OUR MOST POPULAR SERVICES (MOBILE ONLY) === */
.services-section {
  text-align: center;
  background: #fff;
  padding: 40px 0 60px;
}

.services-section h3 {
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 35px;
  font-weight: 800;
  text-transform: uppercase;
}

:root { --card-gap: 16px; } /* keep this value even to avoid half-pixels */

.services-carousel {
  overflow:hidden;
  width:90%;
  max-width:380px;
  margin:0 auto;
  border-radius:20px;
  position:relative;
  min-height: 350px;      /* ✅ ensures consistent spacing, no cropping */
  height: auto;           /* ✅ allow the content to size naturally */
  padding:0 calc(var(--card-gap) / 2);
  box-sizing:border-box;
  background:#fff;
  -webkit-overflow-scrolling: touch; /* ✅ smooth native scrolling */
}


.service-track{
  display:flex;
  flex-wrap:nowrap;
  gap: var(--card-gap);                     /* visual spacing */
  transition: transform .35s ease;
  will-change: transform;
  touch-action: pan-x; /* ✅ allow horizontal swipe on mobile */

}

/* one “page” per card, but leave visual gap between them */
.service-card{
  flex: 0 0 calc(100% - var(--card-gap));
  /*min-width: calc(100% - var(--card-gap));  <-- REMOVE THIS */
  margin: 0;
  box-sizing: border-box;
  background:#67DF33;
  color:#fff;
  border-radius:20px;
  padding:25px 15px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  user-select:none;
  -webkit-user-drag:none;
  cursor: pointer;
  text-decoration: none;
}

.service-card .view-details {
  color: #000;
  text-decoration: underline;
}



.service-card img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

.services-carousel{
  position: relative;          /* already there */
  overflow: hidden;            /* already there */
  background:#fff;             /* same as page bg */
}

.services-carousel::before,
.services-carousel::after{
  content:"";
  position:absolute; top:0; bottom:0;
  width:8px; background:#fff; z-index:2; pointer-events:none;
}
.services-carousel::before{ left:0; }
.services-carousel::after { right:0; }


/* Dots */
.dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s;
}

.dot.active {
  background: rgba(32, 204, 69, 0.85); /* full Awan green */
}



/* === MOBILE: each logo slides in, pauses, fully exits before next === */
/* === MOBILE: each logo slides in, pauses, fully exits before next === */

/* ================================
   DESKTOP/TABLET SERVICES SECTION
   ================================ */


/* DESKTOP 3-CARD SLIDER */
@media (min-width: 900px) {

  
      .auto-repair-banner {
        padding: 60px 0;
        background: #ffffff;
        display: flex;
        justify-content: center;
    }

    .auto-repair-image {
        width: 100% !important;         /* allow full width */
        max-width: 600px !important;   /* allow big image */
        height: auto !important;        /* FIX: override 200px */
        object-fit: contain !important; /* FIX: prevent cropping */
        border-radius: 24px !important;
    }
  .services-carousel { display: none !important; }
  .dots { display: none !important; }

  .services-carousel-desktop {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .service-track-desktop {
    display: flex;
    transition: transform 0.5s ease;
    gap: 25px;
  }

  .service-track-desktop .service-card {
    flex: 0 0 calc(33.33% - 20px);
    min-width: calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }

  .dots-desktop {
    margin-top: 20px;
    display: flex !important;
    justify-content: center;
    gap: 10px;
  }

  .dot-d {
    width: 12px;
    height: 12px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }


    .dot-d.active {
    background: rgba(32, 204, 69, 0.85); /* bright Awan green */
  }
}

/* MOBILE ONLY */
@media (max-width: 899px) {
  .services-carousel-desktop,
  .dots-desktop {
    display: none !important;
  }
}











/* === SLIDE-IN ANIMATION === */
.slide-in {
  opacity: 0;
  transform: translateX(-200px);
  transition: all 1s ease-out;
}

.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== MOBILE FIRST ===== */

/* Section layout */
.trust-section {
  position: relative;
  padding: 50px 15px;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.trust-overlay {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 0 10px;
}

/* Grid layout mobile: 1 column */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Item */
.trust-item {
  padding: 5px 0;
}

/* Icon wrapper */
.trust-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-icon lottie-player {
  width: 75px !important;
  height: 75px !important;
}

/* Title */
.service-green {
  color: #67df33;
  font-size: 1.2rem;
  margin: 6px 0 8px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Paragraph */
.trust-item p {
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 300px;
  margin: 0 auto;
  padding: 0 10px;
}






@media (min-width: 900px) {
/* === TRUST SECTION === */
.trust-section {
  position: relative;
  background: url("assets/bmwf80.png") center/cover no-repeat;
  padding: 60px 0;           /* smaller vertical size */
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Overlay container */
.trust-overlay {
  position: relative;
  z-index: 2;
  max-width: 1100px;          /* controls total width */
  margin: 0 auto;
  padding: 0 20px;
  opacity: 1;
  transform: none;
}

/* Layout: 3 items on desktop, stacked on mobile */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
}

@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}

/* Individual items */
.trust-item {
  padding: 10px;
}

/* Icons */
.trust-item lottie-player {
  width: 70px !important;
  height: 70px !important;
  margin-bottom: 10px;
}

/* Titles */
.service-green {
  color: #67df33;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 8px 0 10px;
}

/* Descriptions */
.trust-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}
.trust-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon lottie-player {
  width: 90px !important;
  height: 90px !important;
}
}


/* Animation */
@keyframes slideInTrust {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .service-green {
    font-size: 1.3rem;
  }
  .trust-item lottie-player {
    width: 80px !important;
    height: 80px !important;
  }
}




/* ==========================
   HOURS SECTION — MOBILE FIRST
   ========================== */
/* ===========================================
   HOURS SECTION — CLEAN WHITE THEME (MOBILE FIRST)
/* ==========================
   HOURS SECTION — WHITE THEME
   MOBILE FIRST
   ========================== */

.hours-section {
  background: #fff;
  color: #000;
  padding: 50px 20px;
  text-align: left;
}

.hours-overlay {
  max-width: 1100px;
  margin: 0 auto;
}

/* Titles */
.hours-title {
  color: #67df33;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Subtitles (for Education Foundation) */
.hours-subtitle {
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 25px 0 10px;
}

/* Text paragraphs */
.hours-text,
.hours-note {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.55;
  margin-bottom: 20px;
}

/* Hours list */
.hours-list {
  margin: 15px 0 25px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e6e6e6;
  font-size: 1rem;
}

.hours-row span:first-child {
  font-weight: 600;
  color: #000;
}

.hours-row span:last-child {
  font-weight: 600;
  color: #67df33;
}

/* Footer */
.hours-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.95rem;
  color: #444;
}

/* ==========================
   DESKTOP VERSION
   TWO COLUMN LAYOUT CENTERED
   ========================== */

@media (min-width: 900px) {

  .hours-section {
    padding: 90px 20px;
  }

  .hours-overlay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 1000px;   
    margin: 0 auto;
  }

  .hours-title {
    font-size: 1.7rem;
  }

  .hours-row {
    font-size: 1.05rem;
    padding: 12px 0;
  }

  .hours-footer {
    font-size: 1.05rem;
    margin-top: 50px;
    text-align: center;
    width: 100%;
    display: block;
  }


  /* ======================================
     DESKTOP SLIDE-IN (SCROLL TRIGGERED)
     ====================================== */

  .slide-left,
  .slide-right {
    opacity: 0;
    transition: all 0.9s ease-out;
  }

  .slide-left {
    transform: translateX(-60px);
  }

  .slide-right {
    transform: translateX(60px);
  }

  /* When visible */
  .slide-left.visible,
  .slide-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

}



/* Brand gets green and shimmer animation */
.footer-brand {
  font-weight: 700;
  color: #67df33;
  -webkit-text-fill-color: #67df33;
}

/* TRUE shine-through text effect */
.shimmer-text {
  background: linear-gradient(
    120deg,
    #67df33 0%,
    #67df33 40%,
    #ffffff 50%,
    #67df33 60%,
    #67df33 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 2s linear infinite;
}

/* Shine animation */
@keyframes shineText {
  0% {
    background-position: -100% center;
  }
  100% {
    background-position: 100% center;
  }
}






/* Responsive adjustments */
@media (max-width: 600px) {
  .trust-section {
    padding: 60px 15px;
    min-height: 400px;
  }

  .trust-overlay {
    padding: 30px 15px;
  }

  .trust-logo {
    width: 110px;
  }

  .trust-text h4 {
    font-size: 1rem;
  }

  .trust-text p {
    font-size: 0.9rem;
  }
}




/* Responsive adjustments */
@media (max-width: 600px) {
  .hero-section {
    height: 330px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text h2 {
    font-size: 1.1rem;
  }

  .hero-text .description {
    font-size: 0.95rem;
  }
}



nav {
    margin: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

nav a:hover {
    background-color: #555;
}

.container {
    padding: 20px;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

@media (max-width: 600px) {
  header {
    font-size: 1.5em;
  }

  nav a {
    display: block;
    margin: 5px 0;
  }

  .container {
    padding: 10px;
  }





}  /* ✅ CLOSE the mobile block here */

/* ================================
   DESKTOP VIEW (min 900px wide)
   ================================ */
/* ============================================
   🖥 FINAL DESKTOP HEADER FIX (Awan Auto Inc)
   ============================================ */
@media (min-width: 900px) {
  /* Ensure desktop dropdown overrides mobile black menu */
  .dropdown-menu {
    all: unset;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 1;
  }

  .dropdown-menu ul,
  .menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .menu-item {
    position: relative;
  }

  .menu-item > a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 8px 12px;
    transition: color 0.3s ease;
  }



.menu-item > a:hover {
    color: #000 !important;  /* remove green */
}

.menu-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #67DF33; /* your green, but subtle */
    transition: width .3s ease;
}

.menu-item > a:hover::after {
    width: 100%;
}


  /* ✅ Submenu dropdown style (vertical + no flicker) */
/* ✅ Submenu dropdown style - FIXED width issue */
.submenu {
    display: block !important;

      flex-direction: column !important;

  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 280px;
  width: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  border: 1px solid #ddd;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
  white-space: nowrap;
}

/* ensures vertical stacking */
.submenu li {
  display: block;
  width: 100%;
}


.submenu li a {
  display: block;
  padding: 10px 0px;
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  white-space: nowrap;
}



  .submenu li a:hover {
    background: #f5f5f5;
    color: #67DF33;
  }

  /* ✅ FIXED: show dropdown smoothly */
  .has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }


.menu-button {
  display: none !important;
  pointer-events: none;
  visibility: hidden;
}


  /* ✅ Remove leftover bullets or vertical stacking */
  .banner .menu,
  .dropdown-menu .menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  /* ✅ Book button consistent */
  .book-btn {
    background: rgba(32, 204, 69, 0.85);
    color: #fff;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .book-btn:hover {
    background: #cc0000;
    transform: scale(1.05);
  }

  /* ✅ Center navigation perfectly */
  .banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    background: #fff;
    padding: 15px 80px;
    border-bottom: 1px solid #eee;
  }

  .banner img {
    width: 260px;
    height: auto;
  }
}





.top-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #00c000;
  font-size: 14px;
  padding: 6px 10px;
  gap: 50px;
}

.location, .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.top-header p {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-header img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  position: relative;
  top: 0;
}

/* === DESKTOP HERO FULL VIEW (EuroMechanic-style height) === */
@media (min-width: 900px) {

    .banner .menu-item {
    opacity: 0;
    transform: scale(0.85);
    animation: navPop .5s ease-out forwards;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: #ffffff;
    z-index: 9999;
}

/* Fix hero overlap under the fixed header */



.hero-bg {
    object-position: center;
}


  /* Stagger for each item */
  .banner .menu-item:nth-child(1) { animation-delay: 0.2s; }
  .banner .menu-item:nth-child(2) { animation-delay: 0.35s; }
  .banner .menu-item:nth-child(3) { animation-delay: 0.5s; }

  @keyframes navPop {
    0% {
      opacity: 0;
      transform: scale(0.85);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }


  .hero-section {
    height: 575px; /* ⬆ increase hero height for desktop only */
  }



  .hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
  }

  .hero-text {
    margin-top: -20px; /* better vertical balance */
  }

  .hero-text h1 {
    font-size: 2.8rem; /* bold desktop headline */
  }

  .hero-text h2 {
    font-size: 1.6rem;
  }

  .hero-text .description {
    font-size: 1.1rem;
  }

  .hero-button {
    padding: 15px 38px;
    font-size: 1.05rem;
  }

  
}



/* ============================
   DESKTOP SCROLLING LOGO BAR
   ============================ */
/* ===============================
   🖥 DESKTOP AUTO SCROLL LOGO BAR
   =============================== */
/* ===============================
   🖥 DESKTOP AUTO SCROLL LOGO BAR (CENTERED)
/* ===============================================
   🖥 DESKTOP VIEW (Awan Auto Inc) — min-width: 900px
   =============================================== */
/* ===============================================
   🖥 DESKTOP VIEW (Awan Auto Inc) — min-width: 900px
   =============================================== */
@media (min-width: 900px) {
  .logo-carousel {
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
  }

  .logo-card {
    flex: 0 0 calc(100% / 16);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .logo-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .logo-card img {
    width: 115px;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s;
  }

  .logo-card img:hover {
    filter: grayscale(0%);
  }

  .logo-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .logo-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    transition: background 0.3s;
    cursor: pointer;
  }

  .logo-dots .dot.active {
    background: rgba(32, 204, 69, 0.85);
  }

  /* ✅ Force hide desktop carousel on mobile */
} /* ✅ this bracket was missing before — fixes the dots! */


/* ✅ FINAL DEVICE VISIBILITY FIX */
@media (max-width: 900px) {
  /* Show mobile, hide desktop */
  .mobile-slider {
    display: block !important;
    visibility: visible !important;
  }
  .logo-carousel,
  .logo-dots,
  .desktop-slider {
    display: none !important;
    visibility: hidden !important;
  }
}

/* ✅ FINAL DEVICE VISIBILITY FIX */
/* ================================
   ✅ FINAL DEVICE VISIBILITY FIX
   ================================ */

/* 📱 Mobile view (up to 900px) */
/* ================================
   FINAL DEVICE VISIBILITY FIX
   ================================ */

/* 📱 Mobile view (up to 900px) */
@media (max-width: 900px) {
  /* Hide desktop carousel + dots */
  .logo-carousel,
  .desktop-slider {
    display: none !important;
    visibility: hidden !important;
  }

  /* Show mobile fade slider */
  .mobile-slider {
    display: block !important;
    visibility: visible !important;
  }
}

/* 🖥 Desktop view (from 901px up) */
@media (min-width: 901px) {
  /* Hide mobile slider completely */
  .mobile-slider {
    display: none !important;
    visibility: hidden !important;
  }

  /* Show desktop carousel and dots */
  .logo-carousel,
  .logo-dots,
  .desktop-slider {
    display: block !important;
    visibility: visible !important;
  }

  /* ✅ Dot alignment & style */
  .logo-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .logo-dots .logo-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }

  .logo-dots .logo-dot.active {
    background: rgba(32, 204, 69, 0.85);
  }
}

/* Fullscreen Intro Loader */
#intro-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* MOBILE FIX — prevent iOS from zooming video */
#intro-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;

  /* ADJUST THIS ↓↓↓ */
  object-position: calc(100% - -220px) center;
  /* Move LEFT = increase px  
     Move RIGHT = decrease px */
}



/* Fade out effect */
.fade-out {
    opacity: 0 !important;
}

/* Hide content until intro ends */




/* ============================
   DESKTOP INTRO VIDEO FIX
   ============================ */
@media (min-width: 900px) {

  #intro-video {
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      object-position: center center; /* desktop = center the car */
  }

  /* make hero fade-in smooth on desktop too */
  .hero-section {
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
  }
  .hero-section.visible {
      opacity: 1;
  }

  /* menu slide is perfect already — just prevent shifting */
/* Header logo bar should NOT animate when fixed */
.banner {
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
}

  /* hero text slides from bottom smoothly on desktop */
  .hero-text.slide-up {
      transform: translateY(45px);
      opacity: 0;
      transition: all 1.2s ease;
  }
  .hero-text.slide-up.visible {
      transform: translateY(0);
      opacity: 1;
  }
}
#intro-video, #intro-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
        pointer-events: none; /* stops play button from being tapped */

}
#intro-video {
    pointer-events: none !important;
}

#intro-gif {
    display: none;
}

/* ============================================
   🔥 SHINE EFFECT FOR SERVICE CARDS (DESKTOP)
   ============================================ */
@media (min-width: 900px) {
  .services-section .service-card {
    position: relative !important;
    overflow: hidden !important;
  }

  .services-section .service-card .shine {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 130%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.35),
      transparent
    );
    transform: translateX(-130%);
    pointer-events: none;
    z-index: 5;
    transition: none !important; /* important */
  }

  .services-section .service-card:hover .shine {
    transform: translateX(130%);
    transition: transform 0.7s ease-out !important; /* force animation */
  }
}




/* LETTER REVEAL ANIMATION */
/* CLEAN LETTER SLIDE-UP (no bounce, no wiggle) */
/* SLEEK TYPEWRITER FADE-IN LETTER ANIMATION */
/* CLEAN LETTER SLIDE-UP (no wiggle, no shine) */
.reveal-text {
  display: inline-block;
}

.reveal-text .letter {
  opacity: 0;
  transform: translateY(8px);
  display: inline-block;
  animation: typeFade 0.25s ease-out forwards;
}

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

/* ============================
   🌟 BUTTON SHINE EFFECT
   ============================ */
.hero-button {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

/* Shine bar */
.hero-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.65) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

/* Hover animation */
.hero-button:hover::after {
    animation: shineSweep 0.9s forwards ease-out;
}

@keyframes shineSweep {
    0% { left: -150%; }
    100% { left: 150%; }
}


/* 🔥 Make the whole header stick to the top when scrolling */
/* 🔥 FIXED HEADER (EuroMechanic style) */





@media (min-width: 900px) {
    .banner img {
        width: 300px;
        max-width: none;
    }

      .banner {
    padding: 0px 150px !important; /* Slightly taller header */
  }
}


/* --- MAIN WRAPPER (mobile default) --- */
.awan-stats {
    padding: 40px 15px;
    text-align: center;
    background: #111;
    color: white;
}

/* --- INTRO PARAGRAPH --- */
.stats-intro {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1rem;       /* smaller */
    line-height: 1.45;     /* tighter */
    color: #ccc;
}

/* --- COUNTERS GRID --- */
.stats-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* one per row on mobile */
    gap: 30px;                  /* less spacing */
}

/* --- COUNTER ROW --- */
.user-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2.3rem;   /* smaller */
    color: #67df33;
}

/* Number */
.counter-number {
    padding: 0 5px;
}

/* Plus sign animation */
.plus-sign {
    opacity: 0;
    transition: opacity .4s ease;
}

/* Label */
.counter-label {
    margin-top: 6px;
    font-size: 1rem;            /* smaller */
    font-weight: 600;
    color: #eaeaea;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ============================
   🖥 DESKTOP STATS LAYOUT
   ============================ */
/* ============================
   🖥 CLEAN DESKTOP STATS LAYOUT
   ============================ */
@media (min-width: 900px) {

    .awan-stats {
        padding: 60px 20px;           /* less vertical space */
    }

    .stats-intro {
        max-width: 800px;
        font-size: 1.1rem;            /* smaller, cleaner text */
        margin-bottom: 30px;
        line-height: 1.5;
    }

    /* 3 columns perfectly aligned */
    .stats-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;                     /* LESS spacing */
        max-width: 1000px;
        margin: 0 auto;
        align-items: center;
    }

    /* Big number but not TOO big */
    .user-counter {
        font-size: 2.8rem;             /* reduced from huge size */
        margin-bottom: 8px;
    }

    .counter-label {
        font-size: 1rem;               /* more proportionate */
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-top: 4px;
    }
}


/* ===========================
   MTO INSPECTION SECTION
   MOBILE FIRST
   =========================== */
/* =============================
   VEHICLE INSPECTION (MOBILE)
   ============================= */

/* =============================
   VEHICLE INSPECTION (MOBILE FIRST)
   ============================= */
.vehicle-inspection-section {
    background: #ffffff; /* stays dark on mobile */
    padding: 40px 20px 55px;
    text-align: center;
    color: #111;
}

/* Image */
.inspection-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.inspection-image {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
}

/* Text */
.inspection-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
    color: #67df33;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.inspection-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    max-width: 750px;
    margin: 0 auto;
}

/* =============== DESKTOP LAYOUT =============== */
@media (min-width: 900px) {
    .vehicle-inspection-section {
        background: white;
        color: #111;
        padding: 80px 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
        text-align: left; /* no center on desktop */
    }

    /* Left image stays fixed width */
    .inspection-image-wrapper {
        flex: 1;
        margin: 0;
    }

    .inspection-image {
        border-radius: 12px;
        width: 100%;
        max-width: 550px;
    }

    /* Right text side */
    .inspection-text-wrapper {
        flex: 1.2;
    }

    .inspection-title {
        font-size: 2rem;
        color: #67df33; /* stays brand green */
        margin-bottom: 20px;
    }

    .inspection-text {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.7;
        max-width: 500px;
        margin: 0;
    }



.inspection-text {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.55;      /* tighter lines */
    margin: 0;
    max-width: 480px;
}

.inspection-text-wrapper {
    padding-top: 10px;      /* lifts text slightly */
}

.inspection-text .green {
    color: #67df33;
    font-weight: 700;
}

}

/* ===========================
   HEADER RESPONSIVE CLEANUP
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
}

.banner {
  position: relative !important;
  top: auto !important;
  z-index: 1;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  padding: 8px 18px !important;
  background: #fff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.banner > img {
  display: block;
  width: clamp(210px, 48vw, 320px) !important;
  max-width: calc(100% - 76px) !important;
  height: auto !important;
  flex: 0 1 auto;
}

.menu-button {
  position: static !important;
  flex: 0 0 46px;
  width: 46px !important;
  height: 46px !important;
  padding: 0;
  border-radius: 8px;
  background: #eef7ff;
  border: 1px solid rgba(32, 204, 69, 0.9);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.menu-button .menu-icon {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  display: block;
}

.menu-button .menu-icon-close {
  display: none !important;
}

.menu-button.active .menu-icon-open {
  display: none !important;
}

.menu-button.active .menu-icon-close {
  display: block !important;
}

.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 10px 18px 16px;
  background: #fff;
  border-top: 1px solid rgba(103, 223, 51, 0.65);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.dropdown-menu.is-open {
  display: flex !important;
}

.dropdown-menu ul,
.menu,
.submenu {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.dropdown-menu .menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item,
.submenu li {
  list-style: none !important;
}

.menu-item > a,
.submenu li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #101820;
  text-align: left;
  text-decoration: none;
  border-radius: 6px;
}

.menu-item > a {
  padding: 12px 10px;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
}

.submenu {
  display: none !important;
  width: 100%;
  padding: 2px 0 8px 12px !important;
  background: transparent !important;
}

.menu-item.open .submenu {
  display: flex !important;
  flex-direction: column;
  gap: 2px;
}

.submenu li a {
  padding: 9px 10px;
  color: #314052;
  font-size: 0.94rem;
  font-weight: 600;
}

.menu-item > a:hover,
.submenu li a:hover {
  background: rgba(103, 223, 51, 0.12);
  color: #111;
}

@media (max-width: 420px) {
  .banner {
    min-height: 72px;
    padding: 7px 12px !important;
    gap: 10px;
  }

  .banner > img {
    width: clamp(175px, 62vw, 240px) !important;
    max-width: calc(100% - 58px) !important;
  }

  .menu-button {
    flex-basis: 42px;
    width: 42px !important;
    height: 42px !important;
  }
}

@media (min-width: 900px) {
  .site-header {
    position: sticky !important;
    height: auto !important;
  }

  .banner {
    display: grid !important;
    grid-template-columns: auto 1fr;
    min-height: 68px;
    padding: 6px clamp(28px, 6vw, 90px) !important;
  }

  .banner > img {
    width: clamp(190px, 18vw, 240px) !important;
    max-width: 240px !important;
  }

  .menu-button {
    display: none !important;
  }

  .dropdown-menu,
  .dropdown-menu.is-open {
    all: unset;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }

  .dropdown-menu .menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 3vw, 40px);
    width: auto;
  }

  .menu-item {
    position: relative;
  }

  .menu-item > a {
    width: auto;
    padding: 10px 4px !important;
    color: #111;
    text-align: center;
    border-radius: 0;
    font-size: 0.92rem !important;
    white-space: nowrap;
  }

  .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: max-content !important;
    min-width: 250px;
    padding: 8px !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .has-dropdown:hover .submenu,
  .has-dropdown:focus-within .submenu {
    display: flex !important;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .submenu li a {
    padding: 10px 12px;
    text-align: left;
    white-space: nowrap;
  }
}

.auto-repair-banner {
    width: 100%;
    background: #ffffff;          /* WHITE BACKGROUND */
    padding: 36px 0;              /* spacing top & bottom */
    display: flex;
    justify-content: center;
}

.auto-repair-image {
    width: min(74%, 720px);
    height: auto;
    aspect-ratio: 8 / 3;
    object-fit: contain;
    border-radius: 16px;
    transition: .3s ease-in-out;
    display: block;
    margin: 0 auto;        /* center it */

    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(103, 223, 51, 0.8),
                0 0 40px rgba(103, 223, 51, 0.4);
}

@media (min-width: 900px) {
  .auto-repair-banner {
    padding: 52px 0;
  }

  .auto-repair-image {
    width: min(68%, 760px) !important;
    max-width: 760px !important;
    height: auto !important;
  }
}


/* Hover Glow Animation */

/* ============================
   CONTACT SECTION — Mobile First
   ============================ */

/* ============================
   MOBILE-FIRST CONTACT FORM
   ============================ */

/* ================================
   CONTACT — MOBILE FIRST (Compact)
   ================================ */
.contact-section {
  padding: 30px 15px;
  background: #0f0f0f;
  text-align: left;
}

.contact-title {
  text-align: center;
  color: #67df33;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Form structure */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px; /* smaller spacing */
}

/* Ensure fields never overflow */
.contact-form * {
  box-sizing: border-box !important;
}

/* Labels */
.contact-form label {
  color: #67df33;
  font-size: 0.9rem;
  margin-bottom: 4px;
  display: block;
}

/* Inputs + Textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px; /* reduced */
  background: #121212;
  border: 1.4px solid #67df33;
  border-radius: 6px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  display: block;
}

.contact-form textarea {
  min-height: 110px; /* smaller */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #67df33;
  opacity: 0.6;
}

/* Focus glow */
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 8px rgba(103, 223, 51, 0.45);
}

/* Submit Button */
.contact-btn {
  width: 100%;
  background: #67df33;
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 5px;
}

.contact-btn:hover {
  background: #7aff40;
  box-shadow: 0 0 10px rgba(103, 223, 51, 0.6);
}

.form-error-message {
  display: none;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid #67df33;
  border-radius: 6px;
  background: rgba(103, 223, 51, 0.12);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.form-error-message:not(:empty) {
  display: block;
}


/* ================================
   DESKTOP — COMPACT + CENTERED
   ================================ */
@media (min-width: 900px) {

  .contact-section {
    padding: 50px 0;           /* MUCH smaller */
    background: #0f0f0f;
    display: flex;
    justify-content: center;
  }

  .contact-wrapper {
    width: 600px;              /* smaller (old was 750px) */
    margin: 0 auto;
  }

  .contact-title {
    font-size: 1.9rem;         /* smaller */
    margin-bottom: 22px;       /* reduced */
  }

  .contact-form {
    gap: 16px;                 /* tighter spacing */
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;        /* smaller height */
    font-size: 1rem;
    border-width: 2px;
  }

  .contact-form textarea {
    min-height: 130px;         /* smaller textarea */
  }

  .contact-btn {
    padding: 14px;             /* smaller send button */
    font-size: 1.1rem;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
  }



}
/* ===========================
/* ===========================
   AWAN AUTO FOOTER — MOBILE FIRST
   =========================== */

.awan-footer {
  background: #0d0d0d;
  color: #fff;
  padding: 55px 25px 40px;
  margin-top: 0px;
  font-family: Arial, sans-serif;
}

/* MOBILE GRID (1 column) */
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.footer-col {
  width: 100%;
}

/* Logo */
.footer-logo {
  width: 150px;
  margin-bottom: 12px;
}

/* Slogan */
.footer-slogan {
  color: #cfcfcf;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Titles */
.footer-title {
  color: #67df33;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Lists */
.footer-links,
.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-info li {
  margin-bottom: 10px;
  color: #bfbfbf;
  font-size: 0.95rem;
}

.footer-links li a {
  color: #bfbfbf;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links li a:hover {
  color: #67df33;
  padding-left: 5px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-socials img {
  width: 28px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.footer-socials img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px #67df33);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid #222;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom-right {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.footer-bottom-right img {
  width: 24px;
  filter: brightness(0) invert(1);
}



/* ===========================
     DESKTOP FOOTER (≥ 900px)
   =========================== */
@media (min-width: 900px) {

  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr) 1fr;
    gap: 55px;

    /* NEW → ensures all columns align titles perfectly */
    align-items: start;
  }

  /* Make all columns consistent vertical structure */
  .footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Fix title alignment */
  .footer-title {
    margin-top: 10px;       /* NEW → uniform spacing */
    padding-top: 0;
    line-height: 1.2;
  }

  /* Increase logo size on desktop */
  .footer-logo {
    width: 180px;          /* increased from 150px */
  }

  /* Bottom bar alignment stays the same */
.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;   /* ⬅ CENTER ALL CONTENT */
    align-items: center;
    text-align: center;        /* ⬅ TEXT SHOULD ALSO BE CENTERED */
    gap: 20px;                 /* OPTIONAL: space between text & icons */
}

/* ✅ Smaller desktop header */
@media (min-width: 900px) {
  .banner {
    padding: 4px 80px !important; /* first number controls height */
    min-height: 60px;
  }

  .banner img {
    width: 220px !important; /* reduce logo size */
    height: auto !important;
  }

  .dropdown-menu ul,
  .menu {
    gap: 35px !important;
  }

  .menu-item > a {
    font-size: 0.95rem !important;
    padding: 6px 10px !important;
  }
}

/* The desktop nav (logo + up to 8 items at the gap/padding above) doesn't
   actually fit until ~1175px — narrower than that but still >=900px causes
   horizontal overflow. Tighten logo/gap/font further in that gap so nothing
   wraps or overflows before the 1175px "roomy" sizing applies again. */
@media (min-width: 900px) and (max-width: 1174px) {
  .banner {
    padding: 4px 16px !important;
  }

  .banner img {
    width: 150px !important;
  }

  .dropdown-menu ul,
  .menu {
    gap: 10px !important;
  }

  .menu-item > a {
    font-size: 0.76rem !important;
    padding: 6px 4px !important;
  }
}

}

