/* General styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald';
    background-color: #000;
    color: #fff;
}

/* General header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 20px;
}

header .logo {
  color: #fff;
  padding-left: 20px;
}
header nav img{
  margin: 10px;
}
/* Desktop Navigation */
header nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  z-index: 99;
}

header nav ul li {
  margin-left: 80px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

header nav ul li a:hover {
  color: #e6c200;
}

/* Burger icon (hidden on desktop) */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Mobile View */
@media (max-width: 1200px) {
  /* Hide desktop menu */
  nav ul {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 80px;
      left: -100%;
      background-color: #333;
      transition: transform 0.5s ease-in-out;
      
  }

  /* Burger icon display */
  .burger {
      display: block;
  }

  /* When the menu is active */
  nav.active ul {
      display: flex;
      left: 0;
      transform: translateX(0);
  }

  nav ul li {
      margin: 20px 60px;
      text-align: center;
  }

  nav ul li a {
      font-size: 1.5rem;
  }

  /* Burger menu animation */
  .toggle .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
  }

  .toggle .line2 {
      opacity: 0;
  }

  .toggle .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* About Section */
.about-section {
    background-color: #000;
    color: #fff;
    padding: 0;
    z-index: -1;
  }
  
  .about-banner {
    position: relative;
    text-align: center;
  }
  
  .about-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  
  .about-banner h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: #fff;
    font-weight: bold;
    margin: 0;
  }
  



/* Video Section */
.video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.carousel {
  position: relative;
  width: 90%; /* Increased width for a larger carousel */
  max-width: 900px; /* Increased max width for larger screens */
  overflow: hidden;
  border: none;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  height: auto; /* Automatically adjusts height based on content */
  min-width: 100%; /* Ensures each slide occupies full width */
  flex-shrink: 0; /* Prevents shrinking */
  display: flex; /* Use flexbox for centering content */
  justify-content: center; /* Center iframe horizontally */
  align-items: center; /* Center iframe vertically */
  overflow: hidden; /* Hide overflowing content */
}

.carousel-slide iframe {
  width: 100%; /* Makes the video responsive */
  height: auto; /* Maintains aspect ratio */
  object-fit: contain; /* Prevents video distortion */
  aspect-ratio: 16 / 9; /* Enforces a standard video aspect ratio */
  max-width: 100%; /* Prevents exceeding container width */
  max-height: 100%; /* Prevents exceeding container height */
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.carousel-control.prev {
  left: 10px;
  font-size: 90px;
  color: white;
}

.carousel-control.next {
  right: 10px;
  font-size: 90px;
  color: white;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.indicator {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: lightgray;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator.active {
  background: gray;
}

/* Additional container for videos */
.video-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}





/* Reviews Section */
.reviews-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 25px 150px 150px 150px;
  background-color: #111;
}



.review-card {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.review-card:hover {
  transform: translateY(-7px);
}

.review-card img {
  width: 100%;
  height: auto; /* Make sure images scale properly */
  max-height: 200px;
  object-fit: cover;
}

.review-content {
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.review-content p {
  margin: 0 0 10px;
  font-size: 0.95em;
}

.reviewer-name {
  font-weight: bold;
  margin-top: 10px;
  color: #ecf0f1;
}

.rating {
  color: #FFD700;
  font-size: 1.2em;
}

/* Ensure full height of cards */
.review-card {
  min-height: 400px; /* Adjust as needed */
}


/* Contact Section */
.contact-section {
  padding: 50px;
  background-color: #333; /* Dark background */
  color: #fff;
}

/* Container for contact information and form */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* Ensures responsive layout */
  margin: 0 100px;
}

/* Media Query for Smaller Devices (up to 600px) */
@media (max-width: 600px) {
  .reviews-section {
    padding: 50px; /* Reduce padding for smaller screens */
    grid-template-columns: 1fr; /* Single column layout on mobile */
  }

  .contact-container {
    flex-direction: column; /* Stack items vertically on mobile */
    margin: 0 20px; /* Reduce margins for smaller screens */
  }
}

/* Media Query for Tablet Devices (600px - 1024px) */
@media (min-width: 600px) and (max-width: 1024px) {
  .reviews-section {
    padding: 25px 50px 50px 50px; /* Adjust padding for tablet screens */
  }

  .contact-container {
    flex-direction: column; /* Stack contact form and info on tablets */
    margin: 0 40px; /* Adjust margins for tablet screens */
  }
}

/* Contact Info Styles */
.contact-info {
  flex: 1;
  max-width: 50%;
  padding-right: 20px;
}

.contact-info h2 {
  font-size: 4em;
  margin-bottom: 20px;
  
}

.contact-info h3 {
  font-size: 1.8em;
  margin-bottom: 15px;

}

.contact-info p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.6;

}

.contact-info h4 {
  font-size: 1.5em;
  margin-bottom: 10px;

}

.phone-number {
  font-size: 2em;
  color: #ffd700; /* Yellow color */
  margin-bottom: 20px;

}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: center; /* Center icons */
}

.social-icons a {
  color: #fff;
  font-size: 2em;
  text-decoration: none;
}

/* Contact Form Styles */
.contact-form {
  flex: 1;
  max-width: 45%;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Layout */
.contact-form form {
  display: flex;
  flex-direction: column;
}

/* Form Group Styles */
.form-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

/* Input Styles */
.form-group input {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f0f0f0;
  color: #333;
}

/* Placeholder Text */
.form-group input::placeholder {
  color: #999;
}

/* Button Styles */
.btn-yellow {
  background-color: #ffd700; /* Yellow background */
  color: #000;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-yellow:hover {
  background-color: #e6c200;
}

/* Responsive Media Queries */

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
  .contact-container {
      flex-direction: column; /* Stack items vertically on mobile */
      margin: 0 20px; /* Reduce margin for mobile view */
  }

  .contact-info {
      max-width: 100%; /* Full width on mobile */
      padding-right: 0; /* Remove right padding */
      padding-left: 0; /* Remove left padding */
  }

  .contact-form {
    padding: 50px;
    max-width: 100%;
  }
  .contact-info h2 {
      text-align: center; /* Center text */
      font-size: 2.5em; /* Adjust title size for mobile */
  }

  .contact-info h3 {
    text-align: center; /* Center text */
      font-size: 1.5em; /* Adjust heading size for mobile */
  }

  .contact-info h4 {
    text-align: center; /* Center text */
      font-size: 1.3em; /* Adjust heading size for mobile */
  }

  .phone-number {
    text-align: center; /* Center text */
      font-size: 1.5em; /* Adjust phone number size for mobile */
  }

  .contact-form {
      padding: 20px; /* Reduce padding for mobile */
  }

  .btn-yellow {
      font-size: 1em; /* Adjust button size */
      padding: 10px 20px; /* Adjust button padding */
  }
}

/* Tablets (600px to 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  .contact-container {
      flex-direction: column; /* Stack items on tablets */
      margin: 0 40px; /* Slightly larger margin for tablets */
  }

  .contact-info,
  .contact-form {
      max-width: 100%; /* Full width on tablets */
  }

  .contact-info h2 {
      font-size: 3em; /* Adjust title size for tablets */
  }
}
