/* About Page Styling */

/* Page Title Section */
#page-title {
  background: linear-gradient(rgba(0, 141, 210, 0.9), rgba(0, 160, 227, 0.9)), url("../images/page-title-bg.jpg") center center;
  background-size: cover;
  height: 300px;
  padding-top: 120px;
  text-align: center;
  color: #fff;
}

#page-title h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

#page-title .breadcrumb {
  background: transparent;
  display: inline-flex;
}

#page-title .breadcrumb-item,
#page-title .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

#page-title .breadcrumb-item.active {
  color: #fff;
}

#page-title .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
}

/* About Company Section */
.about-company {
  padding: 80px 0;
}

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

.about-img img {
  border-radius: 10px;
  transition: all 0.5s ease;
}

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

.about-experience {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-experience h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.about-experience p {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.about-company p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-company .fst-italic {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.consultation-box {
  background: linear-gradient(rgba(0, 141, 210, 0.05), rgba(0, 141, 210, 0.05)), #fff;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.consultation-box h4 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.consultation-box p {
  margin-bottom: 20px;
}

.btn-get-in-touch {
  display: inline-block;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-get-in-touch:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 141, 210, 0.3);
}

/* Founder Section */
.founder {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 141, 210, 0.05), rgba(0, 141, 210, 0.05)), #f8f9fa;
}

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

.founder-img img {
  border-radius: 10px;
  transition: all 0.5s ease;
}

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

.founder-info {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.founder-info h3 {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.founder-info .position {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.founder-divider {
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  margin-bottom: 20px;
}

.founder-bio {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 141, 210, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Team Section */
.team {
  padding: 80px 0;
}

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

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

.member-img {
  position: relative;
  overflow: hidden;
}

.member-img img {
  width: 100%;
  transition: all 0.5s ease;
}

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

.member-img .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
}

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

.member-img .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: #fff;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.member-img .social a:hover {
  background: var(--accent-color);
  color: var(--dark-color);
}

.member-info {
  padding: 25px 15px;
  text-align: center;
  border-top: 4px solid var(--accent-color);
}

.member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--dark-color);
}

.member-info span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
}

/* Mentors and Associates Section */
.mentors-associates {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 141, 210, 0.05), rgba(0, 141, 210, 0.05)), #f8f9fa;
}

.associate-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.associate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.associate-img {
  overflow: hidden;
}

.associate-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.associate-card:hover .associate-img img {
  transform: scale(1.1);
}

.associate-info {
  padding: 15px;
  text-align: center;
  border-top: 3px solid var(--accent-color);
}

.associate-info h4 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .about-experience {
    bottom: 20px;
    right: 20px;
    padding: 15px;
  }
  
  .about-experience h2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  #page-title {
    height: 250px;
    padding-top: 100px;
  }
  
  #page-title h1 {
    font-size: 36px;
  }
  
  .about-company, .founder, .team, .mentors-associates {
    padding: 60px 0;
  }
  
  .founder-info {
    margin-top: 30px;
  }
  
  .about-img {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  #page-title {
    height: 200px;
    padding-top: 80px;
  }
  
  #page-title h1 {
    font-size: 30px;
  }
  
  .about-experience {
    bottom: 15px;
    right: 15px;
    padding: 10px;
  }
  
  .about-experience h2 {
    font-size: 24px;
  }
  
  .about-company, .founder, .team, .mentors-associates {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .founder-info h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  #page-title h1 {
    font-size: 26px;
  }
  
  .consultation-box {
    padding: 20px;
  }
  
  .consultation-box h4 {
    font-size: 20px;
  }
  
  .founder-info {
    padding: 20px;
  }
  
  .founder-info h3 {
    font-size: 22px;
  }
}
