.about-section {
  background: #f3f3f3;
  padding: 100px 0;
}

.container.abu {
  width: 1200px;
  max-width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT SIDE */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 42px;
  color: #0e3c4c;
  margin-bottom: 25px;
  font-family: "Georgia", serif;
}

.about-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #ff5a2c;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.read-btn:hover {
  background: #e0481f;
}

/* RIGHT SIDE IMAGES */
.about-images {
  flex: 1;
  position: relative;
  height: 420px;
}

/* Oval Shape */
.img-box {
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
  background: #f5e9e5;
  padding: 12px;
  transition: 0.4s ease;
}

/* IMAGE */
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* POSITIONING */
.img-box.top {
  width: 320px;
  height: 320px;
  top: 0;
  left: 100px;
}

.img-box.left {
  width: 260px;
  height: 260px;
  bottom: 0;
  left: 0;
}

.img-box.right {
  width: 260px;
  height: 260px;
  bottom: 0;
  right: 0;
}

/* HOVER EFFECT */
.img-box:hover {
  background: linear-gradient(135deg, #ff7a18, #ff3d5a);
  transform: translateY(-10px);
}
/* ===== OUR CORE VALUE (FACILITIES) ===== */

.facility-item {
  position: relative;
  text-align: center;
  padding-top: 60px;
}

/* ICON SMALL BUBBLE */
.facility-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto -45px auto;
  border-radius: 50%;
  background: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}

/* BIG ROUND BUBBLE */
.facility-text {
  border-radius: 50%;
  padding: 80px 30px 50px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease;
}

/* REMOVE EXTRA SPANS */
.facility-icon span {
  display: none;
}

/* COLORS (SOFT PASTEL LIKE IMAGE) */
.facility-text.bg-primary {
  background: #fff1ec !important;
}
.facility-text.bg-success {
  background: #eef7f1 !important;
}
.facility-text.bg-warning {
  background: #fff8e6 !important;
}
.facility-text.bg-info {
  background: #eaf9fd !important;
}

/* ICON COLORS */
.facility-icon .fa {
  font-size: 32px;
}

/* HOVER EFFECT */
.facility-item:hover .facility-text {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.facility-text h3 {
  font-weight: 600;
}

.facility-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/*  */
.admission-section {
  padding: 100px 0;
  background: #ffffff;
}

.admission-container {
  max-width: 1200px;
  margin: auto;
  background: #fff3ee;
  border-radius: 18px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.admission-image {
  flex: 1;
}

.admission-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* CONTENT */
.admission-content {
  flex: 1;
}

.admission-content h2 {
  font-size: 36px;
  color: #0e3c4c;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "Georgia", serif;
}

.admission-content h2 span {
  display: block;
  font-weight: 700;
}

.admission-content p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 420px;
}

/* BUTTON */
.enroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: #ff5a2c;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.enroll-btn:hover {
  background: #e24b23;
  transform: translateY(-2px);
}

.school-info-section {
  background: #f6f3ef;
  padding: 100px 0;
}

.container {
  width: 1200px;
  max-width: 90%;
  margin: auto;
}

/* GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

/* CARD */
.info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  transition: 0.4s ease;
}

.info-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 22px;
  color: #0e3c4c;
  margin-bottom: 15px;
  font-weight: 700;
}

.info-card p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

/* HOVER EFFECT */
.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* ABOUT SECTION */
.about-school {
  max-width: 850px;
}

.about-school h2 {
  font-size: 36px;
  color: #0e3c4c;
  margin-bottom: 20px;
  font-family: "Georgia", serif;
}

.about-school p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #ff5a2c;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #e0481f;
  transform: translateY(-3px);
}

/* our management */
.management-section {
  background: #f6f3ef;
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.management-header {
  background: #ffffff;
  padding: 18px 25px;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.management-header h2 {
  font-size: 26px;
  color: #0e3c4c;
  font-weight: 700;
}

/* Grid */
.management-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.management-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

/* Image */
.management-img {
  overflow: hidden;
  border-radius: 15px;
}

.management-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Info */
.management-info {
  margin-top: 20px;
}

.management-info h4 {
  font-size: 18px;
  color: #0e3c4c;
  margin-bottom: 5px;
}

.management-info span {
  font-size: 14px;
  color: #777;
}

/* Hover */
.management-card:hover {
  transform: translateY(-10px);
}

.management-card:hover .management-img img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .management-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .management-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .admission-container {
    flex-direction: column;
    padding: 30px;
  }

  .admission-content h2 {
    font-size: 28px;
  }

  .admission-content p {
    max-width: 100%;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }

  .about-school {
    max-width: 100%;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .facility-text {
    border-radius: 30px;
    min-height: auto;
    padding: 70px 20px 40px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    height: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }

  .img-box {
    position: relative;
    width: 180px !important;
    height: 180px !important;
  }
}
