/* Corporate Services Section */
.corporate-services-section {
  padding: 4rem 0;
  background-color: #f8f8f8;
}

/* Section Header */
.section-header {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1rem;
  color: #616161;
  line-height: 1.6;
  margin: 0;
}

/* Service Cards */
.service-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2.5rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #D4AF37;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 145, 0, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Service Icon */
.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius:100px!important;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #D4AF37 0%, #D4AF37 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.service-icon-wrapper i {
  font-size: 2rem;
  color: #ffffff;
}

.service-check {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
}

.service-check i {
  font-size: 0.875rem;
  color: #ffffff;
}

/* Service Title */
.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Service Description */
.service-description {
  font-size: 0.9rem;
  color: #616161;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 767px) {
  .corporate-services-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 1.75rem 1rem;
  }

  .service-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .service-icon-wrapper i {
    font-size: 1.75rem;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-description {
    font-size: 0.875rem;
  }
}

@media (max-width: 575px) {
  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
