/* About Page Styles */
.about-hero {
  
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  z-index: 1;
}


.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .lead {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.about-img {
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.about-img img {
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.03);
}

.experience-box {
  position: absolute;
  bottom: -25px;
  right: 20px;
  background: #1bb1dc;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(27, 177, 220, 0.3);
}

.experience-box h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.experience-box p {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 2rem;
  color: #2c4964;
  margin-bottom: 20px;
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about .content ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about .content ul i {
  color: #1bb1dc;
  font-size: 1.2rem;
  margin-right: 10px;
}

/* Mission & Vision */
.mission-vision {
  padding: 100px 0;
  background-color: #fff;
}

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

.section-header span {
  color: #1bb1dc;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 80px;
  height: 3px;
  background: #1bb1dc;
  bottom: 0;
  left: calc(50% - 40px);
}

.mission-vision .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.mission-vision .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision .card-body {
  padding: 40px 30px;
  text-align: center;
}

.mission-vision .icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #f0f9fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #1bb1dc;
  transition: all 0.3s ease;
}

.mission-vision .card:hover .icon-box {
  background: #1bb1dc;
  color: #fff;
  transform: rotateY(180deg);
}

.mission-vision h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 20px;
}

/* Values Section */
.values {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.value-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #f0f9fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #1bb1dc;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: #1bb1dc;
  color: #fff;
  transform: rotateY(180deg);
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
}

/* Team Section */
.team {
  padding: 100px 0;
  background-color: #fff;
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: #fff;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.member-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.team-member:hover .member-img img {
  transform: scale(1.1);
}

.member-info {
  padding: 25px 20px;
  text-align: center;
}

.member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 5px;
}

.member-info span {
  display: block;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background: rgba(27, 177, 220, 0.9);
  padding: 10px 0;
  transition: all 0.3s ease;
  opacity: 0;
}

.team-member:hover .social {
  bottom: 0;
  opacity: 1;
}

.social a {
  color: #fff;
  margin: 0 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social a:hover {
  color: #0c5a7a;
  transform: translateY(-3px);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(rgba(27, 177, 220, 0.9), rgba(27, 177, 220, 0.9)), url('../../img/cta-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  padding: 12px 35px;
  background: #fff;
  color: #1bb1dc;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.cta-btn:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}

/* Stats Section */
.stats-counter {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.stats-item {
  padding: 30px 15px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stats-item span {
  font-size: 3rem;
  font-weight: 700;
  color: #1bb1dc;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.stats-item p {
  margin: 0;
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-hero .lead {
    font-size: 1.2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .mission-vision .card-body,
  .value-card {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .about-hero {
    min-height: 50vh;
    padding: 80px 0;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .stats-item {
    margin-bottom: 20px;
  }
  
  .cta h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .about-hero h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .cta {
    padding: 60px 0;
  }
  
  .cta h3 {
    font-size: 1.5rem;
  }
  
  .cta p {
    font-size: 1rem;
  }
  
  .cta-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
