* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Arial", sans-serif;
}

.full-img {
  width: 100%;
}

.primary-heading {
  font-size: 2rem;
  font-weight: 700;
}

.secondary-heading {
  font-size: 1.5rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

.section-grid img {
  padding: 2rem 0;
}

.info-img {
  border-bottom: 2px solid orangered;
  padding-bottom: 1.5rem;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0 3rem;
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .grid-text {
    grid-area: 2 / 1 / 3 / 2;
  }
}

/* Carousel */

.vs-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 3rem auto;
  border-radius: 1rem;
  width: 90%;
}

.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;
  gap: 1rem;
  align-items: center;
}

.vs-carousel-slide div {
  flex: 1;
  text-align: center;
  padding: 0 5vw;
}

.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.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.vs-carousel-dots button.active {
  background: #333;
}

.carousel-hero {
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .vs-carousel-btn {
    display: none;
  }

  .vs-carousel {
    width: 90%;
  }

  .vs-carousel-slide {
    flex-direction: column;
  }
}
