.mission-vision-values {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.mv-block {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.mv-block.reverse {
  flex-direction: row-reverse;
}

.mv-image {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 10px;
}

.mv-text {
  flex: 1;
  padding: 20px;
}

.mv-text h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #004080;
}

.mv-text p {
  font-size: 16px;
  color: #333;
}

.circle-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #0d6efd;
  margin-bottom: 15px;
}

.course-card {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}



.custom-center-list {
  list-style-position: inside;
  text-align: center;
  padding-left: 0;
}

.custom-center-list li {
  display: list-item;

}

.gallery-container {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-container img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox:target {
  display: flex;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.form-label {
  font-weight: 600;
}

.form-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 0.4rem;
}

.form-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.submit-btn {
  background-color: black;
  color: white;
  border: none;
}

.submit-btn:hover {
  background-color: #333;
}

.file-section {
  margin-top: 40px;
  padding: 20px;
  background-color: #e9ecef;
  border-radius: 10px;
}

.recaptcha-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
}