/* About Page Styles */

/* Hero section */
.about-hero-container {
  position: relative;
  z-index: 10;
}

/* Story Section */
.about-story-col {
  padding-right: 40px;
  margin-bottom: 30px;
}

.about-section-title {
  margin-bottom: 30px;
}

.about-story-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

.about-story-text-last {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
  text-align: justify;
}

/* Parallax Box */
.about-parallax-col {
  position: relative;
  z-index: 10;
}

.about-parallax-box {
  left: 0;
  z-index: 1;
}

/* Why Choose Us Section */
.why-choose-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  margin-bottom: 30px;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 230, 255, 0.25);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #00e6ff 0%, #0099ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 230, 255, 0.3);
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 230, 255, 0.4);
}

.why-icon i {
  font-size: 32px;
  color: #fff;
}

.why-choose-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.why-choose-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .why-choose-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .why-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .why-icon i {
    font-size: 28px;
  }
  
  .why-choose-card h3 {
    font-size: 18px;
  }
  
  .why-choose-card p {
    font-size: 14px;
  }
}
