* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #0d0d0d;
}

/* Navbar Styles */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-img {
  width: 40px; /* Adjust size as per requirement */
  height: auto;
  margin-right: 10px; /* Space between logo and text */
}

.logo a {
  color: #ffd700;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 50%;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: bold;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #5c4033;
}

.nav-links a.active {
  color: white;
  border-bottom: 2px solid #5c4033;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 20px 0;
}

.carousel-slide {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 33.33%;
  height: 100%;
  display: flex;
  position: relative;
  display: none;
}

.slide.active {
  display: flex;
}

.slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  background-color: #0d0d0d;
  color: #333;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 80%;
  color: #e6b800;
}

.slide-btn {
  padding: 12px 30px;
  background-color: #ffd700;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-btn:hover {
  background-color: #5c4033;
  transform: scale(1.05);
}

.slide-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.carousel-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.prev-btn,
.next-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #4caf50;
  transform: scale(1.2);
}

.text-container {
  text-align: justify;
  margin: 0 auto;
  width: 80%; /* Adjust width */
  padding: 20px;
  color: #ffffff;
}

.video-container {
  width: 100vw; /* Full width of the viewport */
  max-height: 500px; /* Set a fixed height (adjust as needed) */
  overflow: hidden; /* Prevents any overflow */
}

video {
  width: 100%; /* Make video take full container width */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensure proper alignment */
  object-fit: cover; /* Covers the container without stretching */
}

/* Cards Styles */
.cards-section {
  padding: 50px 20px;
  background-color: #0d0d0d;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #f7e7ce;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #5c4033;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-img {
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon {
  font-size: 4rem;
  color: white;
}

.card-content {
  padding: 25px;
  background-color: #faf0dc;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.card-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffd700;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background-color: #5c4033;
}

.card {
  width: 100%; /* or desired width */
  border-radius: 10px;
  overflow: hidden; /* IMPORTANT: This clips image corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.card img {
  width: 100%;
  height: 200px; /* Set height as per your design */
  object-fit: cover; /* Ensures image covers area without stretching */
  display: block;
}
.card:hover .card-img img {
  transform: scale(1.05); /* Small zoom effect on hover */
}

.content {
  padding: 2rem;
  text-align: center;
  color: #e6b800;
}

.content h1 {
  margin-bottom: 1rem;
  color: #ffd700;
}



.footer {
  background-color: #2d2d2d;
  color: white;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 300px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.footer-section h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.3em;
  border-bottom: 2px solid #5c4033;
  padding-bottom: 5px;
  display: inline-block;
}

.footer-section p {
  margin-bottom: 15px;
}

.contact span {
  display: block;
  margin-bottom: 10px;
  margin-left: -9px;
}

.socials {
  margin-top: 20px;
}

.socials a {
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
  transition: all 0.3s;
}

.socials a:hover {
  background: #5c4033;
  transform: scale(1.1);
}

.links ul {
  list-style: none;
}

.links ul li {
  margin-bottom: 10px;
  transition: all 0.3s;
}

.links ul li:hover {
  margin-left: 10px;
}

.links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s;
}

.links ul li a:hover {
  color: #5c4033;
}

.contact-form {
  text-align: left; /* Align text to the left */
  width: 300px; /* Optional: Set width */
  margin: 0 auto; /* Center the form box but keep content left-aligned */
}

.contact-input {
  width: 100%; /* Make input fields fill width */
  margin-bottom: 15px; /* Space between inputs */
  padding: 10px;
}

.btn {
  background-color: yellow;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.contact-form .text-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
}

.contact-form textarea {
  height: 100px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px; /* Adds gap between label and input */
  font-weight: bold; /* Optional: Make labels bold */
}

.contact-input {
  width: 100%;
  margin-bottom: 15px; /* Space between input fields */
  padding: 10px;
}

.btn {
  padding: 10px 15px;
  background: hsl(51, 100%, 50%);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: #5c4033;
}

footer {
  width: 100% !important;
  text-align: center !important;
}

.footer-bottom {
  width: 100% !important;
  text-align: center !important;
  display: block !important;
  margin: 0 auto !important;
}

.footer-bottom p {
  font-size: 20px !important;
  /* font-weight: bold !important; */
  margin: 0 auto !important;
  text-align: center !important;
  display: inline-block !important;
}

.socials {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;
  gap: 15px; /* Space between icons */
  margin-top: 20px; /* Space above icons (optional) */
}

.social-icon {
  width: 30px; /* Adjust icon size if needed */
  height: 30px;
}

.socials {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.socials a {
  display: inline-block;
  margin-right: 15px;
  transition: all 0.3s;
}

.socials a:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 24px; /* Reduced from 35px */
  height: 24px; /* Reduced from 35px */
  border-radius: 4px;
}

/* Media Query for Responsive Design */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .nav-links {
    position: absolute;
    right: 0;
    height: 92vh;
    top: 8vh;
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }

  .nav-links li {
    opacity: 0;
  }

  .burger {
    display: block;
  }

  .nav-active {
    transform: translateX(0%);
  }

  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }

  .carousel-container {
    height: 400px;
  }

  .slide {
    flex-direction: column;
  }

  .slide-content,
  .slide-image {
    flex: none;
    width: 100%;
    height: 50%;
  }

  .slide-content {
    padding: 20px;
    text-align: center;
    align-items: center;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .cards-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .socials {
    display: flex;
    justify-content: center;
  }

  .contact-form {
    width: 100%;
  }


  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    padding: 10px 20px;
    color: white;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links li {
    list-style: none;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }
  
  /* Mobile View */
  @media screen and (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: black;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      z-index: 999;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  


}