/* About Page Styles */

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/bg4.jpg') center/cover;
  opacity: 0.2;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight-text {
  color: #ffd700;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Company Overview Section */
.company-overview {
  padding: 80px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.overview-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 25px;
}

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

.company-highlights {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-item h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.highlight-item p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.overview-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.about-stats-section {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.about-stats-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.stats-grid-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card-about {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card-about:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-card-about img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.stat-card-about h3 {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 10px;
}

.stat-card-about p {
  font-size: 1rem;
  color: #555;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mv-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.mv-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Core Values Section */
.core-values {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.core-values h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

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

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

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

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

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

.reason-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  border-left: 4px solid #667eea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reason-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(102, 126, 234, 0.2);
  position: absolute;
  top: 20px;
  right: 20px;
}

.reason-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
}

.reason-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Industries Section */
.industries-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.industries-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.industry-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.industry-card h3 {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

/* CTA Section */
.about-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.about-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.cta-primary {
  background: white;
  color: #667eea;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
  background: transparent;
  color: white;
  padding: 15px 40px;
  border: 2px solid white;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
}

.contact-info {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid-about {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .overview-content h2,
  .about-stats-section h2,
  .core-values h2,
  .why-choose-us h2,
  .industries-section h2,
  .about-cta-section h2 {
    font-size: 2rem;
  }

  .stats-grid-about {
    grid-template-columns: 1fr;
  }

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

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

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-content h2,
  .about-stats-section h2,
  .core-values h2,
  .why-choose-us h2,
  .industries-section h2,
  .about-cta-section h2 {
    font-size: 1.8rem;
  }
}
