
/* PROGRAMS */
.programs h2 {
  font-size: 30px;
  color: #0a3f5f;
  margin-bottom: 20px;
}

.program-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.program {
  background: #f8fbff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #dce6f5;
  width: 250px;
  transition: .3s;
}

.program:hover {
  transform: translateY(-4px);
  background: #eaf3ff;
}

.program h4 {
  color: #0a3f5f;
  font-size: 20px;
  margin-bottom: 8px;
}





/* BANNER */
.about-banner {
  background: linear-gradient(#0a1c48, rgba(36,70,99,0.85)),
              url('../mainImage.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.about-banner h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.about-banner p {
  font-size: 18px;
}

/* ABOUT SECTION */
.about-section {
  padding: 70px 20px;
  background: #f9f9f9;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT */
.about-left {
  flex: 1;
  min-width: 300px;
}

.about-left h2 {
  font-size: 32px;
  color: #244663;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.about-left ul {
  margin-top: 15px;
}

.about-left ul li {
  font-size: 15px;
  margin-bottom: 8px;
  list-style: none;
}

/* RIGHT IMAGE */
.about-right {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
}

.about-right img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.circle-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: #244663;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  z-index: 1;
}

/* MISSION VISION */
.mv-section {
  background: #ffffff;
  padding: 60px 20px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.mv-box {
  background: #244663;
  color: #fff;
  padding: 30px;
  max-width: 500px;
  border-radius: 8px;
  text-align: center;
}

.mv-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.mv-box p {
  font-size: 15px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .about-banner h1 {
    font-size: 32px;
  }

  .about-left h2 {
    font-size: 26px;
  }

  .mv-box {
    width: 100%;
  }
}




/* RESPONSIVE */
@media(max-width:950px){
  .mission, .program-grid {flex-direction:column; align-items:center;}
  .gallery-grid {justify-content:center;}
}

@media(max-width:600px){
  .hero-content h1 {font-size:26px;}
  .hero-content p {font-size:15px;}
  .gallery-grid img {width:100%; max-width:300px; height:150px;}
  .program, .card {width:90%;}
  .about-image {max-width:90%;}
}