/* About Page Styles */

.about-hero {
  background: linear-gradient(135deg, #D81324 0%, #B31020 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,90.7C960,96,1056,128,1152,128C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.om-sai-ram {
  background: linear-gradient(90deg, #D81324, #B31020, #D81324);
  background-size: 200% auto;
  color: white;
  padding: 15px 30px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  animation: gradient 3s ease infinite;
  box-shadow: 0 4px 15px rgba(216, 19, 36, 0.3);
  margin-bottom: 30px;
}

@keyframes gradient {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 0px;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin: 40px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #D81324, #B31020);
  border-radius: 2px;
}

.content-card {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid #D81324;
  margin-bottom: 40px;
}

.quote-header {
  text-align: center;
  font-size: 1.8rem;
  color: #D81324;
  font-weight: 700;
  margin-bottom: 30px;
  font-style: italic;
}

.section-title {
  color: #D81324;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 30px 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 600;
  margin: 15px 0;
  line-height: 1.6;
}

.info-text {
  font-size: 1.1rem;
  color: #34495e;
  line-height: 1.8;
  margin: 10px 0;
}

.underline-title {
  text-decoration: underline;
  text-decoration-color: #D81324;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 30px 0 20px 0;
}

.list-item {
  font-size: 1.1rem;
  color: #34495e;
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.8;
}

.list-item::before {
  content: '🕉️';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.contact-banner {
  background: linear-gradient(135deg, #D81324 0%, #B31020 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(216, 19, 36, 0.4);
  margin: 40px auto;
  max-width: 900px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(216, 19, 36, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(216, 19, 36, 0.6);
  }
}

.contact-banner h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
}

.contact-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.contact-number:hover {
  transform: scale(1.05);
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .om-sai-ram {
    font-size: 1.2rem;
    padding: 12px 20px;
  }

  .page-title {
    font-size: 2rem;
  }

  .content-card {
    padding: 25px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .quote-header {
    font-size: 1.4rem;
  }

  .contact-banner h2 {
    font-size: 1.5rem;
  }

  .contact-number {
    font-size: 1.4rem;
  }
}
