
.equal-section {
  padding: 40px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.image-content {
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #20282d 0%, #3a4449 100%);
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.text-content h2 {
  font-size: 42px;
  color: #20282d;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.2;
}

.text-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 968px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .image-content {
    order: 2;
    height: 300px;
  }

  .text-content {
    order: 1;
  }

  .image-content {
  }

  .text-content h2 {
    font-size: 32px;
  }

  .text-content p {
    font-size: 16px;
  }
}
/* Section-03 */
.section-03 {
  background-color: #f8f9fa;
}
.contact-section {
  padding: 40px 0px;
  background: #f8f9fa;
  position: relative;
}
.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* exactly 4 items in a row */
  gap: 30px;
}
.contact-method {
  background: white;
  padding: 50px 30px;
  position: relative;
  transition: all 0.4s ease;
  border-left: 3px solid transparent;
  border-radius: 12px;
  text-align: center;
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.15);
}
.contact-method:hover {
  transform: translateY(-5px);
}

.contact-method .stat-value {
  font-size: 35px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
}

.method-icon {
  font-size: 2rem;
  color: #20282d;
  margin-bottom: 25px;
  display: block !important;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 10px;
  font-weight: 900;
}

.method-value {
  font-size: 1.5rem;
  color: #20282d;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .review-wrapper
  {
    margin-bottom: 40px !important;
  }
}

/* Section-05 */
.section-05 {
  background-color: #f8f9fa;
}

/* Secction-06 */
.section-06 h3 {
  font-size: 24px;
  margin-top: 40px;
}
.section-06 h3:first-of-type {
  margin-top: 0;
}
.section-06 .service-icon {
  width: 24px;
  height: 24px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}
.section-06 .service-icon i {
  color: white;
  font-size: 14px;
}

/* Media Query */

@media (max-width: 768px) {
    .global-hero-section {
        padding-bottom: 40px;
    }
}