/* About Hero Section */
.about-hero {
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/about-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding: 0 20px;
    margin-top: 80px;
  }
  
  .about-hero-content {
    max-width: 800px;
  }
  
  .about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .about-hero p {
    font-size: 18px;
    opacity: 0.9;
  }
  
  /* About Intro Section */
  .about-intro {
    padding: 80px 20px;
  }
  
  .about-intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .about-intro-text {
    flex: 1;
  }
  
  .about-intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .about-intro-text h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .about-intro-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
  }
  
  .about-intro-image {
    flex: 1;
  }
  
  .about-intro-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  /* Our Values Section */
  .our-values {
    padding: 80px 20px;
    background-color: #f9f9f9;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .value-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
  }
  
  .value-icon img {
    width: 35px;
    height: 35px;
  }
  
  .value-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .value-card p {
    color: #666;
    font-size: 15px;
  }
  
  /* Our Team Section */
  .our-team {
    padding: 80px 20px;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .team-member {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .team-member-image {
    height: 250px;
    overflow: hidden;
  }
  
  .team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .team-member:hover .team-member-image img {
    transform: scale(1.1);
  }
  
  .team-member-info {
    padding: 20px;
  }
  
  .team-member-info h3 {
    margin-bottom: 5px;
    font-size: 20px;
  }
  
  .team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .team-bio {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Milestones Section */
  .milestones {
    padding: 80px 20px;
    background-color: #f9f9f9;
  }
  
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 20px 0;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  
  .timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
  }
  
  .timeline-year {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .timeline-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  
  .timeline-content p {
    color: #666;
    font-size: 15px;
  }
  
  /* About Testimonials */
  .about-testimonials {
    background-color: #f9f9f9;
    padding: 80px 20px;
  }
  
  .about-testimonials .testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .testimonial-slide {
    display: none;
    animation: fadeEffect 0.8s;
  }
  
  .testimonial-slide.active {
    display: block;
  }
  
  @keyframes fadeEffect {
    from {opacity: 0.7;}
    to {opacity: 1;}
  }
  
  .about-testimonials .testimonial-content {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
  }
  
  .about-testimonials .testimonial-content::before {
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
  }
  
  .about-testimonials .testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 50px;
    border-left: 3px solid var(--primary-color);
  }
  
  .about-testimonials .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }
  
  .about-testimonials .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
  }
  
  .about-testimonials .author-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }
  
  .about-testimonials .author-info p {
    margin: 5px 0 0;
    color: #777;
    font-size: 14px;
  }
  
  .about-testimonials .testimonial-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .testimonial-dots {
    display: flex;
    gap: 8px;
  }
  
  .testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .testimonial-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
  }
  
  .about-testimonials .prev-testimonial,
  .about-testimonials .next-testimonial {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .about-testimonials .prev-testimonial:hover,
  .about-testimonials .next-testimonial:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
  }
  
  .about-testimonials .prev-testimonial:active,
  .about-testimonials .next-testimonial:active {
    transform: scale(0.95);
  }
  
  /* Add responsive adjustments */
  @media (max-width: 768px) {
    .about-testimonials .testimonial-text {
      padding-left: 30px;
    }
    
    .about-testimonials .testimonial-content::before {
      font-size: 60px;
    }
  }
  
  /* CTA Section */
  .cta-section {
    padding: 80px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cta-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text);
    text-align: center;
  }
  
  .cta-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .cta-button {
    font-size: 18px;
    padding: 15px 30px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .about-hero h1 {
      font-size: 40px;
    }
  
    .about-intro-content {
      flex-direction: column;
    }
  
    .about-intro-text,
    .about-intro-image {
      width: 100%;
    }
  
    .timeline::before {
      left: 20px;
    }
  
    .timeline-dot {
      left: 20px;
    }
  
    .timeline-content {
      width: 85%;
      margin-left: 40px !important;
    }
  }
  
  @media (max-width: 768px) {
    .about-hero {
      height: 40vh;
    }
  
    .about-hero h1 {
      font-size: 32px;
    }
  
    .cta-content h2 {
      font-size: 28px;
    }
  
    .cta-content p {
      font-size: 16px;
    }
  }
  
  @media (max-width: 576px) {
    .about-hero h1 {
      font-size: 28px;
    }
  
    .about-intro-text h2 {
      font-size: 24px;
    }
  
    .timeline-content {
      width: 80%;
    }
  }
