* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: "Exo", sans-serif;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.navigations {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navigations ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

a {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

a:hover {
  color: white;
  font-weight: bold;
}

nav .book_us {
  padding: 15px;
  border-radius: 10px;
  background-color: #cf1212;
  transition: all 0.3s ease;
  will-change: transform;
}

nav .book_us:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.carousel h1 {
  text-align: center;
  margin: 0 auto;
  line-height: 75vh;
  font-size: 10vmin;
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow: hidden;
  will-change: opacity;
}

.slide > * {
  transition: opacity 1.05s ease;
  opacity: 0;
}

.labels {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.logo {
  width: 75px;
  height: 75px;
}

.labels label {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  background: gray;
}

.carousel .one,
.carousel .two,
.carousel .three,
.carousel .four,
.carousel .five {
  background-position: center;
  background-size: cover;
}

.carousel .one {
  background-image: url("assets/images/hero_image.png");
}
.carousel .two {
  background-image: url("https://cdn.pixabay.com/photo/2018/05/30/00/24/thunderstorm-3440450__340.jpg");
}
.carousel .three {
  background-image: url("https://cdn.pixabay.com/photo/2016/10/14/19/21/canyon-1740973__340.jpg");
}
.carousel .four {
  background-image: url("https://cdn.pixabay.com/photo/2021/09/20/21/32/lake-6641880__340.jpg");
}
.carousel .five {
  background-image: url("https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__480.jpg");
}

#slide-btn-1:checked ~ .one,
#slide-btn-2:checked ~ .two,
#slide-btn-3:checked ~ .three,
#slide-btn-4:checked ~ .four,
#slide-btn-5:checked ~ .five {
  opacity: 1;
}

#slide-btn-1:checked ~ .one > *,
#slide-btn-2:checked ~ .two > *,
#slide-btn-3:checked ~ .three > *,
#slide-btn-4:checked ~ .four > *,
#slide-btn-5:checked ~ .five > * {
  opacity: 1;
}

#slide-btn-1:checked ~ .labels label[for="slide-btn-1"],
#slide-btn-2:checked ~ .labels label[for="slide-btn-2"],
#slide-btn-3:checked ~ .labels label[for="slide-btn-3"],
#slide-btn-4:checked ~ .labels label[for="slide-btn-4"],
#slide-btn-5:checked ~ .labels label[for="slide-btn-5"] {
  background-color: #cf1212;
}

.slide-btn {
  display: none;
}

/* Main Content */
.inner-content {
  padding: 0 6rem;
  max-width: 1600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Sponsors */
.sponsor-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  margin-top: 3rem;
}

.sponsor-track {
  --item-count: 10;
  display: flex;
  animation: scroll 20s linear infinite;
  width: calc(300px * var(--item-count));
  will-change: transform;
}

.sponsor-card {
  flex: 0 0 auto;
  width: 300px;
  height: 150px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
}

.sponsor-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sponsor-carousel:hover .sponsor-track {
  animation-play-state: paused;
}


.hero-wrap {
  position: relative;
  height: 90vh; /* Full viewport height */
  overflow: hidden;
}

.hero-video {
  min-width: 100%;
  min-height: 100%;
}

/* Who We Are */
.who-are-we-sect {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.who-are-we-sect .text-area,
.who-are-we-sect .image-area {
  flex: 1;
}

.who-are-we-sect .text-area h1 {
  margin: 2rem 0;
  font-size: 48px;
}

.who-are-we-sect .text-area p {
  line-height: 2rem;
  color: #0d0d0d;
}

.who-are-we-sect .image-area img {
  width: 100%;
  height: auto;
}

.CTA-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem;
}

.CTA-btn {
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: bold;
  color: white;
  background: #cf1212;
  font-size: large;
  transition: background 0.3s ease;
}

.CTA-btn:hover {
  background: #cf6868;
}

/* Experience */
.experience-wrap {
  display: flex;
  justify-content: space-between;
  background: #f9f8f8;
  padding: 2rem;
  margin: 4rem auto;
  max-width: 1240px;
  border-radius: 10px;
  gap: 1rem;
}

.experience {
  background: white;
  padding: 2rem 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
  width: 25%;
  min-width: 200px;
}

.experience h1 {
  margin-bottom: 2px;
  font-size: calc(24px + 2vw);
}

.experience-wrap #yrs-experience {
  border-radius: 18px 0 0 18px;
}

.experience-wrap #location-experience {
  border-radius: 0 18px 18px 0;
}

.experience p {
  font-weight: bold;
  font-size: smaller;
}

/* What We Do */
.what-we-do-sect .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.what-we-do-sect h1 {
  padding-left: 10%;
}

.what-we-do-sect .content {
  background: #f9f8f8;
  border-radius: 30px;
  padding: 3rem;
}

.what-we-do-sect .heading {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  align-items: center;
}

.what-we-do-sect .content h2 {
  font-weight: bold;
}

.what-we-do-sect .content img {
  padding: 10px;
  background: #000;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0;
}

/* General Typography */
h1 {
  font-size: 42px;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* Booking Section */
.booking-sect {
  background: #f9f8f8;
  padding: 3rem;
  margin: 3rem auto;
  border-radius: 28px;
  max-width: 1240px;
}

label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: block;
  color: #000;
  font-weight: 550;
}

.input-field,
input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #cf1212;
}

.input-flex {
  display: flex;
  gap: 1rem;
}

.input-flex div {
  flex: 1;
}

textarea {
  resize: vertical;
}

select {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

#categories {
  height: 50px;
  border: 1px solid #000;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: #fff;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="black" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}

#categories:focus {
  border-color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.book-now {
  background-color: #cf1212;
  color: white;
  border: none;
  cursor: pointer;
  padding: 1rem 3rem;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  margin: 0 auto;
  display: block;
  will-change: transform;
}

.book-now:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Video Section */
.videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  text-align: center;
}

.play-icon {
  position: absolute;
  top: 40%;
  right: 40%;
  height: 60px;
  width: 60px;
}

.video-thumbnail {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.01);
}

.video-title {
  font-weight: bold;
  font-size: 18px;
  margin: 5px 5px;
  text-align: left;
  padding-top: 10px;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: 90vw;
  max-width: 800px;
  min-height: auto;
}

.popup-video-iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
  color: #333;
}

.close-btn:hover {
  color: #cf1212;
}

/* See More Button */
.see-more {
  color: white;
  background: #000;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 14px;
  margin: 2rem auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  will-change: transform;
}

.see-more:hover {
  background: #333;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.center-btns {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

/* Client Feedback */
.client-feedback-section {
  background: #f9f8f8;
  padding: 4rem 2rem;
  text-align: center;
}

.client-feedback-section h1 {
  font-size: 42px;
  margin-bottom: 3rem;
  color: #333;
}

.feedback-slider {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-track {
  --slide-count: 4;
  display: flex;
  width: calc(100% * var(--slide-count) / 2); /* 200% on desktop */
  transition: transform 1s ease;
  will-change: transform;
}
.slider-item {
  flex: 0 0 50%; /* 2 cards visible */
  padding: 0 15px;
}
@media (max-width: 768px) {
  .slider-track {
    width: calc(100% * var(--slide-count)); /* 400% on mobile */
  }
  .slider-item {
    flex: 0 0 25%; /* 1 card visible */
  }
}

.testimonial-card {
  display: flex;
  background: white;
  padding: 3rem;
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  height: 100%;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.empty,
.testimonials-text {
  flex: 1;
}

.testimonials-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
  text-align: left;
}

.testimonials-text h2 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: left;
}

.testimonials-text p:last-of-type {
  font-size: 1rem;
  color: #777;
}

#mobile-cta {
  display: none;
}

#web-cta {
  padding-top: 2rem;
}

.quote-icon {
  position: absolute;
  top: -10px;
  right: 10px;
  width: 40px;
  height: 40px;
}

.user-img {
  position: absolute;
  top: 0;
  left: 20px;
  width: 250px;
  height: 400px;
  object-fit: cover;
}

.feedback-radio-controls {
  text-align: center;
  margin-top: 20px;
}

.feedback-radio {
  display: none;
}

.feedback-radio-controls label {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.feedback-radio:checked + label {
  background-color: #cf1212;
}

/* Footer */
footer {
  background: #000;
  color: #f3f3f3;
  padding: 4rem 3rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
}

.Copyright-footer {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  padding-top: 5rem;
}

.get-in-touch {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 24px;
}

/* Responsive */
@media (max-width: 1447px) {
  .booking-sect {
    max-width: 1000px;
  }
}

@media (max-width: 1227px) {
  .booking-sect {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 946px) {
  .booking-sect {
    max-width: 500px;
  }
  .what-we-do-sect .container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 2rem;
    background-color: transparent;
  }

  .hamburger {
    display: block;
  }

  .navigations {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    z-index: 1000;
  }

  .navigations.active {
    display: block !important;
    transform: translateX(0) !important;
  }

  .navigations ul {
    flex-direction: column;
    gap: 20px;
  }

  .navigations li {
    width: 100%;
    text-align: center;
  }

  .navigations a {
    font-size: 16px;
    padding: 10px 0;
    display: block;
  }

  .navigations a:hover {
    color: #cf1212;
  }

  nav .book_us {
    margin-top: 10px;
    width: 100%;
    padding: 12px;
  }

  body.nav-active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .inner-content {
    padding: 0 2rem;
  }

  .sponsor-card {
    width: 150px;
    height: 80px;
  }

  .sponsor-track {
    width: calc(150px * var(--item-count));
  }

  .who-are-we-sect {
    flex-direction: column;
  }

  #mobile-cta {
    display: block;
    margin: auto;
  }

  #web-cta {
    display: none;
  }

  .experience-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .experience {
    width: 100%;
    padding: 1rem;
  }

  .what-we-do-sect .container {
    grid-template-columns: 1fr;
  }

  .what-we-do-sect .content {
    padding: 1rem;
  }

  .what-we-do-sect .heading {
    gap: 2rem;
  }

  .what-we-do-sect .content img {
    padding: 5px;
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  

  .booking-sect {
    padding: 1.5rem;
    margin: auto;
  }

  #categories {
    height: 45px;
    font-size: 14px;
  }

  .input-flex {
    flex-direction: column;
  }

  h1 {
    font-size: 30px;
    margin-bottom: 1rem;
  }

  .videos {
    grid-template-columns: 1fr;
  }

  .video-thumbnail {
    height: 250px;
  }

  .play-icon {
    top: 37%;
    right: 45%;
    height: 40px;
    width: 40px;
  }

  .popup {
    width: 90vw;
    padding: 15px;
  }

  .popup-video-iframe {
    height: 300px;
  }

  .slider-track {
    width: calc(100% * var(--slide-count)); /* 1 card visible */
  }

  .slider-item {
    flex: 0 0 25%;
  }

  .testimonial-card {
    flex-direction: column;
    padding: 2rem;
  }

  .empty {
    display: none;
  }

  .testimonials-text {
    text-align: center;
  }

  .user-img {
    position: static;
    width: 120px;
    height: 160px;
    margin: 0 auto 1rem;
  }

  .quote-icon {
    top: 10px;
    right: 10px;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 5rem;
  }

  .footer-icon {
    height: 20px;
    width: 20px;
  }
}

@media (max-width: 480px) {
  .sponsor-card {
    width: 100px;
    height: 60px;
  }

  .sponsor-track {
    width: calc(100px * var(--item-count));
  }

  .video-thumbnail {
    height: 200px;
  }

  .popup-video-iframe {
    height: 200px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .user-img {
    width: 100px;
    height: 130px;
  }

  .testimonials-text p {
    font-size: 1rem;
  }

  .testimonials-text h2 {
    font-size: 1.25rem;
  }
}