body {
  font-family: 'Open Sans', sans-serif !important;
}
.carousel-img {
  height: 80vh;              /* Full screen height */
  object-fit: cover;          /* Maintain aspect ratio & cover */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* Black overlay */
  z-index: 1;
}
.btn-custom {
    background: #00fff7;
    border: none;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
  }
  .btn-custom:hover {
    background: #081653;
    color: #fff;
  }
.carousel-caption {
  z-index: 2; /* Ensure text is above overlay */
  padding: 20px;
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 1.8rem;
  }
  .carousel-img {
  height: 60vh;              /* Full screen height */
  object-fit: cover;          /* Maintain aspect ratio & cover */
}
  .carousel-caption p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* about us  */
.about-font{
    font-size: 18px;
}

/* slider */
/* Client Section Styles */
    .clients-section {
      padding: 60px 0;
    }

    .clients-section h3 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
      position: relative;
      text-align: center;
    }

    .clients-section h3::after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background-color: #f26522;
      margin: 10px auto 0;
    }

    .logo-slider-container {
      width: 100%;
      overflow: hidden;
      margin-top: 40px;
      white-space: nowrap;
    }

    .logo-slider {
      display: inline-block;
      animation: slide 20s linear infinite; /* Adjust duration to control speed */
    }

    .logo-slider img {
      height: 80px; /* Adjust logo size */
      margin: 0 40px;
      display: inline-block;
      filter: grayscale(0%);
      transition: filter 0.3s ease;
    }

    .logo-slider img:hover {
      filter: grayscale(0%);
    }

    @keyframes slide {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    

    /* contact us */
    .contact-section {
  background: #11113a;
  color: #fff;
}

.contact-section input,
.contact-section textarea {
  border-radius: 8px;
  border: none;
  padding: 12px;
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  box-shadow: 0 0 8px #00fff7;
}

.contact-img {
  width: 100%;
  max-height: 400px; /* keeps it balanced */
  object-fit: cover;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .contact-section {
    text-align: center;
  }
  .contact-img {
    max-height: 250px; /* smaller on mobile */
  }
}

/* faq  */
.faq-section .accordion-button {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 1.1rem;
  font-weight: bold;
}
.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: #00fff7;
}
.faq-section .accordion-button:not(.collapsed) {
  background-color: #00fff7;
  color: #000;
}
/* product */
@media (max-width: 767px) {
  #productCarousel .carousel-item .col-12 {
    display: block !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  #productCarousel .carousel-item .d-none {
    display: none !important;
  }
}