/* Enhanced About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #1E90FF, #4CAF50);
  color: white;
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  animation: fadeInUp 1s ease-out;
}

.about-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: slideInDown 1s ease-out 0.2s both;
}

.about-hero .tagline {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  animation: slideInUp 1s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  color: #fff;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.about-section {
  padding: 6rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-section:nth-child(even) {
  background: #f8fafc;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-text h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #1E90FF;
  margin-bottom: 2rem;
  position: relative;
}

.section-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1E90FF, #4CAF50);
  border-radius: 2px;
}

.section-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.highlight-item i {
  font-size: 1.5rem;
  color: #1E90FF;
  background: rgba(30, 144, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.5rem 0;
}

.highlight-text p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.section-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.visual-icon {
  font-size: 12rem;
  color: #1E90FF;
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  color: #4CAF50;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 30%; right: 20%; animation-delay: 1s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 30%; animation-delay: 2s; }
.floating-icon:nth-child(4) { bottom: 20%; right: 30%; animation-delay: 3s; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.team-member:hover::before {
  left: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1E90FF, #4CAF50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.team-member h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #1E90FF;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-section {
  background: linear-gradient(135deg, #1E90FF, #4CAF50);
  color: white;
  padding: 6rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-text p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.contact-highlight i {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Hero feature icons fix */
.hero-feature i {
  color: #fff;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.05); opacity: 0.2; }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .section-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-hero h1 {
    font-size: 3rem;
  }

  .section-text h2,
  .contact-text h2 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .about-section,
  .contact-section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-text h2,
  .contact-text h2 {
    font-size: 2rem;
  }

  .floating-icon {
    font-size: 1.5rem;
  }
}
