/* About Us Page Specific Styles */

/* About Hero Section */
.about-hero-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.about-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.about-hero-content {
  color: #ffffff;
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #4a9b8e;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb i {
  font-size: 12px;
}

.about-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 600px;
}

/* Company Story Section */
.company-story-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-left {
  max-width: 500px;
}

.story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
  font-weight: 400;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text strong {
  color: #1a3d3a;
  font-weight: 600;
}

.story-right {
  display: flex;
  justify-content: center;
}

.story-image {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(26, 61, 58, 0.9);
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.founder-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
}

.founder-info p {
  font-size: 14px;
  color: #4a9b8e;
  font-weight: 500;
  margin: 0;
}

/* Mission Vision Values Section */
.mvv-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.mvv-header {
  text-align: center;
  margin-bottom: 80px;
}

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

.mvv-card {
  background: #ffffff;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a3d3a 0%, #4a9b8e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
}

.mvv-icon i {
  font-size: 32px;
  color: #ffffff;
}

.mvv-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a3d3a;
  margin-bottom: 20px;
}

.mvv-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  font-weight: 400;
}

.mvv-card ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

.mvv-card li {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
  padding-left: 0;
}

.mvv-card li:last-child {
  margin-bottom: 0;
}

.mvv-card li strong {
  color: #1a3d3a;
  font-weight: 600;
}

/* Achievements Section */
.achievements-section {
  padding: 100px 0;
  background-color: #1a3d3a;
  color: #ffffff;
}

.achievements-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.achievements-left {
  max-width: 400px;
}

.achievements-left .section-tagline {
  color: #d4af37;
}

.achievements-left .section-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.achievements-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.achievement-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.achievement-year {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1a3d3a;
  font-size: 18px;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 8px;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.achievement-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.achievement-content p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
  margin-top: 20px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-choose-card {
  text-align: center;
  padding: 40px 20px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.why-choose-card:hover {
  background-color: #f8f9fa;
  transform: translateY(-5px);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4a9b8e 0%, #1a3d3a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
}

.why-choose-icon i {
  font-size: 28px;
  color: #ffffff;
}

.why-choose-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a3d3a;
  margin-bottom: 15px;
}

.why-choose-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  font-weight: 400;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
  margin-top: 20px;
}

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

.team-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 30px 25px;
  text-align: center;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a3d3a;
  margin-bottom: 5px;
}

.team-position {
  font-size: 14px;
  color: #4a9b8e;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-info .team-description {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #f8f9fa;
  color: #1a3d3a;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 14px;
}

.team-social a:hover {
  background-color: #4a9b8e;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Certifications Section */
.certifications-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.certifications-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.certifications-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
  margin-top: 20px;
}

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

.certification-card {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.certification-card:hover {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.certification-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.certification-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.certification-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a3d3a;
  margin-bottom: 15px;
}

.certification-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 42px;
  }

  .story-content {
    gap: 60px;
  }

  .achievements-content {
    gap: 60px;
  }

  .achievements-left .section-title {
    font-size: 36px;
  }

  .achievements-grid {
    gap: 30px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    height: 50vh;
    min-height: 350px;
  }

  .about-hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .about-hero-description {
    font-size: 16px;
  }

  .company-story-section {
    padding: 60px 0;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .story-right {
    order: -1;
  }

  .story-image {
    max-width: 300px;
  }

  .story-image img {
    height: 400px;
  }

  .mvv-section {
    padding: 60px 0;
  }

  .mvv-header {
    margin-bottom: 50px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .achievements-section {
    padding: 60px 0;
  }

  .achievements-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .achievements-left .section-title {
    font-size: 28px;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-header {
    margin-bottom: 50px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .team-section {
    padding: 60px 0;
  }

  .team-header {
    margin-bottom: 50px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .certifications-section {
    padding: 60px 0;
  }

  .certifications-header {
    margin-bottom: 50px;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    height: 40vh;
    min-height: 300px;
  }

  .about-hero-title {
    font-size: 24px;
  }

  .about-hero-description {
    font-size: 14px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .company-story-section {
    padding: 40px 0;
  }

  .story-image {
    max-width: 250px;
  }

  .story-image img {
    height: 350px;
  }

  .founder-info {
    padding: 15px;
  }

  .founder-info h3 {
    font-size: 18px;
  }

  .mvv-section {
    padding: 40px 0;
  }

  .mvv-card {
    padding: 30px 20px;
  }

  .mvv-icon {
    width: 60px;
    height: 60px;
  }

  .mvv-icon i {
    font-size: 24px;
  }

  .mvv-card h3 {
    font-size: 20px;
  }

  .achievements-section {
    padding: 40px 0;
  }

  .achievements-left .section-title {
    font-size: 24px;
  }

  .achievement-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .achievement-year {
    align-self: center;
  }

  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-card {
    padding: 30px 15px;
  }

  .team-section {
    padding: 40px 0;
  }

  .team-info {
    padding: 25px 20px;
  }

  .certifications-section {
    padding: 40px 0;
  }

  .certification-card {
    padding: 30px 15px;
  }

  .certification-logo {
    width: 80px;
    height: 80px;
  }

  .certification-logo img {
    width: 50px;
    height: 50px;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}
