* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #fff;
  font-family: "Jockey One", sans-serif;
  font-weight: 100;
  font-style: normal;
}

a {
  text-decoration: none;
  color: inherit;
}


.intro {
  background-color: #000814;
  padding: 2rem;
  text-align: center;
}

.red-text {
  color: #f9c800;
  margin-bottom: 1rem;
}

.brands {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.brands img {
  height: 40px;
  filter: grayscale(100%);
}

/*brand*/


  .brands-carousel {
    width: 100%;
    max-width: 900px; /* adjust to your liking */
    margin: auto;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    transition: transform 2s ease-in-out;
        justify-content: space-evenly;
  }

  .carousel-track img {
    width: calc(100% / 6); /* show exactly 6 images at once */
    flex-shrink: 0;
    object-fit: contain;
    height: 120px;
    user-select: none;
  }


  .partners-carousel {
    width: 100%;
    max-width: 900px; /* adjust to your liking */
    margin: auto;
    overflow: hidden;
  }

  .carousel-track-partners {
    display: flex;
    transition: transform 2s ease-in-out;
        justify-content: space-evenly;
  }

  .carousel-track-partners img {
    width: calc(100% / 6);
    flex-shrink: 0;
    object-fit: contain;
    height: 120px;
    user-select: none;
  }


.value {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #000814;
}

.value h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.value p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #ccc;
  line-height: 2;
}

.btn {
  background-color: #f9c800;
  color: #ffffff;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  border-radius: 30px;
  display: inline-block;
  margin-top: 1rem;
}
.servicediv {
  align-content: center;
  text-align: center;
  margin: 40px;


}
.servicebtn {
  background-color: #f9c800;
  color: #ffffff;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  border-radius: 30px;


}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  color: #000;
}

.service-card {
  padding: 2rem;
  text-align: center;
  border-radius: 10px;

}

.service-card img {
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: #0a0f2c;
}

.service-card p {
  color: #0a0f2c;
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


.quote {
  background-color: #003566;
  height: 200px;
  display: flex;                
  justify-content: center;     
  align-items: center;        
}

.quote h2 {
  font-size: 5rem;             
  margin: 0;                    
}


.review-section {
  background-color: #000814;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-style: normal;             
}

.review-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f9c800;
}

.review-slider {
  max-width: 800px;
  margin: 0 auto;
  height: 160px;
  overflow: hidden;
  position: relative;
  align-content: center;
}

.review-slide {
  display: none;
  animation: fadeIn 1s ease-in-out;
}

.review-slide.active {
  display: block;
}

.review-text {
  font-size: 1.4rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.review-author {
  font-size: 1rem;
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .value h2 {
    font-size: 1.5rem;
  }

  .value p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .quote {
    height: 120px;
    padding: 1rem;
  }

  .quote h2 {
    font-size: 2.5rem;
  }

  .review-section {
    padding: 3rem 1rem;
  }

  .review-section h2 {
    font-size: 1.5rem;
  }

  .review-text {
    font-size: 1.1rem;
  }

  .review-author {
    font-size: 0.9rem;
  }


  /*servies*/
  .services {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }


  .logo {
    margin-bottom: 1rem;
  }

  .fullscreen-menu ul {
    padding-left: 0;
  }

  .fullscreen-menu ul li {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
}
