/* Hero Section */
.distance-hero-section {
  background: no-repeat center center/cover;
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.distance-hero-section h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.distance-hero-section p {
  color: var(--text-light);
  margin: 0 auto 25px auto;
  line-height: 1.6;
}


.distance-hero-section .highlight {
  color: var(--highlight-color); /* or any color you prefer */
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif !important;
  font-size: 50px;
  font-weight: 700;
}



/* Responsive */
@media (max-width: 768px) {
  .distance-hero-section h1 {
    font-size: 1.8rem;
  }

}










/* Admissions Section */
.admissions-section {
  padding: 80px 30px;
  background: var(--text-light);
}

.admissions-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

.admissions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Text */
.admissions-text h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.3;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.admissions-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--paragraph-color);
  margin-bottom: 20px;
}

.admissions-text .btn {
  display: inline-block;
  background: var(--highlight-color);
  color: var(--text-light);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.admissions-text .btn:hover {
  background: var(--highlight-colorhover);
}

/* Right Image */
.admissions-image {
  position: relative;
  display: inline-block;
}

.admissions-image img {
  width: 70%;
  height: 500px;
  margin-left: 80px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Stat Boxes */
.stat-box {
  position: absolute;
  padding: 14px 22px;
  border-radius: 8px;
  color: var(--text-light);
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.stat-box h3 {
  font-size: 22px;
  margin: 0;
}

.stat-box p {
  font-size: 14px;
  margin: 4px 0 0;
  color: var(--text-light);
}

/* Top Right Box */
.stat-box.top-right {
  top: 15px;
  right: 15px;
  background: var(--primary-color); /* navy blue */
}

/* Bottom Left Box */
.stat-box.bottom-left {
  bottom: 15px;
  left: 15px;
  background: var(--highlight-color); /* green */
}

/* Responsive */
@media (max-width: 900px) {
  .admissions-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .admissions-image {
    margin-top: 30px;
  }
}


@media (max-width: 450px) {

.admissions-image img {
  width: 75%;
  height: 400px;
  margin-left: 0px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}


}










.why-apply {
  background: #f2f4ff; /* light bluish background */
  padding: 60px 20px;
}

.why-apply .container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}

.why-apply h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.why-apply .subtitle {
  font-size: 16px;
  color: var(--paragraph-color);
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 per row */
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.why-card {
  background: var(--text-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 40px ;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.why-card .icon {
  font-size: 24px;
  display: block;
  margin-bottom: 15px;
  color: #0a165f;
}

.why-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.why-card p {
  
  line-height: 1.5;
  color: var(--paragraph-color);
}


/* Responsive for smaller screens */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}








/* CTA Section */
.cta-section {
  padding: 60px 20px;
  background: transparent;
}

.cta-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

.cta-box {
  background: var(--highlight-color);   /* same green as your image */
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.cta-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.cta-text p {
  color: var(--text-light);
  line-height: 1.6;
  max-width: 700px;
}

/* Button */
.cta-button .btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button .btn:hover {
  background: #f2f2f2;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .cta-text h2 {
    font-size: 26px;
  }

  .cta-text p {
    font-size: 15px;
  }

  .cta-button {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .cta-text h2 {
    font-size: 22px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-button .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}