/* Page Hero Section */
.page-hero {
  position: relative;
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/about-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

/* Company Overview Section */
.company-overview {
  padding: 6rem 0;
  background: #f8fafc;
}

.overview-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.overview-content h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.overview-content p {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Mission Vision Section */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.mission, .vision {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

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

.mission h3, .vision h3 {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.mission h3 i, .vision h3 i {
  margin-right: 1rem;
  font-size: 2rem;
}

.mission p, .vision p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Core Services Section */
.core-services {
  padding: 6rem 0;
  background: #fff;
}

.core-services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-box {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-box i {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.service-box h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-box ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-box ul li {
  color: #4b5563;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-box ul li:before {
  content: "•";
  color: #2563eb;
  position: absolute;
  left: 0;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: #f8fafc;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #4b5563;
  line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
  padding: 6rem 0;
  background: #fff;
}

.leadership-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.leadership-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.leader-card {
  text-align: center;
  background: #f8fafc;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.leader-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #2563eb;
}

.leader-image img {
  width: 100%;
  /* height: 90; */
  object-fit: cover;
}

.leader-card h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.leader-title {
  font-size: 1.1rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.leader-social a {
  color: #4b5563;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.leader-social a:hover {
  color: #2563eb;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

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

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

  .overview-content,
  .mission-vision,
  .services-grid,
  .features-grid {
    padding: 0 1rem;
  }

  .service-box,
  .feature-card {
    padding: 1.5rem;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leader-image {
    width: 180px;
    height: 180px;
  }
}

/* Additional Responsive Adjustments */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .overview-content h2,
  .why-choose-us h2 {
    font-size: 2rem;
  }

  .mission h3, .vision h3 {
    font-size: 1.5rem;
  }

  .service-box i,
  .feature-card i {
    font-size: 2rem;
  }
}