/* ================= RESET ================= */
* {
  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-image: url("../images/banner9.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 33, 33, 0.4);
}

.banner-content {
  position: relative;
  max-width: 650px;
  padding-left: 80px;
}

.banner-content h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: #d4af37;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #fff;
  line-height: 1.7;
}

/* ================= HERO ================= */
.services-hero {
  text-align: center;
  color: #d4af37;
  padding: 90px 5% 20px;
}

.services-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.services-hero h1  {
  color: #3c2144;
}

.services-hero span  {
  color: #d4af37;
}


.services-hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-top: 10px;
}

/* ================= SERVICE SECTIONS ================= */
.service-section {
  display: flex;
  align-items: center;
  padding: 60px 10%;
  gap: 40px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.service-section:nth-child(even) {
  flex-direction: row-reverse;
}

.service-images {
  flex: 1;
  position: relative;
  aspect-ratio: 4/3;
  max-width: 500px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(106, 13, 173, 0.2);
  border-radius: 20px;
  background: #f5f5f5;
}

.service-images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.service-text {
  flex: 1;
  max-width: 500px;
}

.service-text h2 {
  color: #3c2144;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  border-bottom: 4px solid #fcd977;
  display: inline-block;
  padding-bottom: 5px;
}

.service-text p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;
}

.service-text .btn {
  display: inline-block;
  background-color: #fcd977;
  color: #4b0082;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0.8rem 2rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.service-text .btn:hover {
  background-color: #f6e3b4;
  box-shadow: 0 6px 25px rgba(252, 217, 119, 0.6);
  transform: translateY(-2px);
}

/* ================= RESPONSIVE DESIGN ================= */

/* Tablets / Laptops */
@media (max-width: 1024px) {
  .banner-content { padding-left: 40px; }
  .service-section { padding: 40px 5%; }
}

/* Tablets / Large Mobile */
@media (max-width: 768px) {
  .page-banner {
    justify-content: center;
    flex-direction: column;
    height: auto;
    padding: 50px 20px;
  }

  .banner-content {
    padding: 0 20px;
    text-align: center;
    max-width: 100%;
  }

  .services-hero h1 { font-size: 2.5rem; }
  .service-section, .service-section:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 50px 20px;
  }

  .service-images {
    max-width: 100%;
    width: 100%;
    height: 300px;
  }

  .service-text { max-width: 100%; }
  .service-text h2 { font-size: 1.8rem; }
}

/* Small Phones */
@media (max-width: 480px) {
  .services-hero h1 { font-size: 2rem; }
  .banner-content h1 { font-size: 1.8rem; }
  .banner-content p { font-size: 0.95rem; }
  .service-text h2 { font-size: 1.5rem; }
  .service-text .btn { padding: 0.6rem 1.5rem; font-size: 0.9rem; }
}
