/* About Page Styles - Advanced CSS by Senior Developer */

/* Hero Section */
.about-hero {
  position: relative;
  height: 600px;
  background-image: url("/placeholder.svg?height=1200&width=1920&query=modern+hospital+building+aerial+view");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 152, 219, 0.75) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-hero-content h1 {
  font-size: 4.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.about-hero-content p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Text reveal animation */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  animation: revealText 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

@keyframes revealText {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.scroll-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.hero-scroll-indicator span {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Welcome Section */
.welcome-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
  position: relative;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-header.text-left {
  text-align: left;
}

.section-header.text-left h4::before,
.section-header.text-left h4::after {
  display: none;
}

.section-header.text-left::after {
  margin-left: 0;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  font-weight: var(--font-weight-medium);
}

.signature {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  gap: 1.5rem;
}

.signature-img {
  max-width: 150px;
  height: auto;
}

.signature-info h4 {
  margin-bottom: 0.25rem;
  color: var(--dark-color);
  font-size: 1.1rem;
}

.signature-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.welcome-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.welcome-image:hover .image-frame img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(230, 126, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
  }
}

.experience-badge .years {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  margin-top: 0.5rem;
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  position: relative;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-card,
.vision-card {
  background-color: var(--bg-color);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.mission-card::before,
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gradient);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
  transition: transform 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
  transform: rotateY(180deg);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 1rem;
}

.mission-card h3::after,
.vision-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-full);
}

.mission-card p,
.vision-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Values Section */
.values-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background-color: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(230, 126, 34, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: -1;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
  height: 100%;
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: rotateY(180deg);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.value-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-full);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* History Timeline Section */
.history-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-full);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: calc(50% - 2rem);
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: calc(50% + 2rem);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg-secondary), 0 0 0 8px rgba(230, 126, 34, 0.2);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -3.5rem;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -3.5rem;
}

.timeline-date {
  position: absolute;
  top: 0;
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -8rem;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -8rem;
}

.timeline-content {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Achievements Section */
.achievements-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
  position: relative;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.achievement-card {
  background-color: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gradient);
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
  transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: rotateY(180deg);
}

.achievement-number {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1;
}

.achievement-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.achievement-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Facilities Section */
.facilities-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  position: relative;
}

.facilities-slider {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}

.facilities-track {
  display: flex;
  transition: transform 0.5s ease;
}

.facility-slide {
  min-width: 100%;
  position: relative;
}

.facility-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.facility-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  color: var(--white);
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.facility-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.facility-info p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
}

.facilities-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.facility-btn {
  background-color: var(--bg-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  color: var(--dark-color);
}

.facility-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.facility-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Team Preview Section */
.team-preview-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
  position: relative;
}

.team-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn-lg i {
  transition: transform 0.3s ease;
}

.btn-lg:hover i {
  transform: translateX(5px);
}

.team-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
}

.team-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 200px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.team-image:hover .team-image-overlay {
  transform: translateY(0);
}

.team-image-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.team-image-overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  position: relative;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  padding: 2.5rem;
  position: relative;
}

.testimonial-quote i {
  color: var(--primary-color);
  font-size: 2rem;
  opacity: 0.3;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.testimonial-quote p {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--dark-color);
}

.testimonial-author p {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

/* Partners Section */
.partners-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
  position: relative;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.partner-logo {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 120px;
}

.partner-logo:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* CTA Section */
.about-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 50%, #e74c3c 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.about-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.about-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .about-hero-content h1 {
    font-size: 3.5rem;
  }

  .welcome-grid,
  .team-preview-content {
    gap: 3rem;
  }

  .timeline {
    padding: 0 4rem;
  }
}

@media (max-width: 992px) {
  .about-hero {
    height: 500px;
  }

  .about-hero-content h1 {
    font-size: 3rem;
  }

  .about-hero-content p {
    font-size: 1.25rem;
  }

  .welcome-grid,
  .team-preview-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 80px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-date,
  .timeline-item:nth-child(even) .timeline-date {
    left: 20px;
    top: -30px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 400px;
  }

  .about-hero-content h1 {
    font-size: 2.5rem;
  }

  .about-hero-content p {
    font-size: 1.1rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }

  .experience-badge {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: -20px;
  }

  .experience-badge .years {
    font-size: 2.5rem;
  }

  .experience-badge .text {
    font-size: 0.8rem;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 350px;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .timeline {
    padding: 0 1rem 0 60px;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-content h3 {
    font-size: 1.25rem;
  }

  .team-image-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-content h2 {
    font-size: 1.75rem;
  }

  .about-cta-content p {
    font-size: 1rem;
  }
}

/* Animation for Achievement Counter */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.achievement-number.animate {
  animation: countUp 1s forwards;
}
