/* About Page — dark, cinematic, gold-accented */

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 60px;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/Company-website/images/Background-img/hero-bg.png") center/cover;
  z-index: -2;
  opacity: 0.8;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
  z-index: -1;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.2px;
  color: var(--text-primary);
  text-shadow: 0 0 24px var(--shadow-light);
  margin-bottom: 16px;
}

.about-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  position: absolute;
  left: 24px;
  top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent-primary);
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background: var(--bg-primary);
  border-top: 1px solid rgba(230, 184, 0, 0.1);
  border-bottom: 1px solid rgba(230, 184, 0, 0.1);
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.mission-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--shadow-dark);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.mission-image:hover img {
  transform: scale(1.03);
}

.mission-content {
  display: grid;
  gap: 40px;
}

.mission-block {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.gold-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.gold-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent-primary);
}

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/Company-website/images/Background-img/hero-bg.png") center/cover;
  opacity: 0.15;
  z-index: 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-primary);
  text-align: right;
  padding-right: 40px;
  position: relative;
}

.timeline-year::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-primary);
  border: 4px solid var(--bg-secondary);
}

.timeline-content {
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px var(--shadow-dark);
  position: relative;
  margin-left: 40px;
}

.timeline-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.certification-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-dark);
  border-color: rgba(230, 184, 0, 0.3);
}

.cert-icon {
  font-size: 40px;
  color: var(--accent-primary);
  margin-bottom: 20px;
}

.certification-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.certification-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Solutions Section */
.solutions-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.solution-card {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.solution-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-bg {
  transform: scale(1.1);
}

.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.solution-overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.solution-overlay p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-dark);
  border-color: rgba(230, 184, 0, 0.3);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--accent-primary);
  box-shadow: 0 0 0 4px var(--bg-secondary);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.team-member p {
  color: var(--text-muted);
  font-size: 14px;
}

/* CTA Section */
.about-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
}

.about-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/Company-website/images/background/hero-bg.png") center/cover;
  z-index: -2;
}

.about-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
  z-index: -1;
}

.about-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mission-container {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  
  .timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: 40px;
    margin-bottom: 10px;
  }
  
  .timeline-year::after {
    left: 10px;
    right: auto;
  }
  
  .timeline-content {
    margin-left: 0;
    margin-top: 20px;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: 30px 15px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}