/* About Section */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8faf8 0%, #ffffff 100%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.company-story {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.story-text h3 {
  font-size: 2rem;
  color: #2d3e2e;
  margin-bottom: 1.5rem;
  position: relative;
}

.story-text h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 2px;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a6b5a;
}

.company-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-box {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(81, 105, 83, 0.1);
  border-left: 4px solid #7fb069;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #516953;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 0.9rem;
  color: #5a6b5a;
  font-weight: 500;
}

/* Founder Profile */
.founder-profile {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 5rem;
  box-shadow: 0 8px 30px rgba(81, 105, 83, 0.1);
  border-top: 4px solid #7fb069;
}

.founder-header {
  text-align: center;
  margin-bottom: 2rem;
}

.founder-header h3 {
  font-size: 2.2rem;
  color: #2d3e2e;
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: 1.1rem;
  color: #7fb069;
  font-weight: 600;
  background: rgba(127, 176, 105, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.founder-details {
  margin-top: 2rem;
}

.education {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(81, 105, 83, 0.05);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.education i {
  color: #7fb069;
  font-size: 1.2rem;
}

.education span {
  font-weight: 600;
  color: #2d3e2e;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.exp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(127, 176, 105, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.exp-item:hover {
  background: rgba(127, 176, 105, 0.1);
  transform: translateX(5px);
}

.exp-item i {
  color: #7fb069;
  font-size: 1.1rem;
  width: 20px;
}

.exp-item span {
  color: #2d3e2e;
  font-weight: 500;
}

/* Achievements Section */
.projects-achievements {
  margin-bottom: 5rem;
}

.projects-achievements h3 {
  font-size: 2rem;
  color: #2d3e2e;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.projects-achievements h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 2px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.achievement-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(81, 105, 83, 0.1);
  transition: transform 0.3s ease;
  border-top: 3px solid transparent;
}

.achievement-item:hover {
  transform: translateY(-8px);
  border-top-color: #7fb069;
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.achievement-icon i {
  font-size: 2rem;
  color: white;
}

.achievement-item h4 {
  font-size: 1.3rem;
  color: #2d3e2e;
  margin-bottom: 1rem;
}

.achievement-item p {
  color: #5a6b5a;
  line-height: 1.6;
}

/* Current Projects */
.current-projects h3 {
  font-size: 2rem;
  color: #2d3e2e;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.current-projects h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 2px;
}

.current-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.current-item {
  background: linear-gradient(
    135deg,
    rgba(81, 105, 83, 0.05),
    rgba(127, 176, 105, 0.05)
  );
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border-left: 5px solid #7fb069;
  transition: all 0.3s ease;
}

.current-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(81, 105, 83, 0.15);
}

.current-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.current-icon i {
  font-size: 1.8rem;
  color: white;
}

.current-item h4 {
  font-size: 1.4rem;
  color: #2d3e2e;
  margin-bottom: 1rem;
}

.current-item p {
  color: #5a6b5a;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .company-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-profile {
    padding: 2rem;
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .achievements-grid,
  .current-grid {
    grid-template-columns: 1fr;
  }

  .story-text h3,
  .projects-achievements h3,
  .current-projects h3 {
    font-size: 1.8rem;
  }

  .founder-header h3 {
    font-size: 1.8rem;
  }
}
