@import url("https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap");
@font-face {
  font-family: "Vazir";
  font-weight: normal;
  src: url("../fonts/Vazir.ttf") format("truetype");
}
@font-face {
  font-family: "Vazir";
  font-weight: bold;
  src: url("../fonts/Vazir-Bold.ttf") format("truetype");
}
.about-hero {
  text-align: center;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(180deg, rgba(3, 24, 29, 0.03) 0%, transparent 100%);
  border-bottom: 1px solid rgba(3, 24, 29, 0.06);
}
.about-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #03181d;
  margin: 0 0 0.6rem;
}
.about-hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #FF6B35;
  border-radius: 2px;
  margin: 0.8rem auto 0;
}
.about-hero p {
  font-size: 1.1rem;
  color: #777;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-hero {
    padding: 2rem 1rem 1.5rem;
  }
  .about-hero h1 {
    font-size: 1.6rem;
  }
  .about-hero h1::after {
    width: 40px;
    height: 3px;
  }
  .about-hero p {
    font-size: 0.95rem;
  }
}

.about-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.about-section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #03181d;
  margin: 0;
  position: relative;
  display: inline-block;
}
.about-section-title h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #FF6B35;
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

.about-split {
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto;
}

.about-split-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
}
.about-split-text h1, .about-split-text h2, .about-split-text h3, .about-split-text h4 {
  color: #03181d;
  margin-top: 1.5rem;
}
.about-split-text p {
  margin-bottom: 1rem;
}
.about-split-text ul, .about-split-text ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.about-split-text ul li, .about-split-text ol li {
  margin-bottom: 0.5rem;
}

.about-values {
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

.about-value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.about-value-card:hover .about-value-icon {
  background: #FF6B35;
  color: white;
  transform: scale(1.1);
}
.about-value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #03181d;
  margin: 1rem 0 0.5rem;
}
.about-value-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.about-value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #FF6B35;
  transition: all 0.3s ease;
}

.about-stats {
  padding: 0 2rem;
  margin: 4rem auto;
}

.about-stats-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #03181d 0%, rgb(2.1139705882%, 16.9117647059%, 20.4350490196%) 100%);
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .about-stats-container {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
}

.about-stat-item {
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-align: center;
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #FF6B35;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .about-stat-number {
    font-size: 2.2rem;
  }
}

.about-stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: #FF6B35;
}
@media screen and (max-width: 768px) {
  .about-stat-plus {
    font-size: 1.5rem;
  }
}

.about-stat-label {
  width: 100%;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.3rem;
  font-weight: 400;
}

.about-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .about-stat-divider {
    display: none;
  }
}

.about-team {
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
@media screen and (max-width: 600px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

.about-team-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.about-team-card:hover .about-team-img img {
  transform: scale(1.08);
}

.about-team-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.about-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-team-info {
  padding: 1.25rem;
  text-align: center;
}
.about-team-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #03181d;
  margin: 0 0 0.3rem;
}

.about-team-post {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FF6B35;
  display: block;
  margin-bottom: 0.5rem;
}

.about-team-info p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.about-cta {
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto;
}

.about-cta-container {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #03181d 0%, rgb(2.6764705882%, 21.4117647059%, 25.8725490196%) 100%);
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.about-cta-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.75rem;
}
@media screen and (max-width: 768px) {
  .about-cta-container h2 {
    font-size: 1.4rem;
  }
}
.about-cta-container p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .about-cta-container p {
    font-size: 0.95rem;
  }
}

.about-cta-button {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background: #FF6B35;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.about-cta-button:hover {
  background: rgb(100%, 49.287516987%, 30.7843137255%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

@media (max-width: 1000px) {
  .maps-book {
    width: 100%;
  }
}

/*# sourceMappingURL=about.css.map */
