/* =====================================================
   ABOUT PAGE - Premium Ecommerce Design
   ===================================================== */

/* About Section Main Styles */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-section .container {
  max-width: 1440px;
}

/* Section Title */
.about-section .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-transform: capitalize;
  line-height: 1.2;
}

.about-section .section-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 50px;
  max-width: 700px;
  line-height: 1.8;
}

/* Vision & Mission Box */
.vision-mission-section {
  padding: 80px 0;
  background: #fff;
}

.vision-mission-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
}

.vision-box,
.mission-box {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vision-box:hover,
.mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vision-box {
  border-left: 5px solid #ec8951;
}

.mission-box {
  border-left: 5px solid #f0583d;
}

.vision-box .vm-icon,
.mission-box .vm-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ec8951 0%, #f0583d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.vision-box .vm-icon i,
.mission-box .vm-icon i {
  font-size: 28px;
  color: #fff;
}

.vision-box .vm-title,
.mission-box .vm-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.vision-box .vm-text,
.mission-box .vm-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
}

/* Image Box */
.about-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-box:hover img {
  transform: scale(1.05);
}

.about-image-box .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #fff;
  padding: 25px 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image-box .experience-badge .number {
  font-size: 48px;
  font-weight: 800;
  color: #ec8951;
  line-height: 1;
}

.about-image-box .experience-badge .text {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* Content Box */
.about-content-box {
  padding: 30px 0;
}

.about-content-box .content-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content-box .content-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Feature Cards */
.about-features {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-features .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.about-features .section-subtitle {
  font-size: 15px;
  color: #777;
  margin-bottom: 50px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-card .icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ec8951 0%, #f0583d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon-box i {
  font-size: 32px;
  color: #fff;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Team Section */
.about-team {
  padding: 80px 0;
  background: #fff;
}

.about-team .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.about-team .section-subtitle {
  font-size: 15px;
  color: #777;
  margin-bottom: 50px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  text-align: center;
  margin-bottom: 30px;
}

.team-card .image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card .image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.team-card .social-links {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px;
  display: flex;
  justify-content: center;
  gap: 15px;
  transition: bottom 0.3s ease;
}

.team-card:hover .social-links {
  bottom: 0;
}

.team-card .social-links a {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ec8951 0%, #f0583d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.team-card .social-links a:hover {
  transform: scale(1.1);
}

.team-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.team-card .designation {
  font-size: 14px;
  color: #777;
}

/* Stats Section */
.about-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #ec8951 0%, #f0583d 100%);
}

.stat-item {
  text-align: center;
  padding: 30px;
  color: #fff;
}

.stat-item .stat-number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item .stat-number span {
  font-size: 36px;
}

.stat-item .stat-text {
  font-size: 16px;
  opacity: 0.9;
}

/* CTA Section */
.about-cta {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.about-cta .cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.about-cta .cta-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .btn {
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  margin: 5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  .about-section .section-title {
    font-size: 32px;
  }

  .about-story-box {
    padding: 35px;
  }

  .about-story-box .story-title {
    font-size: 28px;
  }

  .about-image-box img {
    height: 350px;
  }

  .about-image-box .experience-badge {
    bottom: 20px;
    left: 20px;
    padding: 18px 25px;
  }

  .about-image-box .experience-badge .number {
    font-size: 36px;
  }

  .about-content-box .content-title {
    font-size: 26px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .stat-item .stat-number {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 40px 0;
  }

  .about-section .section-title {
    font-size: 28px;
  }

  .about-section .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .vision-mission-section {
    padding: 50px 0;
  }

  .vision-mission-section .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .vision-box,
  .mission-box {
    padding: 30px;
  }

  .vision-box .vm-title,
  .mission-box .vm-title {
    font-size: 22px;
  }

  .vision-box .vm-text,
  .mission-box .vm-text {
    font-size: 14px;
  }

  .about-image-box {
    margin-bottom: 30px;
  }

  .about-image-box img {
    height: 280px;
  }

  .about-image-box .experience-badge {
    padding: 15px 20px;
    bottom: 15px;
    left: 15px;
  }

  .about-image-box .experience-badge .number {
    font-size: 28px;
  }

  .about-image-box .experience-badge .text {
    font-size: 12px;
  }

  .about-content-box {
    padding: 20px 0;
  }

  .about-content-box .content-title {
    font-size: 22px;
  }

  .about-content-box .content-text {
    font-size: 14px;
  }

  .about-features,
  .about-team,
  .about-stats,
  .about-cta {
    padding: 50px 0;
  }

  .about-features .section-title,
  .about-team .section-title {
    font-size: 28px;
  }

  .stat-item .stat-number {
    font-size: 36px;
  }

  .stat-item .stat-number span {
    font-size: 24px;
  }

  .stat-item .stat-text {
    font-size: 14px;
  }

  .about-cta .cta-title {
    font-size: 28px;
  }

  .about-cta .cta-text {
    font-size: 14px;
  }

  .team-card .image-wrapper img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .about-story-box::before {
    width: 200px;
    height: 200px;
  }

  .feature-card .icon-box {
    width: 60px;
    height: 60px;
  }

  .feature-card .icon-box i {
    font-size: 24px;
  }

  .feature-card h4 {
    font-size: 18px;
  }

  .team-card .social-links a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}