/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* About Content Section */
.about-content {
  padding: 80px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.05);
}

/* Vision Mission Section */
.vision-mission {
  padding: 80px 0;
  background: #f8f9fa;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vm-card {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: transform 0.3s ease;
}

.vm-card:hover .vm-icon {
  transform: scale(1.1);
}

.vm-icon i {
  font-size: 2rem;
  color: white;
}

.vm-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.vm-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
}

/* CEO Section */
.ceo-section {
  padding: 80px 0;
  background: white;
}

.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ceo-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ceo-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.ceo-content h3 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.ceo-title {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 2rem;
  font-style: italic;
}

.ceo-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.ceo-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
}

.ceo-signature p {
  margin-bottom: 0.5rem;
  color: #333;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-icon i {
  font-size: 1.8rem;
  color: white;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Achievements Section */
.achievements {
  padding: 80px 0;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.achievement-item {
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: scale(1.05);
}

.achievement-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.achievement-text {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .about-grid,
  .vm-grid,
  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ceo-grid {
    text-align: center;
  }

  .about-text h2,
  .ceo-content h2 {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .vm-card,
  .value-card {
    padding: 2rem;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .achievement-number {
    font-size: 2.5rem;
  }
}
