/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden; /* ⬅ only hides horizontal scroll */
  }
  
  html {
   
    scroll-padding-top: 60px; /* Adjust to your navbar height */
  }

  /* Navbar Styling */
  .navbar {
    height: 60px;
    width: 100%;
    background: #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    height: 40px;
  }


  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a,
  .menu-overlay a {
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  
  .nav-links a:hover,
  .menu-overlay a:hover {
    color: #239df5;
    font-weight: bold;
  }
  
  /* Hamburger Icon */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger div {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 4px;
    transition: all 0.3s ease;
  }
  
  /* Mobile Menu Overlay */
  .menu-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 380px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex; /* keep flex here; use opacity + visibility for control */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    
    z-index: 2000;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  }
  
  .menu-overlay a {
    margin: 12px 0; /* 👈 This adds vertical spacing between each nav link */
    font-size: 22px; /* Optional: bump size for clarity */
  }
  
  .menu-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .menu-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;

      /* 👇 Move the whole menu list up slightly */
  margin-top: -15px;
  }
  
  .hero {
    position: relative;
    height: 100vh; /* Simpler and more consistent across devices now */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: 60px;
  }
  
  .hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .hero-slide.active {
    opacity: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    margin: auto;
  }



  .hero-logo,
  .hero h1,
  .hero-btn {
    z-index: 2;
    position: relative;
  }
  
.hero-logo {
  width: 650px;
  max-width: 90vw; /* prevents overflow on small screens */
  height: auto;
  margin-bottom: 20px;
}
  
.hero h1 {
    font-size: 38px;
    font-family: 'Georgia', serif;
    font-weight: normal;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow:
      0 0 10px rgba(0, 0, 0, 0.9),
      0 0 25px rgba(0, 0, 0, 0.7),
      0 0 45px rgba(0, 0, 0, 0.6),
      0 0 65px rgba(0, 0, 0, 0.5),
      0 0 85px rgba(0, 0, 0, 0.4),
      0 0 105px rgba(0, 0, 0, 0.3);
  }
  
  .hero-btn {
    margin-top: 50px;
    padding: 10px 25px;
    font-size: 24px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    z-index: 2;
    position: relative;
    font-weight: 900;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.857));
  }
  
  .hero-btn:hover {
    background: #171717;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.857));
  }

  /*]]]]]]] Commercial Section [[[[[[[[ ]]]]]]] Commercial Section [[[[[[[[ ]]]]]]] Commercial Section [[[[[[[[ ]]]]]]] Commercial Section [[[[[[[[ */ 
  /*]]]]]]] Commercial Section [[[[[[[[ ]]]]]]] Commercial Section [[[[[[[[ ]]]]]]] Commercial Section [[[[[[[[ ]]]]]]] Commercial Section [[[[[[[[ */ 
  /*]]]]]]] Commercial Section [[[[[[[[ ]]]]]]] Commercial Section [[[[[[[[ ]]]]]]] Commercial Section [[[[[[[[ ]]]]]]] Commercial Section [[[[[[[[ */ 




/* ======== Commercial Section One ======== */
.commercial-section-one {
    width: 100%;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }
  
  .commercial-container-one {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    padding: 0 50px;
    gap: 40px;
    flex-wrap: nowrap;
  }
  
  .commercial-image-one {
    flex: 1;
    display: flex;
    justify-content: flex-start;
  }
  
  .commercial-image-one img {
    width: clamp(200px, 40vw, 900px);
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: 0;
  }
  
  .commercial-text-box-one {
    flex: 0 0 auto;
    max-width: 550px;
    width: 100%;
    padding: 40px;
    text-align: center;
  }
  
  /* ======== Commercial Section Two ======== */
  .commercial-section-two {
    width: 100%;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    padding-bottom: 50px;
  }
  
  .commercial-container-two {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    padding: 0 50px;
    gap: 40px;
    flex-wrap: nowrap;
  }
  
  .commercial-text-box-two {
    flex: 0 0 auto;
    max-width: 550px;
    width: 100%;
    padding: 40px;
    text-align: center;
  }
  
  .commercial-image-two {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  
  .commercial-image-two img {
    width: clamp(100px, 30vw, 900px);
    height: auto;
    object-fit: contain;
    display: block;
    margin-right: 0;
  }
  
  .commercial-text-one h2,
  .commercial-text-two h2 {
    font-size: 2.5em;
    font-weight: bold;
    text-transform: uppercase;
    color: #007cdb;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(36, 179, 0, 0.3);
  }
  
  .commercial-text-one p,
  .commercial-text-two p {
    font-size: 1.5em;
    color: #555;
    line-height: 1.6;
  }
  
/* ================================================================================== Savings Banner ==== */
.savings-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 200px;
    width: 100%;
    padding: 0 20px;
    background: #007cdb;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .savings-image {
    flex: 0 0 auto;
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .savings-image img {
    max-height: 80%;
    width: auto;
    object-fit: contain;
  }
  
  .savings-text {
    flex: 0 0 400px;
    text-align: center;
  }
  
  .savings-text h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #ffffff;
  }
  
  .savings-text p {
    font-size: 1.5rem;
    color: #ffffff;
  }
  
  /* Hide mobile images by default */
  .savings-images-mobile {
    display: none;
  }
  
/* ======== Booqable Rental Widget ======== */
.booqable-product-list {
  margin: 0 auto;
}

/* Let Booqable cards size naturally */
.booqable-product-list .booqable-product {
  width: 260px !important;
  height: auto !important;
  min-height: 360px !important;
  box-sizing: border-box;
}


/* Partners & Clients Section */
.partners-section {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
  }
  
  .partners-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #007cdb;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .logo-container {
    width: 100px;
    height: 100px;
    flex: 0 0 auto; /* Prevents shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: #ffffff;
    border-radius: 8px;
  }


  .logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  


  .photogrid-section {
    background-color: #000;
    padding: 60px 0; /* Removed left/right padding */
    text-align: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .photogrid-title {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .photogrid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .photogrid-container a {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  .photogrid-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1/1;
  }
  
  

  .lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
  }
  
  .lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 80vw;
    max-height: 80vh;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    border-radius: 4px;
  }
  
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
  }
  
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  
  .lightbox-prev:hover, .lightbox-next:hover, .lightbox-close:hover {
    color: #ccc;
  }
  
  


  .testimonials-section {
    background-color: #f8f8f8;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 50px;
    text-align: center;
  }
  
  .testimonials-title {
    font-size: 2rem;
    color: #007cdb;
    margin-bottom: 10px;
  }
  
  .testimonial-carousel {
    position: relative;
    width: 80%;
    max-width: 800px;
    height: 120px;
  }
  
  .testimonial {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-size: 1.5rem;
    color: #333;
    padding: 0 20px;
  }
  
  .testimonial.active {
    opacity: 1;
  }
  



  .site-footer {
    background-color: #1a1a1a;
    background-image: url('/images/footerimage2.webp');
    background-size: cover;           /* Ensures it fills the area */
    background-position: center;      /* Keeps image centered */
    background-repeat: no-repeat;     /* Prevents tiling */
  
    color: white;
    height: 500px;
    padding: 40px 20px;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;          /* Centers content vertically */
    text-align: center;
  }
  
  
  .footer-logo img {
    max-width: 300px;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    filter:
    drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
  }
  
  .footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    filter:
      drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
  
  }
  
  .footer-socials img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
  }
  
  .footer-socials img:hover {
    transform: scale(1.2);
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
   max-width: 600px;
   filter:
      drop-shadow(0 0 10px rgba(0, 0, 0, 0.9))
    
      drop-shadow(0 0 45px rgba(0, 0, 0, 0.6));
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    filter:
    drop-shadow(0 0 10px rgba(0, 0, 0, 0.9))
  
    drop-shadow(0 0 45px rgba(0, 0, 0, 0.6));
  
  }
  
  .footer-links a:hover {
    text-decoration: none;
    color: #00a6ff;
    font-weight: bold;
  }
  
  .footer-contact p {
    margin: 5px 0;
    font-size: 1.25rem;
    
  }

  .footer-contact a {
    color: #ffffff;
    text-decoration: none;
  }
  

  .footer-note p {
    margin: 2px 0;
    margin-top: 20px;
    font-size: 1rem;
    color: #777;
  }
  






  /* ==================================================== Media Queries ========== */
  @media (max-width: 1100px) {
    .commercial-container-one,
    .commercial-container-two {
      flex-direction: column;
      padding: 20px;
      align-items: center;
      justify-content: center;
    }
  
    .commercial-image-one,
    .commercial-image-two {
      justify-content: center;
      order: -1;
      margin-bottom: 20px;
    }
  
    .commercial-image-one img,
    .commercial-image-two img {
      width: 500px;
      max-width: 100%;
    }
  
    .commercial-text-box-one,
    .commercial-text-box-two {
      margin: 0 auto;
      max-width: 550px;
      padding: 0;
      text-align: center;
    }
  

  }
  


  @media (max-width: 830px) {
 /* Hide original images */
 .original-img {
    display: none;
  }


  
  /* Make mobile wrapper visible and horizontal */
  .savings-images-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    width: 100%;
    order: -1; /* Appear above text */
  }

  .savings-images-mobile img {
    max-height: 200px;
    width: auto;
  }

  .savings-banner {
    flex-direction: column;
    height: auto;
    padding: 50px 10px;
    max-height: 500px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .savings-text {
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .savings-text h2 {
    font-size: 2em;
    text-decoration: none;
  }
}




  /* Mobile Nav & Hero Adjustments */
  @media (max-width: 824px) {
    .hero-logo {
      max-width: 450px;
      margin-bottom: 20px;
    }
  
    .hero h1 {
      font-size: 2em;
      padding: 0 30px;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      display: none;
    }
  }
  




  
  @media (max-width: 750px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }



  .menu-overlay.active {
    display: flex; /* only show when active */
  }
 
  .photogrid-title {
   
    font-size: 1.5rem;

  }




  .testimonial-carousel {
   width: 90%;
  }

  .site-footer {
    min-height: 500px; /* for large screens */
    height: auto;
  }
  }



  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.5rem;
      padding: 0 10px;
    }
  
    .hero-btn {
      font-size: 1.1rem;
      padding: 8px 20px;
    }
  }




  @media (max-width: 414px) {
    /* Hero logo scaling */
    .hero-logo {
      max-width: 380px;
      height: auto;
    }
  
    /* Ensure hero text stays readable too */
    .hero h1 {
      font-size: 1.6rem;
      padding: 0 15px;
    }
  
    /* Footer height grows with content instead of fixed */
    .site-footer {
      height: auto;
      padding-bottom: 60px; /* give some bottom breathing room */
    }
  }