/* General Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  /* width: 90%;
    max-width: 1200px; */
  margin: 0 auto;
}

.section-padding {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.bg-light {
  background-color: #f9f9f9;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Service Banner */
.service-banner {
  background: #121315;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.service-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.service-description {
  font-size: 18px;
  line-height: 1.8;
}

/* Service Details */
.service-details h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-details p {
  line-height: 1.8;
  font-size: 16px;
  text-align: justify;
}

.service-details img {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us */
.why-choose-us h2 {
  font-size: 28px;
  font-weight: bold;
}

.icon-box {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.icon-box:hover {
  background: #111522;
  color: #fff;
  transform: translateY(-5px);
}

.icon-box i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #111522;
}

.icon-box h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.icon-box p {
  font-size: 14px;
  line-height: 1.6;
}

/* Process Steps */
.service-process h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.process-step {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #fff;
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.process-step h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111522;
}

.process-step p {
  font-size: 14px;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 20px;
  text-align: center;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial {
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
}

.testimonial h5 {
  font-size: 18px;
  font-weight: bold;
  color: #111522;
}

/* CTA Section */
.cta-section {
  padding: 40px 20px;
  background: #111522;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cta-section .btn {
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  background: #333;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  background: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .service-details .row,
  .why-choose-us .row,
  .service-process .row {
    flex-direction: column;
  }

  .process-step,
  .icon-box {
    margin-bottom: 20px;
  }
}
