/*--------------------------------------------------------------
# About Us Page (Website-Aligned)
--------------------------------------------------------------*/

/* Overview Section */
.about-company-overview {
  padding: 100px 0;
  background: #fff;
}

.about-company-overview .overview-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-company-overview .overview-text h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-company-overview .overview-text h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--accent-color);
}

.about-company-overview .overview-text h3 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #1d3557;
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-company-overview .overview-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-company-overview .overview-illustration img {
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease;
}

.about-company-overview .overview-illustration:hover img {
  transform: translateY(-15px);
}

/* Stats Section */
.about-stats {
  padding: 60px 0;
  background: #f8fbfe;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.about-stats .stat-item {
  text-align: center;
  padding: 30px;
}

.about-stats .stat-item i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.about-stats .stat-item strong {
  font-size: 36px;
  font-weight: 800;
  color: #1d3557;
  display: block;
}

.about-stats .stat-item span {
  font-size: 15px;
  color: #6c7a89;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Vision & Mission Section */
.vm-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

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

.vm-card {
  background: #fff;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(71, 178, 228, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: 0.4s;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(71, 178, 228, 0.12);
}

.vm-card .vm-icon {
  width: 70px;
  height: 70px;
  background: #f0f7ff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 30px;
  transition: 0.3s;
}

.vm-card:hover .vm-icon {
  background: var(--accent-color);
  color: #fff;
  transform: rotate(10deg);
}

.vm-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: #1d3557;
  margin-bottom: 20px;
}

.vm-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .about-company-overview .overview-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-company-overview .overview-text h2 {
    justify-content: center;
  }
  
  .about-company-overview .overview-illustration {
    order: -1;
  }
  
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .vm-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .about-page-hero {
    padding: 100px 0 60px;
  }
}

@media (max-width: 575px) {
  .about-stats .stat-item {
    padding: 20px 10px;
  }
  
  .about-stats .stat-item strong {
    font-size: 30px;
  }
}

