/* About Page Specific Styles */

/* Hero Section */
@media(max-width:768px){
  section.about-hero{
    padding-top: 250px;
  }
  .about-hero-image{
    display: none;
  }
  .hero-cta {
    display: flex;              /* keep flex */
    flex-direction: column;     /* stack buttons */
    align-items: center;        /* center horizontally */
    gap: 12px;
    padding-top: 30px;
  }

  .hero-cta a {
    width: 100%;
    max-width: 260px;           /* optional, looks clean */
    text-align: center;
  }
}
.about-hero {
  padding: 200px 0px 80px 0px;
  background: linear-gradient(135deg, #007bff, #d9f5ff);
  height: auto;
}

.about-hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-hero-text {
  flex: 1;
}

.about-hero-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  height: 500px;
}

.about-hero-image img {
  width: 100%;
  height: 500px;
  background-size: cover;
}
.hero-cta .btn-primary{
  background-color: white;
  color: #007bff;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #fff;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.mission-text {
  flex: 1;
}

.mission-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Vision Section */
.vision-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.vision-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.vision-icon {
  font-size: 3rem;
  color: #4e66f8;
}

.vision-content h2 {
  margin-bottom: 15px;
  color: #2c3e50;
}

/* Services Section */
.services-section {
  padding: 80px 0;
}
.service-card {
  position: relative;
}
.highlight-badge{
  margin-top:auto;  
  top: 27px;
  border-radius: 0px;
  width: 100%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: #4e66f8;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #2c3e50;
  font-size: 20px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: #4e66f8;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #3a4fd4;
}

.service-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

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

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.adv-card1,.adv-card2, .adv-card3, .adv-card4, .adv-card5{
  border: none;
  box-shadow: var(--shadow);
  padding: 30px;
}
.adv-card3{
  overflow: hidden;
  border:none;
  box-shadow: var(--shadow);
  padding: 30px;
  position: relative;
}
.adv-card3 .featured-badge{
  margin-top: auto;
  top: 23px;
  right: -33px;
  border-radius: 0;
  width: 100%;
  
}
.adv-card1:hover,.adv-card2:hover, .adv-card3:hover, .adv-card4:hover, .adv-card5:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.adv-card3.highlighted:hover {
  transform: translateY(-10px);
}
.advantage-icon {
  font-size: 2.5rem;
  color: #4e66f8;
  margin-bottom: 20px;
}


.advantage-card p {
  color: #666;
}
.Adv-head{
  font-size: 18px;
}
/* Target Audience Section */
.audience-section {
  padding: 80px 0;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.audience-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}
.Aud-Head{
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c3e50;
}
.audience-icon {
  font-size: 2.5rem;
  color: #4e66f8;
  margin-bottom: 20px;
}

.audience-card h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.audience-card p {
  color: #666;
}

.audience-cta {
  text-align: center;
  margin-top: 50px;
}

.audience-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

/* Final CTA Section */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0c84c0 0%, #0c5e7a 100%);
  color: #fff;
  text-align: center;
}

.final-cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
}

.final-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.para{
  color: white;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-hero-content,
  .mission-content {
    flex-direction: column;
  }
  
  .about-hero-text,
  .mission-text,
  .about-hero-image,
  .mission-image {
    flex: none;
    width: 100%;
  }
  
  .about-hero-image,
  .mission-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .vision-card {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}
