/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
      url("/placeholder.svg?height=800&width=1600");
    background-size: cover;
    background-position: center;
  }
  
  /* About Intro Section */
  .about-intro {
    padding: 50px 0;
    background-color: #fff;
  }
  
  .about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-intro-content {
    padding-right: 20px;
  }
  
  .about-intro-content .section-title {
    text-align: left;
    margin-bottom: 30px;
  }
  
  .about-intro-content .section-title::after {
    margin-left: 0;
    margin-right: auto;
  }
  
  .about-intro-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .about-stat {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .about-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
  }
  
  .about-stat-text {
    color: #2c3e50;
    font-weight: 500;
  }
  
  .about-intro-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height:70%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 10%;
    margin-bottom: 10%;
  }
  
  .about-intro-image img {
    width: 100%;
    height:100%;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.5s ease;
    
  }
  
  .about-intro-image:hover img {
    transform: scale(1.05);
  }
  
  .about-intro-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #e74c3c;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
  }
  
  /* Our Story Section */
  .our-story {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
  }
  
  .story-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #e74c3c;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-content {
    width: 45%;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
  }
  
  .timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .timeline-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .timeline-image {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
  }
  
  .timeline-image img {
    width: 90%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .timeline-content:hover .timeline-image img {
    transform: scale(1.05);
  }
  
  /* Our Mission Section */
  .our-mission {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .mission-image {
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
  }
  
  .mission-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .mission-image:hover img {
    transform: scale(1.05);
  }
  
  .mission-content .section-title {
    text-align: left;
    margin-bottom: 30px;
  }
  
  .mission-content .section-title::after {
    margin-left: 0;
    margin-right: auto;
  }
  
  .mission-statement {
    margin-bottom: 30px;
  }
  
  .mission-statement h3 {
    display: flex;
    align-items: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  .mission-statement h3 i {
    color: #e74c3c;
    margin-right: 10px;
  }
  
  .mission-statement p {
    color: #555;
    line-height: 1.8;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  
  .value-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #e74c3c;
    font-size: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .value-card:hover .value-icon {
    transform: scale(1.1);
    background-color: #e74c3c;
    color: white;
  }
  
  .value-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .value-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  /* Team Section */
  .our-team {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .team-image {
    position: relative;
    overflow: hidden;
  }
  
  .team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .team-card:hover .team-image img {
    transform: scale(1.05);
  }
  
  .team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
  }
  
  .team-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .team-social a:hover {
    background-color: #e74c3c;
    transform: translateY(-5px);
  }
  
  .team-info {
    padding: 25px;
  }
  
  .team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #2c3e50;
  }
  
  .team-position {
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 15px;
  }
  
  .team-bio {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  .team-cta {
    text-align: center;
    margin-top: 50px;
  }
  
  /* Testimonials Section */

.testimonials {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 50px auto 0;
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  gap: 30px;
  width: 100%;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 0;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
}

.testimonial-content {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
  height: 100%;
}

.testimonial-quote {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 2rem;
  color: rgba(231, 76, 60, 0.2);
}

.testimonial-content p {
  color: #555;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-rating {
  color: #f39c12;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #2c3e50;
}

.testimonial-author-info p {
  color: #555;
  margin: 0;
  font-size: 0.9rem;
}

/* Animation classes */
.slide-in {
  animation: slideIn 0.5s ease forwards;
}

.slide-out {
  animation: slideOut 0.5s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .testimonials-container {
    gap: 20px;
  }
}
  /* Responsive Styles */
  @media (max-width: 992px) {
    .about-intro-grid,
    .mission-grid {
      grid-template-columns: 1fr;
    }
  
    .about-intro-content,
    .mission-content {
      order: 1;
    }
  
    .about-intro-image,
    .mission-image {
      order: 0;
    }
  
    .timeline-content {
      width: 80%;
      margin: 0 auto !important;
      margin-top: 60px !important;
    }
  
    .timeline-year {
      top: -30px;
    }
  
    .story-timeline::before {
      left: 50%;
    }
  }
  
  @media (max-width: 768px) {
    .about-stats {
      grid-template-columns: 1fr;
    }
  
    .values-grid {
      grid-template-columns: 1fr;
    }
  
    .team-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  
    .timeline-content {
      width: 90%;
    }
  }
  
  @media (max-width: 576px) {
    .timeline-content {
      width: 100%;
    }
  
    .testimonial-author {
      flex-direction: column;
      text-align: center;
    }
  }
  
  