* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.full-img {
  width: 100%;
}

.small-img {
  display: none;
}

.make-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 500px) {
  html {
    font-size: 75%;
  }
}

@media (max-width: 768px) {
  .small-img {
    display: block;
  }

  .big-img {
    display: none;
  }

  .crop-img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}

.primary-heading {
  font-size: 2.4rem;
}

.secondary-heading {
  font-size: 1.8rem;
}

.tertiary-heading {
  font-size: 1.4rem;
}

.basic-text {
  font-size: 1rem;
}

.section-hero,
.section-info,
.section-carousel {
  background-color: black;
  color: white;
}

.hero-text,
.info-text,
.info-comp {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.info-grid strong {
  color: #4c9dfd !important;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* Carousel */

.vs-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
  width: 90%;
  padding: 5rem 0;
}

.vs-carousel video,
.vs-carousel img {
  border-radius: 12px;
}

.vs-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.vs-carousel-slide {
  flex: 0 0 100%; /* each slide takes full width of carousel */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vs-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000080;
  color: white;
  border: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.vs-carousel-btn.prev {
  left: 1rem;
}

.vs-carousel-btn.next {
  right: 1rem;
}

.vs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.vs-carousel-dots button {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.vs-carousel-dots button.active {
  background: #333;
}

.carousel-hero {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .vs-carousel-btn {
    display: none;
  }
}
