/* About Content Section */
.about-content {
  padding: 100px 0;
  background: white;
  margin-bottom: 0 !important;
}
@media (max-width: 1000px) {
  .about-content {
  padding: 50px 0;
  }
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
  width: 100%;
}
.about-text h2 {
  font-size: 58px;
  color: #000000;
  line-height: 73px;
  margin-bottom: 38px;
}
.about-text p {
  /* font-size: 22px !important; */
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;

}
.about-text h3 {
  font-size: 28px;
  color: #000000;
  margin: 40px 0 20px;
}


/* Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #4CC7DD;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 18px !important;
  color: #294295;
  font-weight: 500;
}
/* Benefits List */
.benefits-list ul {
  list-style: none;
  margin: 25px 0;
}
.benefits-list li {
  padding: 12px 0;
  padding-left: 40px;
  position: relative;
  font-size: 22px;
  font-weight: 300;
  color: #535353;
  line-height: 28px;
  margin-bottom: 45px;
  border-bottom: 1px solid #eee;
}
.benefits-list li:last-child {
  border-bottom: none;
}
.benefits-list i {
  position: absolute;
  left: 0;
  top: 12px;
  color: #4CC7DD;
  font-size: 20px;
}
/* About Image */
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: fit-content;
}
.about-image img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
}
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(41, 66, 149, 0.85);
  padding: 25px;
  color: white;
}
.image-overlay p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #294295 0%, #4CC7DD 100%);
  text-align: center;
  color: white;
}
.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
}
.cta-content p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* Responsive Styles */
@media (max-width: 992px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    order: -1;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 32px;
  }
  .about-text h3 {
    font-size: 24px;
  }
  .stat-number {
    font-size: 28px;
  }
  .cta-content h2 {
    font-size: 32px;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* Featured Services Section */
.featured-services {
  padding: 80px 0;
  background: #f8f9fa;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-description {
  font-size: 22px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
  padding: 0 80px;
}
.featured-service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.featured-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.featured-service-card .service-icon {
  width: 200px;
  height: 175px;
  background: linear-gradient(135deg, #294295, #4CC7DD);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.featured-service-card .service-icon img {
  height: 180px;
  width: 210px;
  border-radius: 50%;
  color: white;
}
.featured-service-card h3 {
  font-size: 26px;
  color: #294295;
  margin-bottom: 15px;
  font-weight: 600;
}
.featured-service-card .service-description {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  flex-grow: 1;
}
.featured-service-card .service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
}
.featured-service-card .service-features span {
  background: rgba(76, 199, 221, 0.1);
  color: #4CC7DD;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
}
.featured-service-card .service-link {
  color: #294295;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.featured-service-card .service-link:hover {
  color: #4CC7DD;
  gap: 12px;
}
/* Responsive for Featured Services */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .featured-service-card:nth-child(3) {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 500px;
  }
  .featured-service-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }
  .featured-service-card {
    padding: 30px 20px;
  }
  .featured-service-card .service-icon {
    width: 70px;
    height: 70px;
  }
  .featured-service-card .service-icon i {
    font-size: 30px;
  }
  .featured-service-card h3 {
    font-size: 22px;
  }
  .featured-service-card .service-description {
    font-size: 15px;
  }
}
@media(min-width: 1000px) and (max-width:3000px) {
  .about-main {
    margin-bottom: 30px;
    align-items: flex-start;
  }

  .about-image img {
    height: 100%;
    object-fit: cover;
  }
}
@media(max-width: 1000px) {
  .about-main {
    padding: 0 20px;
  }
  .featured-grid {
    padding: 0 0;
  }
  .service-icon img {
    width: 90px !important;
    height: 90px !important;
  }
}