/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5vw;
  background-color: #000;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

/* Company Name Styling */
.company-name {
  font-size: 2.5rem; /* Increase font size */
  font-weight: bold;
  font-family: 'Poppins', sans-serif; /* Use a modern sans-serif font */
  background: linear-gradient(90deg, #d4af37, #bf9b30); /* Gold gradient */
  -webkit-background-clip: text; /* Clip the gradient to the text */
  -webkit-text-fill-color: transparent; /* Remove fill color */
  text-transform: uppercase; /* Make the text uppercase */
}

.logo {
  height: 50px;
  width: auto;
  margin-right: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.6);
}

.company-name {
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}


/* Menu */
.menu {
  display: flex;
  gap: 10px;
}

.menu-button,
.dropdown-button {
  background: #ffc107;
  color: black;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 25px;
  font-size: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.menu-button:hover,
.dropdown-button:hover {
  background: #e0a806;
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.5);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* Position below the button */
  left: 0;
  background-color: #000;
  color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  z-index: 1000;
}

.dropdown-content a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #e0a806;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease; /* Smooth appearance */
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hamburger Menu: Responsive */
.menu-toggle {
  display: none; /* Initially hidden */
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #ffc107;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .menu {
    display: none; /* Hide menu on mobile initially */
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 70px;
    right: 5vw;
    width: 90vw;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  }

  .menu.show {
    display: flex; /* Show when toggled */
  }

  .dropdown-content {
    position: static;
    width: 100%;
  }

  .logo {
    height: 40px;
  }

  .menu-toggle {
    display: flex; /* Hamburger menu visible only on mobile */
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  font-family: "Arial", sans-serif;
}

/* Background Image */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('ne.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.5);
  z-index: -1;
}

/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-text h3 {
  font-size: 1.2rem;
  color: #ffd700; /* Golden color for intro text */
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff; /* White for title */
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1rem;
  color: #ddd; /* Light gray for description */
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Explore Button */
.explore-button {
  display: inline-block;
  background: #ffd700; /* Golden background */
  color: #121212; /* Dark text for contrast */
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.explore-button:hover {
  background: #e6b800; /* Slightly darker golden hover effect */
  color: #000; /* Black text on hover */
}

/* Badges */
.badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge i {
  font-size: 2rem;
  color: #ffd700; /* Golden icons */
  margin-bottom: 10px;
}

.badge p {
  font-size: 0.9rem;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 40px 0;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .badges {
    flex-wrap: wrap;
    gap: 15px;
  }
}


/* About Us Section */
.about-us {
  background: linear-gradient(145deg, #121212, #1b1b1b); /* Rich dark gradient */
  color: #fff; /* White text for readability */
  padding: 50px 20px;
  font-family: "Arial", sans-serif;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Text Content */
.about-us-text {
  flex: 1;
  max-width: 600px;
}

.section-intro {
  font-size: 1rem;
  color: #ffd700; /* Golden color for intro text */
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff; /* White for title */
  margin-bottom: 20px;
}

.section-description {
  font-size: 1rem;
  color: #ddd; /* Light gray for description */
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn-more-button {
  display: inline-block;
  background: #ffd700; /* Golden background */
  color: #121212; /* Dark text for contrast */
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.learn-more-button:hover {
  background: #e6b800; /* Slightly darker golden hover effect */
  color: #000; /* Black text on hover */
}

/* Images */
.about-us-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 500px;
}

.about-us-images img {
  width: 100%;
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Subtle shadow */
}

/* Primary image styling */
.image-primary {
  aspect-ratio: 16 / 9; /* Maintain aspect ratio */
  object-fit: cover;
}

/* Secondary image styling */
.image-secondary {
  aspect-ratio: 4 / 3; /* Maintain aspect ratio */
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us-container {
    flex-direction: column;
    text-align: center;
  }

  .about-us-text {
    max-width: 100%;
  }

  .about-us-images {
    max-width: 100%;
  }
}


/* Places Section */
.places-section {
  position: relative;
  padding: 0;
  color: white;
  text-align: center;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('ne.jpg') no-repeat center center/cover;
  z-index: -1;
}

.section-header {
  z-index: 1;
}

.section-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.section-subtitle {
  font-size: 1.4rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Grid Layout */
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 40px;
  justify-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
  z-index: 1;
}

/* Place Card */
.place-card {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background-color: #333; /* Fallback color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
  background-size: cover; /* Ensure background image covers the card */
  background-position: center; /* Center the background image */
  will-change: transform; /* Improves performance during hover */
  opacity: 0; /* Initially hidden */
  transform: translateY(-100px); /* Start above its position */
  animation: dropIn 0.8s ease-out forwards; /* Drop animation */
}

/* Hover Effect */
.place-card:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}

/* Overlay for Cards */
.place-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  transition: background 0.3s ease;
}

.place-card:hover .place-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

/* Translucent Belt */
.place-belt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: rgba(255, 193, 7, 0.8);
  padding: 20px;
  position: absolute;
  bottom: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.place-card:hover .place-belt {
  transform: translateY(-15px);
  opacity: 1;
}

/* Icon and Place Name */
.location-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: black;
}

.place-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: black;
}

/* Keyframes for Drop-In Animation */
@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-100px); /* Start above its position */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at its original position */
  }
}

/* Staggered Animation for Cards */
.place-card:nth-child(1) {
  animation-delay: 0s; /* First card */
}
.place-card:nth-child(2) {
  animation-delay: 0.2s; /* Second card */
}
.place-card:nth-child(3) {
  animation-delay: 0.4s; /* Third card */
}
.place-card:nth-child(4) {
  animation-delay: 0.6s; /* Fourth card */
}
.place-card:nth-child(5) {
  animation-delay: 0.8s; /* Fifth card */
}
.place-card:nth-child(6) {
  animation-delay: 1s; /* Sixth card */
}

/* Responsive Design */
@media (max-width: 768px) {
  .places-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row for smaller screens */
  }

  .place-card {
    height: 260px; /* Adjust card height */
  }

  .place-name {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .places-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 card per row for very small screens */
  }

  .place-card {
    height: 220px;
  }

  .place-name {
    font-size: 1.2rem;
  }
}


/* Car Rentals Section */
.car-rentals {
  background: #1b1b3a; /* Dark blue background specific to this section */
  padding: 50px 20px;
  text-align: center;
}

.car-rentals h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ffd700; /* Yellow color for the section header */
}

.car-rentals-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff;
}

/* Car Rentals Grid */
.car-rentals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Card Styles */
.car-card {
  background: #2c2c54;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  opacity: 0; /* Initially hidden */
  transform: rotateY(90deg); /* Start in a rotated state */
  transition: opacity 1s ease, transform 1s ease, box-shadow 0.3s ease; /* Smooth fade-in and flip effect */
}

.car-card.visible {
  opacity: 1; /* Fully visible */
  transform: rotateY(0); /* Reset position */
}

.car-card img {
  width: 100%;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
}

.car-card h3 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #fff; /* White color for the card headers */
}

.car-description {
  font-size: 0.9rem;
  color: #aaa;
  margin: 10px 0;
}

/* Features Section */
.car-features {
  display: flex;
  justify-content: space-between; /* Evenly distribute icons */
  margin: 15px 0;
  gap: 5px; /* Add consistent spacing between icons */
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
}

.feature i {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  font-size: 1.2rem;
  margin-bottom: 5px; /* Ensure uniform spacing below icons */
}

.feature span {
  margin-top: 5px; /* Add space between icon and label */
}

/* Buttons */
.car-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0;
  width: 250px; /* Fixed width for the button container */
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.car-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  color: #fff;
  height: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 50%; /* Each button takes half of the total container width */
}

.car-button i {
  font-size: 1.2rem;
  transition: opacity 0.3s ease; /* Add smooth fade effect for icons */
}

.car-button span {
  position: absolute;
  opacity: 0; /* Text is hidden initially */
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Call Button */
.call-button {
  background: #ffffff;
  color: #000000; /* Black for icon */
}

.call-button:hover {
  background: #007bff;
  width: 60%; /* Expands towards the left */
}

.call-button:hover i {
  opacity: 0; /* Hide icon on hover */
}

.call-button:hover span {
  opacity: 1; /* Show text on hover */
}

/* WhatsApp Button */
.whatsapp-button {
  background: #25d366;
  color: #ffffff;
}

.whatsapp-button:hover {
  background: #1ba94c;
  width: 60%; /* Expands towards the right */
}

.whatsapp-button:hover i {
  opacity: 0; /* Hide icon on hover */
}

.whatsapp-button:hover span {
  opacity: 1; /* Show text on hover */
}

/* Services Section */
.services {
  background: linear-gradient(145deg, #1b1b1b, #121212); /* Dark gradient background */
  padding: 60px 20px;
  color: #fff; /* White text by default */
  text-align: center;
}

.services-title {
  font-size: 2.8rem;
  color: #f5c542; /* Golden color for title */
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.services-subtitle {
  font-size: 1.2rem;
  color: #bfbfbf; /* Greyish text for subtitle */
  margin-bottom: 40px;
  font-family: "Roboto", sans-serif;
}

/* Grid Styling */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Card Styling */
.service-card {
  background: rgba(255, 255, 255, 0.05); /* Transparent white background */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Soft shadow for premium look */
  transform-origin: center; /* Ensure the transform happens relative to the center */
  opacity: 0; /* Initially hidden */
  transform: rotateY(90deg); /* Start in a rotated state (hidden) */
  transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.3s ease; /* Smooth transitions */
  text-align: left;
}

/* Flip Animation: When the card comes into view */
.service-card.in-view {
  transform: rotateY(0); /* Rotate to normal state */
  opacity: 1; /* Visible */
}

/* Hover Effect: Slight upward movement */
.service-card:hover {
  transform: translateY(-10px); /* Move slightly up on hover */
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5); /* Enhanced shadow effect */
}

/* Icon Styling */
.service-icon {
  width: 60px;
  height: 60px;
  background: #f5c542; /* Golden background for icon */
  color: #1b1b1b; /* Dark icon color */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-icon i {
  font-size: 1.8rem;
}

/* Typography Inside Cards */
.service-card h3 {
  font-size: 1.5rem;
  color: #f5c542; /* Golden color for headings */
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  text-align: left;
}

.service-card p {
  font-size: 0.95rem;
  color: #d9d9d9; /* Light grey text for description */
  line-height: 1.6;
  text-align: left;
  margin-top: 0; /* Align descriptions properly */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-title {
    font-size: 2.2rem;
  }

  .services-subtitle {
    font-size: 1rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}




/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(145deg, #1b1b1b, #121212); /* Dark gradient background */
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 2.8rem;
  color: #f5c542; /* Golden color for title */
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #bfbfbf; /* Greyish text for subtitle */
  margin-bottom: 40px;
  font-family: "Roboto", sans-serif;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Card Styling */
.feature-card {
  background: rgba(255, 255, 255, 0.05); /* Transparent white background */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Soft shadow for premium look */
  opacity: 0; /* Initially hidden */
  transform: rotateY(90deg); /* Start in a rotated state */
  transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.3s ease;
  text-align: center;
}

/* Flip Animation: When the card comes into view */
.feature-card.in-view {
  opacity: 1; /* Become fully visible */
  transform: rotateY(0); /* Rotate to normal state */
}

/* Hover Effect: Slight upward movement */
.feature-card:hover {
  transform: translateY(-10px); /* Lift effect on hover */
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5); /* Enhanced shadow effect */
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #f5c542; /* Golden color for headings */
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
}

.feature-card p {
  font-size: 0.95rem;
  color: #d9d9d9; /* Light grey text for description */
  line-height: 1.6;
}

/* Feature Icon Styling */
.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #f5c542; /* Golden background for icon */
  color: #1b1b1b; /* Dark icon color */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin: 0 auto 15px;
}

.feature-icon-wrapper i {
  font-size: 1.8rem;
}

/* Responsiveness */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}


/* Gallery Section */
.gallery-section {
  position: relative;
  padding: 70px 20px;
  background: linear-gradient(145deg, #0c1a3a, #122b50); /* Navy blue gradient */
  color: #e0e0e0; /* Light silver text */
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.gallery-title {
  font-size: 2.8rem;
  color: #a8d0e6; /* Light blue for the title */
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.gallery-subtitle {
  font-size: 1.2rem;
  color: #c0c0c0; /* Silver for subtitle */
  margin-bottom: 40px;
  font-family: "Roboto", sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Carousel Styles */
.carousel {
  position: relative;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-image {
  width: 300px; /* Set fixed width */
  height: 200px; /* Set fixed height */
  object-fit: cover; /* Crop and adjust inside the frame */
  border-radius: 10px; /* (Optional) Soft rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* (Optional) Nice shadow effect */
}

/* Navigation Buttons */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  padding: 10px;
}

.carousel-button-left {
  left: 10px;
}

.carousel-button-right {
  right: 10px;
}

.carousel-button:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* Indicators */
.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  background: #ccc;
  border: none;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.carousel-indicator.current-slide {
  background: #444;
}

.carousel-indicator:hover {
  background: #666;
}

/* Decorative Elements */
.gallery-decor {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05); /* Subtle decorative circles */
  z-index: 0;
}

.gallery-decor-left {
  top: -50px;
  left: -50px;
}

.gallery-decor-right {
  bottom: -50px;
  right: -50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 2.2rem;
  }

  .gallery-subtitle {
    font-size: 1rem;
  }

  .carousel {
    width: 90%;
  }

  .carousel-button {
    font-size: 1.5rem;
    padding: 8px;
  }

  .carousel-nav {
    margin-top: 10px;
  }

  .gallery-decor {
    width: 150px;
    height: 150px;
  }
}


/* Review Section */
#reviews.review-section {
  position: relative;
  padding: 70px 20px;
  background: linear-gradient(145deg, #0e141b, #16222f);
  color: #e0e0e0;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

#reviews .review-title {
  font-size: 2.8rem;
  color: #4fbdbd;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

#reviews .review-subtitle {
  font-size: 1.2rem;
  color: #bfcacf;
  margin-bottom: 40px;
  font-family: "Roboto", sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Image Carousel */
#reviews .image-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 0;
}

/* Images */
#reviews .carousel-image {
  flex: 0 0 250px;
  height: 200px;
  object-fit: contain;
  background-color: #1c2a38;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}

#reviews .carousel-image:hover {
  transform: scale(1.05);
}

/* Decorative Elements */
#reviews .review-decor {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

#reviews .review-decor-left {
  top: -50px;
  left: -50px;
}

#reviews .review-decor-right {
  bottom: -50px;
  right: -50px;
}

/* Responsiveness */
@media (max-width: 768px) {
  #reviews .review-title {
    font-size: 2.2rem;
  }

  #reviews .review-subtitle {
    font-size: 1rem;
  }

  #reviews .carousel-image {
    flex: 0 0 45%;
    height: 180px;
  }
}




/* Location Section */
.location-section {
  padding: 70px 50px;
  background: #000000;
  text-align: center;
  color: #ffffff; 
}

.location-title {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ffffff; 
}

.location-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.map-container {
  flex: 1 1 500px;
  max-width: 600px;
  height: 350px; 
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 
}

.address-container {
  flex: 1 1 300px;
  text-align: left;
}

.business-address,
.business-hours {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffffff; 
}

.business-hours p {
  margin: 5px 0;
}

.get-directions-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1.2rem;
  color: #ffffff;
  background: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.get-directions-button:hover {
  background: #0056b3;
}

/* how to book Section Styling */
.steps-to-book {
  background: #f9f9f9; /* Light gray background */
  padding: 50px 20px;
  text-align: center;
  font-family: "Arial", sans-serif;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-intro {
  font-size: 1rem;
  color: #ffd700; /* Golden color */
  text-transform: uppercase;
  margin-bottom: 10px;
}

.steps-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}

/* Steps Grid */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Step Cards */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  text-align: center;
}

.step-icon {
  font-size: 3rem;
  color: #000; /* Black icons */
  margin-bottom: 10px;
}

.step p {
  font-size: 1rem;
  color: #333; /* Dark gray text */
  margin: 0;
}

/* Arrows */
.arrow {
  font-size: 2rem;
  color: #000; /* Black arrow */
}

/* Responsive Design */
@media (max-width: 768px) {
  .steps-grid {
    flex-wrap: wrap;
    gap: 30px;
  }

  .arrow {
    display: none; /* Hide arrows on smaller screens for simplicity */
  }
}

/* Footer */
.footer {
  background: linear-gradient(145deg, #0c0b30, #12142a); /* Premium navy-blue gradient */
  color: #fff; /* White text */
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Section Titles */
.footer-section h3 {
  color: #ffd700; /* Gold for section headings */
  margin-bottom: 10px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

/* Social Media Section */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.5rem;
  color: #fff;
  background: #444; /* Dark grey background for icons */
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
  background: #ffd700; /* Gold hover effect */
  color: #12142a; /* Dark navy icon color on hover */
}

.social-icons a i {
  vertical-align: middle;
}

/* Contact Info Section */
.contact-info p {
  margin: 5px 0;
  color: #ccc; /* Light grey text */
}

.contact-info a {
  color: #ffd700; /* Gold for links */
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Quick Links Section */
.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links ul li {
  margin: 5px 0;
}

.quick-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links ul li a:hover {
  color: #ffd700; /* Gold hover */
}

/* Map Section */
.map iframe {
  border: 2px solid #ffd700; /* Gold border around the map */
  border-radius: 10px;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-bottom a {
  color: #ffd700;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}