body {
    background: #fafafa;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.about-header {
    background-color: #EC1D26;
    color: #fff;
    padding: 32px 0 18px 0;
    text-align: center;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.about-main {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 16px;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.about-card .about-content {
    flex: 1 1 320px;
    padding: 32px 28px 32px 32px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card .about-img {
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 340px;
    height: 220px;
    object-fit: cover;
    width: 100%;
    background: #eee;
}

.about-card.reverse {
    flex-direction: row-reverse;
}

.about-card .about-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    color: #222;
}

.about-card .about-content .about-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    margin-bottom: 2px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-card .about-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0;
}

.about-card .about-content b {
    font-weight: 600;
    color: #222;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 16px;
    gap: 12px;
}

.about-stat {
    flex: 1 1 0;
    text-align: center;
    padding: 0 8px;
}

.about-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #262c7a;
    margin-bottom: 2px;
}

.about-stat .stat-label {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    margin-bottom: 0;
}

.about-clients {
  background: #fafafa;
}
.client-card {
  background: #ededed;
  border-radius: 10px;
  padding: 28px 18px 18px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.client-quote {
  font-size: 1rem;
  font-style: italic;
  color: #444;
  margin-bottom: 16px;
}
.client-name {
  font-weight: 600;
  color: #222;
  font-size: 0.98rem;
}
@media (max-width: 900px) {

    .about-main,
    .about-stats {
        max-width: 100%;
        padding: 0 6px;
    }

    .about-card .about-content {
        padding: 24px 12px 24px 12px;
    }

    .about-card .about-img {
        height: 160px;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .about-title {
        font-size: 1.3rem;
    }

    .about-card {
        flex-direction: column !important;
    }

    .about-card .about-img {
        height: 140px;
    }

    .about-stats {
        flex-direction: column;
        gap: 18px;
        margin-top: 28px;
    }
  .about-clients {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
  .client-card {
    padding: 18px 8px 12px 8px;
  }
}/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Animation Utility Classes */
.animate-fade {
  animation: fadeInUp 0.8s ease-out both;
}

.animate-zoom {
  animation: zoomIn 0.6s ease-out both;
}

.animate-delay-1 {
  animation-delay: 0.3s;
}
.animate-delay-2 {
  animation-delay: 0.6s;
}
.animate-delay-3 {
  animation-delay: 0.9s;
}
