/* ---------------------------- GLOBAL ---------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
font-family: 'Montserrat', sans-serif;
background: #fff;
  color: #333;
}

/* ---------------------------- PAGE BANNER ---------------------------- */
.page-banner {
  margin-top: 90px;
  position: relative;
  height: 55vh;
  width: 100%;
  background: url("../images/360_F_613517595_vN9ugH0PW0vnPTzINEX1Eqnqt1EAlB0c.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 6, 10, 0.5);
}

/* Banner Content */
.banner-content {
  position: relative;
  max-width: 650px;
  padding-left: 80px;
}

.banner-content h1 {
  font-size: 3.2rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.7;
}

/* ---------------------------- HERO SECTION ---------------------------- */
.hero {
  padding: 140px 8% 80px;
  background: #fff;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Hero Text */
.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  color: #3c2144;
  margin-bottom: 15px;
}

.hero-text h1 span {
  color: #d4af37;
}

.hero-text h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #3c2144;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #000;
}

/* Hero Button */
.hero-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: #fcd977;
  color: #4b0082;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #f6e3b4;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(252, 217, 119, 0.6);
}

/* Hero Image */
.hero-image {
  flex: 1;
  max-width: 420px;
}

.hero-image img {
  width: 100%;
  height: 500px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* ---------------------------- HELLO SECTION ---------------------------- */
.hello-section {
  padding: 80px 8%;
  background: #fff;
}

.hello-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.small-tag {
  font-size: 20px;
  letter-spacing: 1px;
  color: #4b0082;
  font-weight: 600;
}

.hello-text h2 {
  font-size: 42px;
  margin: 15px 0 20px;
  color: #4b0082;
}

.hello-text h2 span {
  color: #d4af37;
}

.hello-text{
  text-align: left;
}
.intro-text {
  color: #000;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}

.hello-points .point {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.hello-points i {
  width: 42px;
  height: 42px;
  background: #9b4d96;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 16px;
}

.hello-points h4 {
  margin-bottom: 4px;
  font-size: 16px;
}

.hello-points p {
  font-size: 14px;
  color: #666;
}

/* RIGHT IMAGES */
.hello-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.img-left img,
.img-right img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.img-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-right img {
  height: calc(50% - 10px);
}

/* ---------------------------- WHY CHOOSE US ---------------------------- */
.why-us {
  background-color: #fff;
  color: #3c2144;
  padding: 80px 20px;
  text-align: center;
}

.why-us .section-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.why-us .section-header h2 span {
  color: #d4af37;
}

.why-us .section-header p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

/* =========================
   Carousel Wrapper
========================= */
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  background: transparent;
}

/* =========================
   Carousel Track
========================= */
.carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

/* =========================
   Card
========================= */
.carousel-item {
  min-width: 300px; /* fixed */
  width: 50px;
  background: linear-gradient(145deg, #3c2144, #2b1631);
  border-radius: 22px;
  padding: 32px 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  text-align: left;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 60%);
  pointer-events: none;
}

.carousel-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.carousel-item img {
  width: 60px;
  margin-bottom: 20px;
}

.carousel-item h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #d4af37;
  font-weight: 600;
}

.carousel-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f1f1f1;
}

/* =========================
   Animation
========================= */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------------------------- RESPONSIVE ---------------------------- */
@media (max-width: 1200px) {
  .hero-image img { height: 700px; }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-text h3 { font-size: 1.4rem; }
}

@media (max-width: 900px) {
  .hero {
    padding: 120px 6% 60px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 { font-size: 2.4rem; }
  .hero-text h3 { font-size: 1.4rem; }
  .hero-text p { font-size: 1rem; }

  .page-banner { height: 45vh; }
  .banner-content { padding: 0 30px; }

  .hello-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hello-images {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .img-right img { height: auto; }

  .carousel-item {
    min-width: 70%;
    padding: 25px 20px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 120px 6% 60px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 { font-size: 2.4rem; }
  .hero-text h3 { font-size: 1.4rem; }
  .hero-text p { font-size: 1rem; }

  .page-banner { height: 45vh; }
  .banner-content { padding: 0 30px; }

  .hello-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hello-images {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .img-right img { height: auto; }

  .carousel-item {
    min-width: 70%;
    padding: 25px 20px;
  }
}

@media (max-width: 600px) {
  .hero-image img { height: 500px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-text h3 { font-size: 1.2rem; }
  .banner-content h1 { font-size: 1.8rem; }
  .banner-content p { font-size: 0.95rem; }

  .hello-text h2 { font-size: 30px; }
  .intro-text { font-size: 0.95rem; }

  .carousel-item {
    min-width: 40%;
    padding: 22px 16px;
  }

  .carousel-item h3 { font-size: 1.35rem; }
  .carousel-item p { font-size: 0.95rem; }
}