/* === LEADERSHIP SECTION === */
.leadership-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;

  padding: 60px 40px;

  background: linear-gradient(to bottom, #0e45bc, #00265f);
}

/* === CARD === */
.leader-card {
  text-align: center;
  color: #ffffff;
  width: 260px;
}

/* === IMAGE === */
.leader-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;

  border-radius: 50%;
  border: 5px solid rgba(255,255,255,0.3);

  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.leader-card img:hover {
  transform: scale(1.05);
}

/* === NAME === */
.leader-card h3 {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* === ROLE === */
.leader-card .role {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #cfe0ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.chairman-row {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  
  
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .leadership-section {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .leader-card img {
    width: 160px;
    height: 160px;
  }

  .leader-card h3 {
    font-size: 22px;
  }
  .chairman-row {
    margin-top: 40px;
  }
}
/*footer*/
/* === SECTION === */
/* === SECTION === */
.social-section {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start; /* 🔥 prevents height stretching */
  padding: 60px 40px;
  background: linear-gradient(to bottom, #0e45bc, #00265f);
}

/* === CARD === */
.social-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  width: 100%;
  max-width: 360px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.35);

  height: auto; /* 🔥 allow natural height */
}

/* === HEADINGS === */
.social-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 700;
  color: #00265f;
}

/* === LOGO === */
.school-logo {
  max-width: 220px;
  margin-bottom: 18px;
}

/* === CONTACT INFO === */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
}

.contact-info a {
  color: #0e45bc;
  text-decoration: none;
  font-weight: 500;
}

/* === MAP === */
.map iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  border: none;
}

/* === EMBEDS === */
.embed iframe {
  border-radius: 10px;
}

/* === MOBILE === */
@media (max-width: 900px) {
  .social-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }
}


.career-form {
  max-width: 900px;
  margin: 40px auto;
  padding: 16px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.career-form iframe {
  width: 100%;
  border: none;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .career-form {
    margin: 20px 10px;
    padding: 10px;
  }

  .career-form iframe {
    height: 1100px; /* Google Forms are taller on mobile */
  }
}
/*About Css */
/* ===== VISION & MISSION ===== */
.vision-mission {
  background: #f5f8ff;
  padding: 60px 20px;
}

.vm-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Cards */
.vm-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
}

/* Logo */
.vm-logo {
  width: 70px;
  margin-bottom: 15px;
}

/* Headings */
.vm-card h2 {
  font-size: 28px;
  color: #0e45bc;
  margin-bottom: 15px;
  font-weight: 800;
}

/* Text */
.vm-card p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
}

/* Subtle accent */
.vm-card::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #0e45bc, #00265f);
  display: block;
  margin: 20px auto 0;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .vm-container {
    grid-template-columns: 1fr;
  }

  .vm-card {
    padding: 28px 22px;
  }

  .vm-card h2 {
    font-size: 24px;
  }

  .vm-card p {
    font-size: 16px;
  }
}

.chair{
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}