@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; 
}
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.nav-link .active {
  color: white;
}


.main{
  min-height: calc(100vh - 285px);
}

.stripped-gradient {
  background: linear-gradient(350deg,
      transparent,
      transparent 35%,
      #2cb0ea0d 35%,
      #2cb0ea0d 65%,
      transparent 65%,
      transparent);
}

.stripped-gradient-sm {
  background: linear-gradient(310deg,
      transparent,
      transparent 35%,
      #2cb0ea0d 35%,
      #2cb0ea0d 65%,
      transparent 65%,
      transparent);
}


.stripped-gradient-section {
  background: linear-gradient(350deg,
      transparent,
      transparent 35%,
      #2cb0ea0d 35%,
      #2cb0ea0d 65%,
      transparent 65%,
      transparent);
}

/* swipper start */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-inline: auto;

  
}

.hero-slider .swiper-slide {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transform: scale(0.8);
}

.hero-slider .swiper-slide-active {
  transform: scale(1);
}

.hero-slider .swiper-slide img {
  width: 213px !important;
  height: 428px !important;
  object-fit: cover !important;
}

/* swipper end */

.feature-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: row;
  width: calc(33.33% - 20px);
  align-items: center;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  perspective: 1000px;
}

.feature-item:hover {
  transform: translateZ(20px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.feature-text {
  flex: 1;
  padding: 10px;
}

.feature-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.reverse {
  flex-direction: row-reverse;
}


.marquee-container {
  width: 100%;
  overflow-x: hidden;
}

.marquee-content {
  display: inline-flex;
  animation: scroll 20s linear infinite;
}


.partners-img {
  min-width: 150px;
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-right: 40px;
  aspect-ratio: 3/2;

}

/* #customPopup {
  display: hidd;
} */

/* testimonial start */

.testimonial-section {
  position: relative;
  height: 300px;
  overflow: hidden;

  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.8);
  }

  .swiper-slide-active {
    transform: scale(1);
  }

  .next,.prev{
    display: flex;
    
    justify-content: center;
    align-items: center;
  }
  .next,.prev{
    background-image:none !important;
    color: #fff !important;
    background-color: #2FB0EB;
    width: 40px;
    height: 40px;
    border-radius: 100%;
  }
}

.testimonial {
  min-width: 300px;
  transition: transform 0.5s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.testimonial blockquote {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.author {
  display: flex;
  align-items: center;
}

.author img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.author-info .name {
  font-weight: bold;
  font-size: 1rem;
}

.author-info .position {
  font-size: 0.875rem;
  color: #777;
}

@media (max-width: 768px) {
  .testimonial {
    min-width: 100%; 
    padding: 15px; 
    font-size: 0.9rem;
  }

  .testimonial-res{
    position: relative;
  }

  .testimonial blockquote {
    font-size: 1.1rem;
  }

  .testimonial p {
    font-size: 0.875rem; 
  }

  .author img {
    width: 40px;
    height: 40px; 
    margin-right: 10px;
  }

  .author-info .name {
    font-size: 0.95rem; 
  }

  .author-info .position {
    font-size: 0.8rem;
  }

  .next,.prev{
    position: absolute;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial {
    padding: 10px;
    box-shadow: none; 
  }

  .testimonial blockquote {
    font-size: 1rem;
  }

  .author img {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }

  .author-info .name {
    font-size: 0.875rem;
  }

  .author-info .position {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev,
  #next,#prev {
    display: none;
  }
}

.footer {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
}



/* testimonial end */

/* content-partner-css */

.tab {
  overflow: hidden;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.tab button {
  background-color: inherit;
  float: left;
  border: 1px solid #29AFEA;
  padding: 5px 17px;
  border-radius: 10px;
  transition: 0.3s;
}

.tab button:hover {
  background-color: #1a7aa3;
  color: white;
}

.tab button.active {
  background-color: #29AFEA;
  color: white;
}

/* Style the tab content */
.tabcontent {
  margin-top: 10px;
  display: none;
  padding: 6px 12px;
  border-top: none;
}

.tablinks.active {
  background-color: #2FB0EB;
  color: white;
}


.terms{
  li {
    list-style-type: decimal;
  }
  
  li li {
    list-style-type: disc;
  }
}



@media (max-width: 1024px) {
  .feature-item {
    width: 100%;
    flex-direction: row;
  }

  .reverse {
    flex-direction: row;
  }

}


@media (max-width: 768px) {
  .partners-img {
    min-width: 100px;
    width: 100px;
    height: 100px;
  }


}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
