/* About Page Specific Styles */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.header-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.header-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Introduction Section */
.introduction-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
}

.intro-text h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
  border-radius: 2px;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.product-list li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: #444;
}

.product-list li i {
  color: #667eea;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.intro-visual {
  position: relative;
  text-align: center;
}

.intro-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.intro-image:hover {
  transform: translateY(-10px);
}

/* Vision & Mission Section */
.vision-mission-section {
  padding: 100px 0;
  background: #2c3e50;
  color: white;
}

.vision-mission-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-card,
.mission-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  border-left: 4px solid #667eea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-card h2,
.mission-card h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 1.5rem;
  position: relative;
}

.vision-card p,
.mission-card p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-style: italic;
}

/* Responsive adjustments for Vision & Mission */
@media (max-width: 768px) {
  .vision-mission-section {
    padding: 60px 0;
  }

  .vision-card,
  .mission-card {
    padding: 30px 20px;
  }

  .vision-card h2,
  .mission-card h2 {
    font-size: 1.5rem;
  }

  .vision-card p,
  .mission-card p {
    font-size: 1.1rem;
  }
}

/* Specialization Section */
.specialization-section {
  padding: 100px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.specialization-subtitle {
  font-size: 1.3rem;
  color: #667eea;
  font-weight: 600;
  margin-top: 1rem;
}

.specialization-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.spec-card {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.spec-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.spec-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Team & Investor Section */
.team-investor-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.team-section {
  margin-bottom: 80px;
}

.team-section .section-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 2rem;
  text-align: center;
}

.team-container {
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  background: white;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  justify-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member {
  text-align: center;
  max-width: 300px;
}

.member-image {
  margin-bottom: 20px;
}

.member-image img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 8px;
}

.team-member p {
  font-size: 1.1rem;
  color: #374151;
  font-weight: 500;
  margin: 0;
}

/* Investor Section */
.investor-section {
  margin-top: 40px;
}

.investor-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.investor-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #1e40af;
  border-radius: 2px;
}

.investor-container {
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  background: white;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  justify-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.investor-item {
  text-align: center;
  max-width: 300px;
}

.investor-logo {
  margin-bottom: 20px;
}

.investor-logo img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  width: 180px;
  height: 120px;
}

.investor-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 12px;
}

.investor-item p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* Company Overview Section */
.company-overview {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.overview-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.overview-content h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}

.overview-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0.95;
}

/* History Timeline Section */
.history-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 60px 0;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 120px;
  text-align: center;
  position: relative;
  z-index: 2;
  font-family: "Orbitron", sans-serif;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 40px;
  flex: 1;
  max-width: 400px;
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.timeline-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Facilities Section */
.facilities-section {
  padding: 100px 0;
  background: white;
}

.facilities-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.facilities-visual {
  position: relative;
}

.facilities-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.facilities-list {
  display: grid;
  gap: 25px;
}

.facility-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.facility-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.facility-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.facility-info p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.value-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .intro-content,
  .specialization-content,
  .facilities-content,
  .team-container,
  .investor-container,
  .vision-mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    margin: 0;
  }

  .timeline-content {
    margin-left: 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 250px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-content h1 {
    font-size: 2.5rem;
  }

  .section-header h2,
  .intro-text h2,
  .overview-content h2,
  .cta-content h2,
  .team-section .section-header h2,
  .investor-title,
  .vision-card h2,
  .mission-card h2 {
    font-size: 2rem;
  }

  .intro-content,
  .specialization-content,
  .facilities-content,
  .team-container,
  .investor-container,
  .vision-mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 70px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    min-width: 80px;
    font-size: 1.2rem;
    padding: 10px 15px;
  }

  .timeline-content {
    margin: 0;
    max-width: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-content h1 {
    font-size: 2rem;
  }

  .section-header h2,
  .intro-text h2,
  .overview-content h2,
  .cta-content h2,
  .team-section .section-header h2,
  .investor-title,
  .vision-card h2,
  .mission-card h2 {
    font-size: 2rem;
  }

  .spec-card,
  .value-card {
    padding: 30px 20px;
  }

  .timeline-content {
    padding: 20px;
  }

  .intro-content,
  .specialization-content,
  .facilities-content,
  .team-container,
  .investor-container,
  .vision-mission-content {
    gap: 30px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-year {
    font-size: 1.2rem;
    padding: 10px 15px;
  }

  .facility-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .team-investor-section {
    padding: 60px 0;
  }

  .team-section {
    margin-bottom: 60px;
  }
}

/* Animation Classes */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left-element {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left-element.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right-element {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right-element.visible {
  opacity: 1;
  transform: translateX(0);
}
