/* About Page Specific Styles */

/* Hero Section with Background Image */
.about-hero {
  width: 100%;
  height: 500px;
  position: relative;
  background-image: url('../assets/about_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  text-align: center;
  color: #fff;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.about-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Sections */
.about-section {
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin: 0 0 50px 0;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #526CAC, #3f5889);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Introduction Section */
.about-intro {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 25px 0;
  text-align: justify;
}

/* Story Section */
.story-section {
  background: #f8f9fa;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #526CAC, #3f5889);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 30px;
}

.story-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  margin: 0;
}

/* Values Section */
.values-section {
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.value-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #526CAC, #3f5889);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 25px;
}

.value-title {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 15px 0;
}

.value-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Contact Section */
.contact-section {
  background: #f8f9fa;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.contact-item {
  text-align: center;
  padding: 30px 20px;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #526CAC, #3f5889);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 20px;
}

.contact-details h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.contact-details a {
  color: #526CAC;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #3f5889;
  text-decoration: underline;
}

.company-name {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

.company-name p {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-hero {
    height: 400px;
  }

  .about-hero-title {
    font-size: 46px;
  }

  .about-hero-subtitle {
    font-size: 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 350px;
  }

  .about-hero-title {
    font-size: 38px;
  }

  .about-hero-subtitle {
    font-size: 18px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .intro-text,
  .story-text {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }

  .story-icon {
    width: 70px;
    height: 70px;
  }

  .value-card {
    padding: 35px 25px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
  }

  .value-title {
    font-size: 22px;
  }

  .value-description {
    font-size: 15px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
  }

  .contact-details h4 {
    font-size: 18px;
  }

  .contact-details p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 300px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }

  .about-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .section-title::after {
    width: 60px;
    height: 3px;
    margin-top: 15px;
  }

  .intro-text,
  .story-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .story-icon {
    width: 60px;
    height: 60px;
  }

  .values-grid {
    gap: 25px;
  }

  .value-card {
    padding: 30px 20px;
  }

  .value-icon {
    width: 55px;
    height: 55px;
  }

  .value-title {
    font-size: 20px;
  }

  .value-description {
    font-size: 14px;
  }

  .contact-item {
    padding: 25px 15px;
  }

  .contact-icon {
    width: 55px;
    height: 55px;
  }

  .contact-icon svg {
    width: 28px;
    height: 28px;
  }

  .contact-details h4 {
    font-size: 17px;
  }

  .contact-details p {
    font-size: 14px;
  }

  .company-name p {
    font-size: 18px;
  }
}

