/* ===== LEADERS ===== */
.leaders {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.leaders h2 {
  font-size: 34px;
  color: #0e45bc;
  font-weight: 800;
}

.leaders-sub {
  color: #555;
  margin: 10px 0 40px;
  font-size: 16px;
}

/* Cards */
.leader-cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.leader-card {
  background: #f5f8ff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.leader-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0e45bc;
  margin-bottom: 15px;
}

.leader-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 4px;
}

.leader-card span {
  color: #0e45bc;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 900px) {
  .leader-cards {
    grid-template-columns: 1fr;
  }
}
.ab{
  font-size: 40px;
  text-align: center;
  color:#0e45bc
}
/* ===== ACADEMIC AWARDS ===== */
.awards {
  background: linear-gradient(to bottom, #f5f8ff, #ffffff);
  padding: 70px 20px;
}

.awards-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Heading */
.awards h2 {
  font-size: 36px;
  color: #0e45bc;
  font-weight: 800;
  margin-bottom: 10px;
}

.awards-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 50px;
}

/* Cards grid */
.award-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Individual card */
.award-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* Hover */
@media (hover: hover) {
  .award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  }
}

/* Icon */
.award-icon {
  font-size: 40px;
  margin-bottom: 18px;
}

/* Title */
.award-card h3 {
  font-size: 20px;
  color: #00265f;
  margin-bottom: 12px;
  font-weight: 700;
}

/* Text */
.award-card p {
  font-size: 15.5px;
  color: #333;
  line-height: 1.6;
}

/* Decorative line */
.award-card::after {
  content: "";
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, #0e45bc, #00265f);
  display: block;
  margin: 18px auto 0;
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .award-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .awards h2 {
    font-size: 28px;
  }

  .awards-sub {
    font-size: 15px;
  }

  .award-cards {
    grid-template-columns: 1fr;
  }

  .award-card {
    padding: 26px 20px;
  }
}
/*curriculam css */

/* ===== CURRICULUM ===== */
.curriculum {
  background: linear-gradient(to bottom, #ffffff, #f5f8ff);
  padding: 70px 20px;
}

.curriculum-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Heading */
.curriculum h2 {
  font-size: 36px;
  color: #0e45bc;
  font-weight: 800;
  margin-bottom: 10px;
}

.curriculum-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 50px;
}

/* Grid */
.curriculum-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.curriculum-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover (Desktop only) */
@media (hover: hover) {
  .curriculum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  }
}

/* Icon */
.curriculum-icon {
  font-size: 40px;
  margin-bottom: 18px;
}

/* Title */
.curriculum-card h3 {
  font-size: 20px;
  color: #00265f;
  margin-bottom: 12px;
  font-weight: 700;
}

/* Text */
.curriculum-card p {
  font-size: 15.5px;
  color: #333;
  line-height: 1.6;
}

/* Accent line */
.curriculum-card::after {
  content: "";
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, #0e45bc, #00265f);
  display: block;
  margin: 18px auto 0;
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .curriculum-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .curriculum h2 {
    font-size: 28px;
  }

  .curriculum-sub {
    font-size: 15px;
  }

  .curriculum-cards {
    grid-template-columns: 1fr;
  }

  .curriculum-card {
    padding: 26px 20px;
  }
}
