/* About Page Specific Styles */

/* Brochure Download Section */
.brochure-section {
  background: #f8fafc;
  padding: 40px 0;
}

.brochure-card {
  background: white;
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brochure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.brochure-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 16px 16px 0 0;
}

.brochure-content-left {
  text-align: left;
}

.brochure-content-left h3 {
  color: var(--dark-gray);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.brochure-content-left p {
  color: var(--medium-gray);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.btn-download {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-download::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-download:hover::before {
  width: 300px;
  height: 300px;
}

.btn-download:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  color: white;
}

.btn-download i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-download:hover i {
  transform: translateX(3px) scale(1.1);
}

@media (max-width: 991px) {
  .brochure-card .row {
    text-align: center;
  }

  .brochure-content-left {
    text-align: center;
    margin-bottom: 20px;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.8)),
              url('../assets/about us header.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.1);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Content Section */
.about-content-section {
  background: white;
  padding: 60px 0;
}

.content-text {
  padding-right: 20px;
}

.content-text .section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
  text-align: left;
}

.content-text .section-title::after {
  left: 0;
  transform: none;
}

.lead-text {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--dark-gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.content-text p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.8;
  color: var(--medium-gray);
  margin-bottom: 15px;
}

.content-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.content-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.content-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.content-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Key Info Section */
.key-info-section {
  background: #f8fafc;
  padding: 80px 0;
}

.info-box {
  background: white;
  padding: 28px 24px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.info-icon i {
  font-size: 1.5rem;
  color: white;
}

.info-box h3 {
  color: var(--dark-gray);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.info-box p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* Testimonials Section */
.testimonials-section {
  background: #f8fafc;
  padding: 80px 0;
}

.testimonial-card {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--medium-gray);
  line-height: 1.7;
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.testimonial-author {
  border-top: 3px solid var(--primary-blue);
  padding-top: 15px;
}

.testimonial-author strong {
  display: block;
  color: var(--dark-gray);
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 5px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 600;
}

.testimonial-author span {
  color: var(--medium-gray);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 80px 15px 60px;
    min-height: auto;
  }

  .page-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .page-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  .about-content-section,
  .key-info-section,
  .testimonials-section,
  .brochure-section {
    padding: 50px 15px;
  }

  .content-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .content-text .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .content-text .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .content-text p,
  .lead-text {
    text-align: center;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  }

  .content-image-wrapper {
    margin-top: 30px;
  }

  .info-box {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .info-icon i {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  .brochure-card {
    padding: 25px 20px;
  }

  .btn-download {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
  }
}

/* Laptop screens - Reduce content width */
@media (min-width: 1024px) and (max-width: 1920px) {
  .page-header .container,
  .about-section .container,
  .history-section .container,
  .values-section .container,
  .team-section .container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .value-card {
    padding: 25px 15px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .member-info {
    padding: 20px;
  }
}

/* About page specific styles will go here */

/* Responsive Design */
@media (max-width: 992px) {
  .about-section {
    padding: 60px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-card,
  .team-card,
  .stat-card {
    padding: 30px 26px;
    margin-bottom: 20px;
  }

  .about-title {
    font-size: 2.2rem;
    padding: 0 15px;
  }

  .about-description {
    padding: 0 15px;
  }

  .team-member img {
    width: 120px;
    height: 120px;
  }

  .about-section {
    padding: 40px 15px;
  }

  .about-card,
  .team-card,
  .stat-card {
    padding: 20px 15px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .team-member img {
    width: 100px;
    height: 100px;
  }
}