/* ======== RESET AND BASE STYLES ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #121212;
  font-family: 'Poppins', sans-serif;
  color: #ccc;
  overflow-x: hidden;
}

/* Main content should grow */
main {
  flex: 1;
  padding-top: 100px;
}

/* ======== HEADER ======== */
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
main {
  padding-top: 120px; /* same height as your header to avoid overlap flicker */
}

.home-page .top-bar {
  background-color: rgba(35, 31, 32, 0.7); /* semi-transparent */
  background-image: none; /* remove the event-banner.jpg */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(rgba(35, 31, 32, 0.85), rgba(35, 31, 32, 0.85)),
              url('images/event-banner.jpg') center center / cover no-repeat;
  padding: 10px 150px;
  height: 100px;
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  overflow: visible;
  color: white;
}
.top-bar {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ========== LOGO & COMPANY NAME ========== */
.top-left.logo a {
  display: flex;
  align-items: center;
  text-decoration: none; /* removes underline */
  color: white; /* or your preferred color */
  font-family: 'Qanelas', 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 27px;
  gap: 12px;
}

.top-left.logo img {
  animation: logoSlideIn 1s ease-in-out;
}

@keyframes logoSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 600;
  font-size: 1.6rem;
  text-decoration: none;
  color: white;
}

.logo img {
  height: 55px;
}
.logo span {
  text-decoration: none;
}

/* ======== NAVIGATION ======== */
.top-middle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  pointer-events: none;
}

.nav-links {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(200px);
  display: flex;
  gap: 28px;
  margin-bottom: 2px;
  pointer-events: auto;
  white-space: nowrap;
  z-index: 100;
}

.nav-links a {
  text-decoration: none;
  color: #06B5F3;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  will-change: background-color, color;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-links a.active {
  color: white;
  background-color: rgba(6, 181, 243, 0.2);
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: white;
  background-color: rgba(6, 181, 243, 0.15);
}

/* ======== SOCIAL & CONTACT ======== */

.social-contact {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  font-family: 'Qanelas';
  gap: 18px;
  height: 100%;
  pointer-events: auto;
  z-index: 10;
  padding-right: 12px;

  }
.events-section {
  background-color: #111;
  color: white;
  padding: 125px 30px;
  text-align: center;
}

.events-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #EF3D47;
}

.events-intro p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
 
}

.scroll-gallery {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 40s linear infinite;
  width: max-content;
}


@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.events-heading {
  font-size: 2rem;
  color: #fff;
  margin-top: 100px; /* Adds space below nav bar */
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.gallery-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out;
  display: block;
}
.gallery-track {
  display: flex;
  flex-shrink: 0;
}
.gallery-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1500px;
  margin: auto;
  position: relative;
}

.gallery-container {
  width: 100%;
  max-width: 1500px;
  height: 60vh; /* Increased from 50vh */
  overflow: hidden;
  background-color: black;
  border-radius: 20px;
  position: relative;
}

#galleryImage {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 20px;
  display: block;
  transition: opacity 0.8s ease-in-out;
}
#scrollable-gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 500px; /* Increase this to make gallery taller */
}

#galleryTrack img {
  height: 100%;
  width: auto;
  border-radius: 20px; /* Rounded images */
  object-fit: cover;
}

.scroll-btn {
  font-size: 40px;
  background: none;
  border: none;
  color: #EF3D47;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
}

.fade-out {
  opacity: 0;
}

.scroll-btn:hover {
  transform: scale(1.2);
}

.scroll-btn.left {
  margin-right: 10px;
}

.scroll-btn.right {
  margin-left: 10px;
}
.gallery-container:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-track img {
  height: 200px;
  margin-right: 10px;
  border-radius: 10px;
  transition: transform 0.3s;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.gallery-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.nav {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.nav.left {
  position: absolute;
  left: 10px;
}

.nav.right {
  position: absolute;
  right: 10px;
}


.about-section {
  background-color: #111;  /* Dark background */
  color: #eee;             /* Light text */
  padding: 140px 20px 60px;
  max-width: 900px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
}
.sales-content {
  max-width: 100%;
  margin: 150px auto 60px;
  padding: 20px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.sales-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #EF3D47;
}

.sales-content p {
  margin-bottom: 1.2em;
}

.about-section h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #06B5F3;
  text-align: center;
}

.about-subheading {
  text-align: center;
  margin-bottom: 40px;
}

.about-contact-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #06B5F3;
  text-decoration: none;
  transition: 0.2s ease;
}

.about-contact-link:hover {
  color: white;
  text-decoration: underline;
}
.map-embed {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.contact-form-section {
  margin-top: 50px;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  color: #fff;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: #06f3cc11;
}

.contact-form-section form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #333;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.contact-form-section button {
  background-color: #EF3D47;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form-section button:hover {
  background-color: #EF3D47;
}
.contact-button-wrapper {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 40px;
}

.contact-btn {
  display: inline-block;
  background-color: #0fda7b;
  color: white;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #048dc2;
}


.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons img {
  height: 20px;
  width: 20px;
  opacity: 1;
  margin-top: 5px;
}

.contact-number {
  color: #eb8181;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Qanelas';
  padding-top: 3px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  align-items: center;
  line-height: 1.4;
}

/* ======== HERO SECTION ======== */
.hero {
  height: 100vh;
  background: url("Home.JPG") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Hero Content Animation */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-top: 500px; /* Pushes everything a bit down */
  padding-bottom: 100px;
}


/* Hero Text */
.hero-content h1 {
  font-size: 48px;
  color: white;
  animation: fadeInText 1.5s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

/* Hero Button */
.hero-btn {
  padding: 14px 28px;
  font-size: 16px;
  background-color: #EC3B4A;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  animation: fadeInUp 2s ease-out forwards;
  animation-delay: 1s;
  opacity: 0;
}

.hero-btn:hover {
  background-color: #c72f3d;
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(60px);
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.highlighted {
  background-color: rgba(0, 0, 0, 0.18);
  padding: 10px 15px;
  border-radius: 5px;
}

.hero-btn {
  padding: 10px 20px;        /* Reduced padding */
  font-size: 14px;           /* Slightly smaller text */
  background-color: #EC3B4A;
  color: white;
  border: none;
  border-radius: 6px;        /* Slightly tighter corners */
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* ======== ABOUT US SECTION ======== */
.about-section {
  padding: 6rem 2rem 4rem;
  max-width: 960px;
  margin: 0 auto;
  background-color: #121212;
  color: #f0f0f0;
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #EF3D47;
}

.about-section p,
.about-section li {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

/* ======== FOOTER ======== */
footer {
  width: 100%;
  background-color: #292828;
  color: #ccc;
  text-align: center;
  font-size: 0.9rem;
  padding: 20px 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  left: 0;
}

/* ======== Rental page ======== */
.rental-section {
  max-width: 1000px;
  margin: -50px auto;
  padding: 0 20px;
  color: #f0f0f0;
  font-family: 'poppins';
  text-align: left;
  padding-top: 100px;
}

.rental-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #EF3D47;
}

.rental-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.rental-section img {
  max-width: 100%;
  margin-top: 30px;
  border-radius: 12px;
}

/* ======== Services page ======== */

.services-section {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 20px;
  color: #f0f0f0;
  font-family: 'poppins';
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #EF3D47;
}

.services-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.services-section img {
  max-width: 100%;
  margin-top: 30px;
  border-radius: 12px;
}

/* ======== Contact page ======== */
.contact-section {
  background-color: #111;
  color: #eee;
  padding: 140px 20px 60px;
  max-width: 900px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: 'Qanelas', sans-serif;
}

.contact-section h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #EF3D47;
  text-align: center;
  margin-bottom: 30px;
}

.contact-details {
  text-align: center;
  margin-bottom: 40px;
}

.contact-details p {
  margin-bottom: 12px;
}

.contact-details a {
  color: #06B5F3;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px;
  background-color: #111;
  border-top: 1px solid #333;
  gap: 30px;
}

.contact-footer-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: calc(25% - 30px);
  min-width: 250px;
  box-sizing: border-box;
}

.contact-footer-box img {
  width: 36px;
  height: 36px;
  object-fit: contain;  /* maintains aspect ratio */
  flex-shrink: 0;        /* prevents shrinking in flex layout */
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin: 8px 0;
}

.footer-social-icons img {
  width: 20px;
  height: 20px;
  opacity: 0.85;
  object-fit: contain;
  display: inline-block;
}
.footer-social-icons img {
  all: unset;
  width: 20px !important;
  height: 20px !important;
  display: inline-block;
  object-fit: contain;
  opacity: 0.85;
}
.contact-footer-box p,
.contact-footer-box a,
.contact-footer-box h4 {
  font-size: 15px !important; /* or 14px if you want a small bump */
}

@media (max-width: 768px) {
  .contact-footer {
    flex-direction: column;
    padding: 30px;
  }

  .contact-footer-box {
    width: 100%;
  }
}
.first-box {
  margin-left: 150px; /* adjust as needed */
}
.map-link {
  margin-top: 25px;
}

.map-link a {
  color: #06B5F3;
  text-decoration: none;
}

.map-link a:hover {
  text-decoration: underline;
}

.map-container iframe {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: block;
}


.about-subheading {
  text-align: center;
  margin-bottom: 40px;
}

.about-contact-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #06B5F3;
  text-decoration: none;
  transition: 0.2s ease;
}

.about-contact-link:hover {
  color: white;
  text-decoration: underline;
}

.about-section p:last-of-type {
  margin-bottom: -15px; /* Reduce space below the last paragraph */
}

.contact-button-wrapper {
  text-align: center;
  margin-top: 1px; /* Reduce the top space above the button */
}
.contact-btn {
    display: inline-block;
    background-color: #076a8f;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Qanelas', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #4ecdfc; /* Darker orange on hover */
  color: #fff;
}

/* ======== testimonials section ======== */
.google-review-wrapper {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.section-heading {
  font-size: 2.2rem;
  color: #EF3D47;
  font-family: 'Qanelas', sans-serif;
  margin-bottom: 30px;
}

/* Rental page enhancement*/
.page-hero {
  width: 100%;
  height: 300px; /* adjust as needed */
  background: url('images/rental-hero.jpg') no-repeat center center / cover;
  margin: 0;
  padding: -100;
  margin-bottom: 0;
}

.page-hero-content h1 {
  font-size: 2.5rem;
  margin: 0;
}

.page-hero-content p {
  font-size: 1.2rem;
  margin-top: 10px;
}
/* Events page enhancement*/
.scroll-btn {
  font-size: 40px;
  color: #EF3D47;
  background-color: transparent;  /* removed background */
  border: 2px solid #EF3D47;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn:hover {
  background-color: rgba(236, 59, 74, 0.08);  /* subtle hover highlight */
}

.scroll-btn.left {
  margin-right: 20px;  /* Increased from 20px */
}

.scroll-btn.right {
  margin-left: 20px;   /* Increased from 20px */
}

.site-footer {
  width: 100vw; /* force it to span the entire viewport width */
  margin: 0;
  padding: 20px 0;
  text-align: center;
  background-color: #181717;
  color: #ccc;
  font-size: 0.9rem;
  position: relative;
  left: 0;
}

.sales-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: 60px auto;
  padding: 20px;
  margin-top: 150px; /* Push content below the top bar */
}

.sales-text {
  flex: 1.3;
  min-width: 500px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
}

.sales-text h2 {
  margin-bottom: 20px;
  color: #EF3D47;
  font-size: 30px;
}

.sales-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.sales-image img {
  width: 150%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 150px;
}
.sales-content {
  padding-bottom: 40px; /* reduce from higher value */
}

/* Two-column container layout */

.service-icons {
  display: flex;
  flex-wrap: nowrap; /* keeps them side by side */
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;

  max-width: 1400px;   /* limit max width */
  margin: 150px 500px;      /* centers the icon row */
  padding: 0px 0px;  /* adds inner spacing (especially on left/right) */
  box-sizing: border-box;
  width: 100%;
  padding-top: 10px;
  margin-top: 30px;
}

.services-section {
  width: 100%;
  padding: 40px 0 0; /* Reduced top padding */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
}
.services-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 2.5rem;
  color: #EF3D47;
  margin-top: 40px;     /* Reduced from 100px */
  margin-bottom: 20px;  /* Add small bottom margin */
}


.service-item {
  flex: 1 1 48%;
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: #ccc;
  min-width: 400px; /* ensures it doesn't collapse too much */
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .service-icons {
    flex-direction: column;
    padding: 30px 20px;
  }

  .service-item {
    width: 100%;
    max-width: none;
  }
}

.service-item img {
  width: 70px;
  margin-bottom: 20px;
}

.service-item h3 {
  color: #EF3D47;
  margin-bottom: 15px;
  font-size: 22px;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  margin-bottom: 6px;
}

.footer-social-icons img {
  height: 18px;
  width: 18px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-social-icons img:hover {
  opacity: 1;
}
.hamburger {
  display: block;
}

.mobile-nav {
  display: none;
}

  /*Mobile view style*/

@media (max-width: 768px) {
  /* Top Bar Defaults for all pages */
 .top-bar {
    position: relative;
    padding: 0 12px;
    background-color: rgba(35, 31, 32, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* important: aligns logo to bottom */
    height: 80px; /* Adjust as needed */
    position: relative !important;
  }

  /* Override only for home page */
  body.home-page .top-bar {
    background-color: rgba(35, 31, 32, 0.7);
    background-image: none;
    position: absolute;
    top: 0;
    left: 0;
  }

  .top-left.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 12px;
    margin-top: 0; /* Keep margin consistent */
    padding-bottom: 4px; /* previously was 6px — reduced */
  }
 .top-left.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
  }

.top-left.logo span {
  font-size: 15px;
  font-weight: bold;
  color: white;
  margin-left: 6px;
}

.hamburger {
  display: block;
  position: absolute;
  bottom: 4px;   /* push to bottom */
  right: 12px;   /* stay at right edge */
  font-size: 26px;
  color: white;
  background: none;
  border: none;
  z-index: 2001;
  cursor: pointer;
}

  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 58px;
    right: 16px;
    width: 180px;
    background-color: #231f20;
    padding: 10px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2000;
  }

  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu a {
    padding: 10px 0;
    text-decoration: none;
    color: #06B5F3;
    font-size: 15px;
  }

 .social-contact {
    position: absolute;
    top: -20px; /* push to top */
    right: 2px; /* make room for hamburger */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    z-index: 1000;
  }

/* Social icons */
 .social-icons {
    display: flex;
    gap: 6px;
  }

  .social-icons img {
    width: 14px;
    height: 14px;
  }

  .contact-number {
    font-size: 13px;
    margin-left: 10px;
    color: #f06565;
    font-weight: 500;
    text-decoration: none;
  }
    .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 58px;
    right: 16px;
    width: 180px;
    background-color: #231f20;
    padding: 10px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2000;
  }

  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu a {
    padding: 10px 0;
    text-decoration: none;
    color: #06B5F3;
    font-size: 15px;
  }
   .top-middle,
  .desktop-nav {
    display: none !important;
  }

.gallery-container {
  width: 100%;
  max-height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; /* remove extra padding */
  margin: 0;
}

.gallery-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin: 0; /* remove vertical gaps */
  display: block;
}
.gallery-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  background-color: transparent;
  border: 2px solid #f06565;
  color: #f06565;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 2;
}

.scroll-btn.left {
  left: 12px;
}

.scroll-btn.right {
  right: 12px;
}

  .sales-highlight {
    flex-direction: column;
    margin-top: 100px;
    padding: 20px;
  }

  .sales-text {
    min-width: unset;
    width: 100%;
    font-size: 1.1rem;
  }

  .sales-image {
    width: 100%;
    text-align: center;
    margin-top: 20px;
   
  }

 .sales-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;      /* center it if needed */
  }
  .sales-content {
    padding: 0 10px 40px;
    margin-top: 60px;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
    color: #e0e0e0;
  }

  .sales-content h2 {
    font-size: 20px;
  }

  body {
    overflow-x: hidden !important;
  }
   .sales-image {
    order: -1; /* Move image before text */
    margin-top: 0; /* Remove extra top margin if needed */
    margin-bottom: 20px;
  }
  .sales-text {
    order: 0;
  }
  .services-section {
    margin-top: 70px; /* reduce from higher value */
    padding-top: 10px;
  }
  .service-icons{
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .service-item{
    width: 100%;
    padding: 15px;
  }
.rental-section {
    margin-top: 10px; /* reduce from higher value */
    padding-top: 10px;
  }
  .contact-footer {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .contact-footer-box {
    width: 100% !important;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
  }

  .contact-footer-box img {
    width: 28px;
    height: 28px;
    margin-top: 3px; /* aligns vertically with text */
  }

  .footer-social-icons {
    gap: 12px;
    margin-top: 6px;
  }

  .footer-social-icons img {
    width: 18px !important;
    height: 18px !important;
  }
  .footer-social-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-handle {
    font-size: 14px;
    color: white;
    font-weight: 500;
    white-space: nowrap;
  }
   iframe {
    height: 200px !important;
  }
}

@media (min-width: 769px) {
  .hamburger,
  .mobile-menu {
    display: none !important;
  }

  .top-middle {
    display: block;
  }
}











