ota-containerbody {
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  div.ota-container {
    margin-top: 500px !important;
    margin-bottom: 100px !important;
  }
}
.air-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.air-hero-slider img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.logo {
  height: 70px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .logo {
    height: 50px; /* Reduce size on tablets */
  }
}

@media (max-width: 480px) {
  .logo {
    height: 40px; /* Reduce size further on mobile */
  }
}

.air-hero-slider img.active {
  opacity: 0.3;
}

.air-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.air-hero-content {
  position: relative;
  z-index: 2;
}

.air-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.air-hero p {
  font-size: 1.2rem;
}

.btn-custom {
  background-color: #b2a67f;
  color: white;
  font-size: 1.2rem;
  padding: 10px 20px;
  margin-top: 20px;
}

.btn-custom:hover {
  background-color: #a29170;
}

.about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}




.services-section {
  padding: 15px 0;
  background-color:#f5f5f5;;
  overflow: hidden;
}
.services-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: black;
  text-align: center;
}
.services-slider {
  display: flex;
  width: 100%;
  animation: slide 9s infinite linear;
}
.services-column {
  flex: 0 0 33.33%;
  padding: 10px;
  margin-top: -20px;
  box-sizing: border-box;
}
.services-card {
  background-color: #81847e;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: white;
}
.services-card img {
  width: 100%;
  height: 100px;
  border-radius: 5px;
}
.services-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
}
.services-card p {
  font-size: 1.1rem;
  color: #f1f1f1;
}
.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
  /* animation-play-state: paused; */
}
.services-slider:hover {
  animation-play-state: paused;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Move by half of track */
}


















.img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.member-of-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.member-of-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.scrolling-container {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
  width: 80vw;
  margin: 0 auto;
}

.scrolling-inner {
  display: flex;
  animation: scroll 30s linear infinite;
}

.member-box {
  flex: 0 0 auto;
  width: 180px;
  height: 125px;
  margin: 0 10px;
  padding: 20px;
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% + 80vw));
  }
}

.achievements-section {
  padding: 60px 0;
  background-color: #81847e;
}

.achievements-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
}

.achievement-card {
  background-color: #b2a67f;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
  text-align: center;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.our-services-section {
  padding: 0px 0;
  padding-top: 15px;
  padding-bottom: 20px;
  background-color: #f5f5f5;
}

.our-services-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-card {
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.services-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #fff;
}

.services-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 15px 0;
}

.services-card p {
  font-size: 1.1rem;
  color: black;
  margin-bottom: 10px;
}
.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.read-more {
  /* color: red; */
  font-weight: bold;
  text-decoration: none;
}

/* .read-more:hover {
  text-decoration: underline;
} */

.btn-view-all {
  background-color: #b2a67f;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-view-all:hover {
  background-color: #a29170;
  color: white;
}

.ask-question-section {
  padding: 50px 0;
}
@media (max-width: 768px) {
  .ask-question-section {
    margin-top: -70px;
    margin-bottom: -20px;
    padding: 50px 0;
  }
  .ask-question-button {
    margin-left: -70px;
  }
  .ask-question-h2 {
    margin-left: 40px;
  }
}

.ask-box {
  background-color: #81847e;
  padding: 50px;
  border-radius: 10px;
  color: white;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ask-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.btn-contact-us {
  background-color: #b2a67f;
  color: white;
  font-size: 1.2rem;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.btn-contact-us:hover {
  background-color: #a29170;
}





/* Carousel base */
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.2s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0.5rem;
}

/* Responsive: small = 1 slide, medium = 2, large = 3 */
@media (min-width: 768px) {
  .carousel-slide { flex: 0 0 50%; }
}
@media (min-width: 1024px) {
  .carousel-slide { flex: 0 0 33.3333%; }
}

/* Service card styling */
.services-card {
  height: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}
.services-card img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
}
.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: none;
  font-weight: bold;
}

/* Optional Prev/Next */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
}
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }



.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
}
.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

