/* Reset and Base Styles */



.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About Hero Section */
.about-hero-section {
  background: linear-gradient(
      rgba(35, 40, 35, 0.9),
      /* Fresh green */ rgba(39, 174, 96, 0.85) /* Deeper natural green */
    ),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80")
      no-repeat center center/cover;
  padding: 120px 0;
  text-align: center;
  color: white;
}

.about-hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.about-hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease;
}

.about-primary-btn {
  display: inline-block;
  background: #2ecc71; /* Fresh green */
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-primary-btn:hover {
  background: #27ae60; /* Darker green on hover */
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* About Content Section */
.about-story-section {
  padding: 80px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-story-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about-story-text {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #555;
}

.about-story-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-story-image:hover img {
  transform: scale(1.05);
}

/* Features Section */
.about-features-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
}

.about-section-heading {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.about-section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #2e86de;
}

.about-section-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  background: white;
}

.about-feature-card:hover {
  transform: translateY(-10px);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: #2e86de;
  margin-bottom: 20px;
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(46, 134, 222, 0.1);
}

.about-feature-title {
  margin-bottom: 15px;
  color: #2c3e50;
}
/* Service Areas */
.about-service-section {
  padding: 80px 0;
  background: linear-gradient(
    to right,
    #2ecc71,
    #27ae60
  ); /* Fresh green theme */
  color: white;
  text-align: center;
}

.about-service-section .about-section-title {
  max-width: 800px;
  margin: 0 auto 50px;
}

.about-service-section .about-section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.about-service-section .about-section-subtitle {
  font-size: 1.1rem;
  color: #f1f1f1;
}

/* India Map */
.about-india-map {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.about-india-map img {
  width: 100%;
  opacity: 0.95;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Cities List */
.about-cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.about-city-item {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(5px);
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-city-item:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.35);
}

/* Testimonials */
.about-testimonials-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.about-testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: rgba(39, 174, 96, 0.85);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.about-testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
  position: relative;
  z-index: 1;
}

.about-testimonial-author {
  display: flex;
  align-items: center;
}

.about-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #2e86de;
}

.about-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-author-details h4 {
  color: #2c3e50;
  margin-bottom: 5px;
}

/* CTA Section */
.about-cta-section {
  padding: 80px 0;
  margin-bottom: 5vw;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/images/cleanzaabout.jpg")
      no-repeat center center/cover;
  color: white;
}

.about-cta-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-cta-text {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* Stats Section */
.about-stats-section {
  padding: 80px 0;
  background: white;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.about-stat-item {
  padding: 20px;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e86de;
  margin-bottom: 10px;
}

.about-stat-text {
  color: #7f8c8d;
  font-weight: 500;
}

/* Team Section */
.about-team-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-team-member {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.about-team-member:hover {
  transform: translateY(-5px);
}

.about-team-image {
  height: 250px;
  overflow: hidden;
}

.about-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-team-member:hover .about-team-image img {
  transform: scale(1.1);
}

.about-team-details {
  padding: 20px;
  text-align: center;
}

.about-team-name {
  color: #2c3e50;
  margin-bottom: 5px;
}

.about-team-role {
  color: #2e86de;
  font-weight: 500;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-story-grid,
  .about-features-grid,
  .about-testimonials-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-image {
    order: -1;
  }

  .about-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .about-section-heading {
    font-size: 2rem;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
