/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(
    rgba(15, 31, 68, 0.85),
    rgba(15, 31, 68, 0.85)
  ),
  url("../images/services.jpeg") center/cover no-repeat;

  color: #ffffff;
  padding: 140px 20px;
  text-align: center;
}

.page-banner h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 24px;
  color: #e0a730;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 100px 20px;
  }

  .page-banner h1 {
    font-size: 32px;
  }

   .page-banner p {
  font-size: 22px;
  
}
}


.container{
  padding: 20px 100px;
}


/* ===== SERVICES INTRO ===== */
.services-intro {
  padding: 40px 20px;
  background: #f8f9fa;
}

.services-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.services-text .section-tag {
  color: #e0a730;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
}

.services-text h1 {
  font-size: 38px;
  color: #0f1f44;
  margin: 12px 0 15px;
}

.services-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.services-text ul {
  list-style: none;
  padding: 0;
}

.services-text ul li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

.services-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}



@media (max-width: 768px) {
  .services-split {
    grid-template-columns: 1fr;
  }

  .services-text h1 {
    font-size: 30px;
  }

  .container{
  padding: 0px;
}

}


/* ===== SERVICES STACK ===== */
.services-stack {
  padding: 30px 20px;
  background: #fff;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse .service-content {
  direction: ltr;
}

.service-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-content h3 {
  font-size: 28px;
  color: #0f1f44;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}


@media (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-content h3 {
    font-size: 24px;
  }
}



/* ===== LICENCE & GST INFO ===== */
.legal-info {
  margin-top: -60px;
  padding: 60px 20px;
  background: #f8f9fa;
}

.legal-wrapper {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 45px 35px;
  display: flex;
  gap: 30px;
  align-items: center;
  border-radius: 8px;
  border-left: 6px solid #e0a730;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.legal-icon i {
  font-size: 50px;
  color: #e0a730;
}

.legal-text h3 {
  font-size: 26px;
  color: #0f1f44;
  margin-bottom: 10px;
}

.legal-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.legal-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-text ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
}


@media (max-width: 768px) {
  .legal-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .legal-icon i {
    font-size: 42px;
  }
}






