
/* About Page Styles */

/* About Hero Section */
.about-hero {
  padding-top: 80px; /* Add enough space for navbar */ 
  position: relative;
  z-index: 1;
  height: 70vh;
  background: url('about-hero1.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
  background-size: 100% 100%;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.about-hero > * {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Company Story Section */
.company-story {
  padding: 80px 0;
  text-align: center;
  margin-left:6.5%
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #f8f9fa;
}

.stat h3 {
  font-size: 2.5rem;
  color: #8cbc46;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat p {
  color: #666;
  font-weight: 600;
  margin: 0;
}

.story-image img {
  margin-top: 7%;
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.mission-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
}

.mission-card i {
  font-size: 3rem;
  color: #8cbc46;
  margin-bottom: 20px;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.mission-card p {
  color: #666;
  line-height: 1.6;
}

.mission-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.mission-card li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.mission-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8cbc46;
  font-weight: bold;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.team-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #8cbc46;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #2c3e50;
}

.role {
  color: #8cbc46;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-member p:last-child {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: #2c3e50;
  color: white;
}

.process-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #8cbc46;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.process-step p {
  color: #bdc3c7;
  line-height: 1.6;
}

/* About CTA */
.about-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8cbc46 0%, #7aa93c 100%);
  color: white;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Button Styles */
.btn-secondary {
  background: white;
  color: #8cbc46;
  border: 2px solid white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: transparent;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1.1rem;
  }
  .about-hero {
    height: auto;
    padding: 4rem 20px 3rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .about-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .story-stats {
    grid-template-columns: 1fr;
  }

  .stat h3 {
    font-size: 2rem;
  }
}
