/* ===== ABOUT.CSS ===== */
/* About Page Specific Styles */

/* About Hero Section */

.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../img/banners/aboutUs.webp') no-repeat center center;
  background-size: cover; /* Change back to cover */
  height: 500px; /* Fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: left;
  padding: 120px 1rem 0; /* Top padding for navbar */
  position: relative;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero p.lead {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

@media (max-width: 768px) {
  .about-hero {
    height: 400px;
    padding-top: 100px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-hero p.lead {
    font-size: 1.1rem;
  }
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    margin-right: 10px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #FFFFFF;
    transition: color 0.3s; /* Smooth transition for color change */
}

.breadcrumb-item a:hover,
.breadcrumb-item a:active {
    color: #007bff; /* Change this to your desired hover/active color */
}

.breadcrumb-item.active {
    color: #FFFFFF;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    margin: 0 10px;
    color: #FFFFFF;
}






/* Mission Section Styles */
.mission-section {
    background-color: #fffff;
}

.mission-image-wrapper {
    padding: 2rem;
}

.mission-image-wrapper img {
    max-width: 150px;
   
}

/* Timeline Styles */
.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.timeline-connector {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 50px);
    border-left: 2px dashed #0d6efd;
}

.timeline-content {
    padding-top: 10px;
}

.timeline-content h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.timeline-content p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Hide the connector for the last item */
.timeline-item:last-child .timeline-connector {
    display: none;
}





/* Our evolution*/
.text-image-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.text-image-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.text-image-section p.lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.text-image-section ul {
    list-style-type: none;
    padding-left: 0;
}

.text-image-section ul li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.text-image-section img {
    max-width: 100%;
    height: auto;
    
}

@media (max-width: 768px) {
    .text-image-section {
        padding: 3rem 0;
    }

    .text-image-section h2 {
        font-size: 2rem;
    }

    .text-image-section p.lead {
        font-size: 1rem;
    }

    .text-image-section ul li {
        font-size: 1rem;
    }
}







/* Team Section Styles */
.team-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.team-member-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text */
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member-img {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-bottom: 3px solid #0d6efd;
    border-radius: 50%; /* Ensure the image is circular */
    margin-top: 2rem; /* Add some space above the image */
    aspect-ratio: 1 / 1; /* Enforce a square aspect ratio */
}

.team-member-info {
    padding: 2rem;
    text-align: center;
}

.team-member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.team-member-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .team-member-card {
        margin-bottom: 30px;
    }
    
    .team-member-img {
        height: 150px; /* Adjust size for mobile */
        width: 150px; /* Adjust size for mobile */
    }
}










/* History Timeline */
.timeline-section {
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
}

.timeline-item {
  position: relative;
  padding: 2rem 0;
  margin-left: 30px;
}



.timeline-year {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 0.5rem;
}

.timeline-content {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #f8f9fa;
}












/* Values Section */
.values-section {
  padding: 5rem 0;
  background: #fff;
}

.value-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  border-color: #007bff;
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .timeline-item {
    margin-left: 20px;
  }
  
  .timeline-item::before {
    left: -20px;
  }
  
  .timeline-item::after {
    left: -11px;
  }
}

@media (max-width: 768px) {
  .mission-section,
  .team-section,
  .timeline-section,
  .values-section {
    padding: 3rem 0;
  }
  
  .team-member-img {
    height: 250px;
  }
  
  .timeline-item {
    margin-left: 15px;
  }
  
  .timeline-item::before {
    width: 15px;
    height: 15px;
    left: -15px;
  }
  
  .value-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .team-member-info h3 {
    font-size: 1.3rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  .value-icon {
    font-size: 2rem;
  }
}










