/* Custom Modal Styling */
.modal-fullscreen .modal-content {
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  max-height: 100vh;
  overflow-y: auto;
}

.modal-fullscreen .modal-header {
  border-bottom: none;
  padding: 20px 40px;
}

.modal-fullscreen .modal-body {
  padding: 0px 20px;
}

.modal-fullscreen .btn-close {
  font-size: 1.5rem;
  color: #4a5568;
}

.modal-fullscreen .btn-close:hover {
  color: #2b6cb0;
}

/* Service Hero Section Styling */

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a,
.breadcrumb span {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #ffffff;
}

.service-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Service Overview Section Styling */
.service-overview {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f0 100%);
  padding: 1rem 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0px;
}

.overview-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.overview-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3c5e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.overview-text {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.overview-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-item {
  background: #e6f0fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  flex: 1;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #2b6cb0;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 500;
}

.overview-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.overview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.overview-image:hover .overview-img {
  transform: scale(1.05);
}

/* Services List Section Styling */
.services-list-section {
  padding: 1rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a3c5e;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.service-icon-box {
  margin-right: 20px;
  display: none;
}

.service-item-icon {
  width: 40px;
  height: 40px;
  color: #2b6cb0;
}

.service-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a3c5e;
  margin-bottom: 10px;
}

.service-item-description {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 10px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #4a5568;
}

.service-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2b6cb0;
  font-size: 1.2rem;
}

/* Animation for fade-in effect */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .overview-content {
    padding: 30px;
  }

  .overview-title {
    font-size: 2rem;
  }

  .overview-text {
    font-size: 1rem;
  }

  .overview-image {
    max-height: 300px;
  }

  .modal-fullscreen .modal-body {
    padding: 20px;
  }

  .service-hero-title {
    font-size: 2rem;
  }

  .service-hero-subtitle {
    font-size: 1rem;
  }
}
