/* About Page Styles */
/* Variables */
/* Mixins */
/* Media Query Breakpoints */
/* Page Header - About specific styling */
.page-header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/h2.avif");
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/h2.avif");
}

/* About Story Section */
.about-story {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
}

.about-story__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 500px;
          flex: 1 1 500px;
}

.about-story__text {
  max-width: 800px;
}

.about-story__paragraph {
  margin-bottom: 2rem;
  font-size: 1.7rem;
  line-height: 1.8;
}

.about-story__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}

.about-story__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mission Values */
.mission-values {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.mission-values__item {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mission-values__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.mission-values__icon {
  font-size: 4rem;
  color: #c46e1c;
  margin-bottom: 2rem;
}

.mission-values__title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #343a40;
  margin-bottom: 2rem;
}

.mission-values__text {
  color: #6c757d;
  font-size: 1.6rem;
  line-height: 1.8;
}

.mission-values__list {
  text-align: left;
  padding-left: 2rem;
}

.mission-values__list li {
  color: #6c757d;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.mission-values__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #c46e1c;
  border-radius: 50%;
}

/* Team Section */
.team {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(280px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
}

.team__member {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team__member:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.team__member:hover .team__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.team__image {
  height: 280px;
  overflow: hidden;
}

.team__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.team__info {
  padding: 2rem;
}

.team__name {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}

.team__position {
  font-size: 1.5rem;
  color: #c46e1c;
  margin-bottom: 1.5rem;
}

.team__bio {
  font-size: 1.5rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.team__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.team__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #e9ecef;
  border-radius: 50%;
  color: #343a40;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team__social-link:hover {
  background-color: #c46e1c;
  color: #ffffff;
}

/* Testimonials Section */
.testimonials {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(350px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 3rem;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonial:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.testimonial__content {
  margin-bottom: 2rem;
}

.testimonial__rating {
  color: #ffc107;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.testimonial__text {
  font-size: 1.6rem;
  color: #6c757d;
  line-height: 1.8;
  font-style: italic;
}

.testimonial__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
}

.testimonial__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial__name {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.3rem;
}

.testimonial__date {
  font-size: 1.4rem;
  color: #6c757d;
}

/* Certifications Section */
.certifications {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}

.certifications__item {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 220px;
          flex: 0 1 220px;
}

.certifications__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.certifications__img {
  max-width: 200px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.certifications__name {
  font-size: 1.5rem;
  color: #6c757d;
}

/* CTA Section */
.cta {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/cta.avif");
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cta.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
  color: #ffffff;
  text-align: center;
}

.cta__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta__title {
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta__text {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta__btn {
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
}

/* Media Queries */
@media (max-width: 992px) {
  .about-story {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .mission-values {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 3rem;
  }
  .testimonials {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .certifications {
    gap: 2rem;
  }
  .cta__title {
    font-size: 3rem;
  }
  .cta__text {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .testimonial {
    padding: 2rem;
  }
  .team {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .cta {
    padding: 6rem 0;
  }
  .cta__title {
    font-size: 2.5rem;
  }
}
/*# sourceMappingURL=about.css.map */