/* RESET & BASIC */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: linear-gradient(-45deg, #0d6efd, #00c6ff, #6a11cb, #2575fc);
  background-size: 200% 200%;
  animation: gradientBG 10s ease infinite;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

@keyframes gradientBG {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* IMAGES */
img { max-width: 100%; height: auto; display: block; }

/* NAVBAR */
.navbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 20px;
  background: #0d6efd;
  color: white;
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
}
.logo-container { display: flex; align-items: center; gap: 11px; width: 100%; }
.logo-container img { width: 85px; height: 85px; object-fit: cover; }
.logo-text {
  font-size: 40px;
  font-weight: bold;
  background: linear-gradient(45deg, #ffffff, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  list-style: none;
  flex-direction: row;
  gap: 60px;
  margin-top: 10px;
  margin-left: 0;
  align-items: center;
}
.nav-links a { color: white; font-size: 19px; text-decoration: none; }

/* HAMBURGER - hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  background: none;
  border: none;
}

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  background: #fff;
  min-width: 180px;
  padding: 8px 0;
  border-radius: 10px;
  z-index: 10001;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { padding: 1px 10px; margin: 0; line-height: 1.2; }
.nav-links li {
  list-style: none;
}
.dropdown-menu a { color: #000; font-size: 13px; display: block; padding: 3px 0; }
.dropdown-menu a:hover { background: #f5f5f5; border-radius: 5px; }

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding-top: 0;
  color: #fff;
  margin-bottom: 50px;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 2400px;
  margin: auto;
  margin-bottom: 40px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.slides { display: flex; transition: transform 1s ease-in-out; }
.slide {
  min-width: 100%;
  height: 550px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomEffect 8s ease-in-out infinite;
}
@keyframes zoomEffect {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* SLIDE TEXT */
.slide-text {
  position: absolute;
  top: 80px;
  right: 60px;
  text-align: right;
  color: #fff;
  background: rgba(0,0,0,0.3);
  padding: 20px 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(90px);
  animation: textFade 1.5s ease forwards;
}
.slide-text h1 { font-size: 60px; font-weight: bold; }
.slide-text h2 { font-size: 50px; margin: 10px 0; }
.slide-text p  { font-size: 20px; }
@keyframes textFade { to { opacity: 1; transform: translateY(0); } }
.slide:nth-child(1) .slide-text { animation-delay: 0.3s; }
.slide:nth-child(2) .slide-text { animation-delay: 0.5s; }
.slide:nth-child(3) .slide-text { animation-delay: 0.7s; }
.slide:nth-child(4) .slide-text { animation-delay: 0.9s; }

/* ARROWS */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 10;
}
.slider-nav span {
  cursor: pointer;
  font-size: 40px;
  color: #fff;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  padding: 5px 12px;
  transition: 0.3s;
}
.slider-nav span:first-child { position: absolute; left: 20px; }
.slider-nav span:last-child  { position: absolute; right: 20px; }
.slider-nav span:hover { background-color: rgba(0,0,0,0.5); }

/* HERO BUTTONS */
.hero-buttons {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: -70px;
  margin-bottom: 50px;
  width: 80%;
  z-index: 2;
}
.hero-buttons a {
  padding: 12px 28px;
  text-decoration: none;
  color: #fff;
  background-color: rgba(227, 227, 227, 0.4);
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}
.hero-buttons a.btn2 {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  padding: 12px 40px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}
.hero-buttons a:hover { opacity: 0.7; }
.hero-buttons a.btn2:hover { transform: scale(1.1); box-shadow: 0 10px 25px rgba(255, 215, 0, 0.8); }

/* ANIMATED DIVIDER */
.courses-bg-animation {
  width: 30%;
  height: 30px;
  background: linear-gradient(270deg, #0077ff, #00b300, #00ffff, #ff00ff);
  background-size: 800% 800%;
  animation: gradientAnimation 15s ease infinite;
  border-radius: 20px 20px 0 0;
  margin-top: 40px;
}
@keyframes gradientAnimation {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ABOUT */
.about {
  position: relative;
  padding: 80px 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -30px;
}
.about::before {
  content: "";
  position: absolute;
  width: 200%; height: 200%;
  top: -50%; left: -50%;
  background: linear-gradient(270deg, #29292a, #2685eb, #26d4eb, #091261);
  background-size: 800% 800%;
  animation: gradientAnimation 20s ease infinite;
  filter: blur(80px);
  z-index: -1;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 200px;
  text-align: left;
  max-width: 1700px;
  margin: auto;
}
.about-text { max-width: 600px; }
.about-text h2 {
  font-size: 43px;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(45deg, #fffffe, #ffd900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.about-text h2 .emoji { background: none; -webkit-text-fill-color: initial; }
.about-text p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  text-align: justify;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ffffff, #dddddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 1.5s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.about-image {
  display: block;
  width: 450px;
  max-width: 500px;
  height: 350px;
  border-radius: 10px;
}
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 18px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.5);
  transition: 0.3s;
  animation: glowBtn 2s infinite alternate;
}
.about-btn:hover { transform: translateY(-5px) scale(1.05); }
@keyframes glowBtn {
  from { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
  to   { box-shadow: 0 0 25px rgba(255, 165, 0, 0.9); }
}

/* MID IMAGES */
.mid-images {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.mid-images img {
  width: 490px;
  max-width: 500px;
  height: 660px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.mid-images img:hover { transform: scale(1.05); }

/* COURSES */
.courses { padding: 60px 20px; }
.courses-offered h2 {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.course-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; }
.course-item {
  width: 250px;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.3s;
}
.course-item h3 { font-size: 22px; margin-bottom: 10px; }
.course-item p  { font-size: 15px; line-height: 1.2; }
.course-item .enroll-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 14px;
  font-size: 13px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.5);
  transition: 0.3s;
}
.course-item .enroll-btn:hover { transform: scale(1.1); }
.course-item:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }

/* COURSE PAGE */
.course-page {
  max-width: 1100px;
  margin: 70px auto;
  padding: 30px;
  text-align: center;
}
.course-page h1 {
  font-size: 44px;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #FFD700, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.course-page h2 { font-size: 26px; margin-bottom: 15px; color: #FFD700; }
.course-page p  { font-size: 17px; line-height: 1.8; color: #f0f0f0; }

/* CONTENT BOX */
.content-box {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  margin: 25px 0;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  text-align: center;
  transition: 0.3s;
}
.content-box:hover { transform: translateY(-8px); }
.content-box h2 { font-size: 26px; margin-bottom: 15px; color: #FFD700; }
.content-box p  { font-size: 18px; line-height: 1.9; margin-bottom: 12px; color: #f1f1f1; }
.content-box ul { list-style: none; padding: 0; }
.content-box ul li {
  padding: 8px;
  margin: 6px 0;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 16px;
}

/* APPLY BUTTON */
.apply-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 35px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 5px 20px rgba(255,165,0,0.6);
  transition: 0.4s;
}
.apply-btn:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(255,165,0,1); }

/* PAGE CONTAINER */
.page-container {
  max-width: 1450px;
  margin: 80px auto;
  padding: 45px;
  border-radius: 25px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  color: #fff;
  animation: fadeUp 1.2s ease;
}
.page-container h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #f9ff3d, #ffd609);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-container h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 28px;
  background: linear-gradient(45deg, #00ffff, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.page-container p  { font-size: 19px; line-height: 1.8; margin-bottom: 10px; color: #f1f1f1; }
.page-container ul { list-style: none; padding: 0; }
.page-container ul li {
  margin: 8px 0;
  padding: 12px 15px;
  font-size: 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  transition: 0.3s;
  text-align: center;
}
.page-container ul li:hover { transform: translateX(10px); background: rgba(255,255,255,0.2); }
.page-container input,
.page-container textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.page-container button {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
.page-container button:hover { background: #0056b3; }

/* ELIGIBILITY */
.eligibility-container { text-align: center; }
.box { text-align: center; }
.content { text-align: center; font-size: 18px; }
.eligibility-title { font-size: 40px; }
.subtitle { font-size: 26px; }
.box p { font-size: 17px; }

/* VISION PAGE */
.vision-page {
  padding: 80px 20px;
  max-width: 1500px;
  margin: auto;
  color: #fff;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  min-height: 100vh;
}
.vision-page h2 {
  font-size: 68px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  background: linear-gradient(45deg, #ffffff, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vision-page h3 {
  font-size: 28px;
  text-align: center;
  margin: 20px 0 10px;
  background: linear-gradient(45deg, #ffffff, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
}
.vision-page p, .vision-page ul { font-size: 18px; line-height: 1.8; text-align: center; margin-bottom: 15px; color: #fff; }
.vision-page ul li { margin-bottom: 10px; }

/* VISION CONTAINER */
.vision-container {
  max-width: 1100px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  color: #fff;
  animation: fadeUp 1s ease;
}
.vision-container h2 { text-align: center; font-size: 38px; margin-bottom: 30px; color: #FFD700; }
.vision-container h3 { font-size: 24px; margin-top: 25px; margin-bottom: 10px; color: #00e5ff; }
.vision-container p  { font-size: 17px; line-height: 1.8; color: #f1f1f1; margin-bottom: 15px; }

/* VISION SECTION */
.vision-section { text-align: center; padding: 60px 20px; color: #fff; }
.vision-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vision-section p { font-size: 18px; margin-bottom: 20px; line-height: 1.6; }
.vision-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}
.vision-btn:hover { transform: scale(1.1); }

/* COMMITTEES */
.committees {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
}
.committees h2 {
  font-size: 58px;
  margin-bottom: 50px;
  font-weight: bold;
  background: linear-gradient(45deg, #ffffff, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.committee-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-bottom: 60px; }
.committee-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 20px;
  width: 290px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.committee-card img { width: 70%; height: 190px; object-fit: cover; border-radius: 15px; margin-bottom: 15px; }
.committee-card h3 { font-size: 16px; margin-bottom: 5px; color: #fff; }
.committee-card h4 { font-size: 16px; margin-bottom: 5px; color: #fff; }
.committee-card p  { font-size: 16px; color: #f0f0f0; }
.committee-card ul { list-style: none; padding: 0; color: #fff; }
.committee-card ul li { margin-bottom: 5px; }
.committee-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255,255,255,0.3); }

.committee-container { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin-top: 20px; }
.committee-card.non-teaching {
  width: 100%;
  max-width: 350px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.committee-card.non-teaching img { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; margin-bottom: 10px; }
.committee-card.non-teaching h3 { font-size: 24px; color: #fff; margin-bottom: 5px; }
.committee-card.non-teaching h4 { font-size: 18px; color: #fff; margin-bottom: 5px; }
.committee-card.non-teaching p  { font-size: 17px; color: #ddd; }
.committee-card.non-teaching:hover { transform: translateY(-5px); }

.nonteaching-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 20px;
  background: linear-gradient(45deg, #ffffff, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* WHY US */
.why-us { padding: 80px 20px; text-align: center; }
.why-us h2 {
  font-size: 50px;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #fffffe, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.why-card {
  width: 300px;
  padding: 25px;
  border-radius: 15px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: 0.4s;
}
.why-card:hover { transform: translateY(-10px) scale(1.05); }
.why-card h3 { font-size: 20px; color: #010334; margin-bottom: 10px; }
.why-card p  { font-size: 17px; color: #010334; line-height: 1.5; }

/* FORM */
.form-container {
  width: 90%;
  max-width: 500px;
  height: auto;
  margin: 80px auto;
  background: white;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
  font-size: 20px;
}
.form-container h2 { margin-bottom: 20px; }
.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #1b0170;
  border-radius: 10px;
}
.form-container button {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
.form-container button:hover { background: #0056b3; }
.map-section {
  text-align: center;
  padding: 60px 80px;
  background: #f9f9f9;
}

.map-section h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #333;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.map-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 16px;
  background: #28a745;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.map-btn:hover {
  background: #218838;
}
/* WHATSAPP */
.whatsapp { position: fixed; bottom: 10px; right: 10px; z-index: 999; }
.whatsapp img { width: 70px; }

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0d6efd, #6a11cb);
  color: #fff;
  padding: 50px 20px 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-box { flex: 1; min-width: 90px; text-align: center; line-height: 1.5; }
.footer-box h3 { font-size: 26px; margin-bottom: 10px; color: #00fbff; }
.footer-box p  { font-size: 17px; margin: 6px 0; color: #fff; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 10px; }
.footer-logo img { width: 45px; height: 45px; object-fit: contain; }
.footer-logo span { font-size: 24px; font-weight: bold; color: #00fbff; }
.footer-box a { text-decoration: none; color: #ffffff; display: block; margin: 4px 0; transition: 0.3s; }
.footer-box a:hover { color: #FFD700; }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 16px 20px;
}
.footer-bottom p { font-size: 16px; color: #FFD700; }
.footer-link { color: #ffffff; font-weight: bold; text-decoration: none; }
.footer-link:hover { color: #FFD700; }
/* RESET & BASIC */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: linear-gradient(-45deg, #0d6efd, #00c6ff, #6a11cb, #2575fc);
  background-size: 200% 200%;
  animation: gradientBG 10s ease infinite;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

@keyframes gradientBG {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* IMAGES */
img { max-width: 100%; height: auto; display: block; }

/* NAVBAR */
.navbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 20px;
  background: #0d6efd;
  color: white;
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
}
.logo-container { display: flex; align-items: center; gap: 11px; width: 100%; }
.logo-container img { width: 85px; height: 85px; object-fit: cover; }
.logo-text {
  font-size: 40px;
  font-weight: bold;
  background: linear-gradient(45deg, #ffffff, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  list-style: none;
  flex-direction: row;
  gap: 60px;
  margin-top: 10px;
  margin-left: 0;
  align-items: center;
}
.nav-links a { color: white; font-size: 19px; text-decoration: none; }

/* HAMBURGER - hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  background: none;
  border: none;
}

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  background: #fff;
  min-width: 180px;
  padding: 8px 0;
  border-radius: 10px;
  z-index: 10001;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { padding: 1px 10px; margin: 0; line-height: 1.2; }
.nav-links li {
  list-style: none;
}
.dropdown-menu a { color: #000; font-size: 13px; display: block; padding: 3px 0; }
.dropdown-menu a:hover { background: #f5f5f5; border-radius: 5px; }

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding-top: 0;
  color: #fff;
  margin-bottom: 50px;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 2400px;
  margin: auto;
  margin-bottom: 40px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.slides { display: flex; transition: transform 1s ease-in-out; }
.slide {
  min-width: 100%;
  height: 550px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomEffect 8s ease-in-out infinite;
}
@keyframes zoomEffect {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* SLIDE TEXT */
.slide-text {
  position: absolute;
  top: 80px;
  right: 60px;
  text-align: right;
  color: #fff;
  background: rgba(0,0,0,0.3);
  padding: 20px 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(90px);
  animation: textFade 1.5s ease forwards;
}
.slide-text h1 { font-size: 60px; font-weight: bold; }
.slide-text h2 { font-size: 50px; margin: 10px 0; }
.slide-text p  { font-size: 20px; }
@keyframes textFade { to { opacity: 1; transform: translateY(0); } }
.slide:nth-child(1) .slide-text { animation-delay: 0.3s; }
.slide:nth-child(2) .slide-text { animation-delay: 0.5s; }
.slide:nth-child(3) .slide-text { animation-delay: 0.7s; }
.slide:nth-child(4) .slide-text { animation-delay: 0.9s; }

/* ARROWS */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 10;
}
.slider-nav span {
  cursor: pointer;
  font-size: 40px;
  color: #fff;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  padding: 5px 12px;
  transition: 0.3s;
}
.slider-nav span:first-child { position: absolute; left: 20px; }
.slider-nav span:last-child  { position: absolute; right: 20px; }
.slider-nav span:hover { background-color: rgba(0,0,0,0.5); }

/* HERO BUTTONS */
.hero-buttons {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: -70px;
  margin-bottom: 50px;
  width: 80%;
  z-index: 2;
}
.hero-buttons a {
  padding: 12px 28px;
  text-decoration: none;
  color: #fff;
  background-color: rgba(227, 227, 227, 0.4);
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}
.hero-buttons a.btn2 {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  padding: 12px 40px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}
.hero-buttons a:hover { opacity: 0.7; }
.hero-buttons a.btn2:hover { transform: scale(1.1); box-shadow: 0 10px 25px rgba(255, 215, 0, 0.8); }

/* ANIMATED DIVIDER */
.courses-bg-animation {
  width: 30%;
  height: 30px;
  background: linear-gradient(270deg, #0077ff, #00b300, #00ffff, #ff00ff);
  background-size: 800% 800%;
  animation: gradientAnimation 15s ease infinite;
  border-radius: 20px 20px 0 0;
  margin-top: 40px;
}
@keyframes gradientAnimation {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ABOUT */
.about {
  position: relative;
  padding: 80px 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -30px;
}
.about::before {
  content: "";
  position: absolute;
  width: 200%; height: 200%;
  top: -50%; left: -50%;
  background: linear-gradient(270deg, #29292a, #2685eb, #26d4eb, #091261);
  background-size: 800% 800%;
  animation: gradientAnimation 20s ease infinite;
  filter: blur(80px);
  z-index: -1;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 200px;
  text-align: left;
  max-width: 1700px;
  margin: auto;
}
.about-text { max-width: 600px; }
.about-text h2 {
  font-size: 43px;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(45deg, #fffffe, #ffd900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.about-text h2 .emoji { background: none; -webkit-text-fill-color: initial; }
.about-text p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  text-align: justify;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ffffff, #dddddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 1.5s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.about-image {
  display: block;
  width: 450px;
  max-width: 500px;
  height: 350px;
  border-radius: 10px;
}
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 18px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.5);
  transition: 0.3s;
  animation: glowBtn 2s infinite alternate;
}
.about-btn:hover { transform: translateY(-5px) scale(1.05); }
@keyframes glowBtn {
  from { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
  to   { box-shadow: 0 0 25px rgba(255, 165, 0, 0.9); }
}

/* MID IMAGES */
.mid-images {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.mid-images img {
  width: 490px;
  max-width: 500px;
  height: 660px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.mid-images img:hover { transform: scale(1.05); }

/* COURSES */
.courses { padding: 60px 20px; }
.courses-offered h2 {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.course-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; }
.course-item {
  width: 250px;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.3s;
}
.course-item h3 { font-size: 22px; margin-bottom: 10px; }
.course-item p  { font-size: 15px; line-height: 1.2; }
.course-item .enroll-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 14px;
  font-size: 13px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.5);
  transition: 0.3s;
}
.course-item .enroll-btn:hover { transform: scale(1.1); }
.course-item:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }

/* COURSE PAGE */
.course-page {
  max-width: 1100px;
  margin: 70px auto;
  padding: 30px;
  text-align: center;
}
.course-page h1 {
  font-size: 44px;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #FFD700, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.course-page h2 { font-size: 26px; margin-bottom: 15px; color: #FFD700; }
.course-page p  { font-size: 17px; line-height: 1.8; color: #f0f0f0; }

/* CONTENT BOX */
.content-box {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  margin: 25px 0;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  text-align: center;
  transition: 0.3s;
}
.content-box:hover { transform: translateY(-8px); }
.content-box h2 { font-size: 26px; margin-bottom: 15px; color: #FFD700; }
.content-box p  { font-size: 18px; line-height: 1.9; margin-bottom: 12px; color: #f1f1f1; }
.content-box ul { list-style: none; padding: 0; }
.content-box ul li {
  padding: 8px;
  margin: 6px 0;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 16px;
}

/* APPLY BUTTON */
.apply-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 35px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 5px 20px rgba(255,165,0,0.6);
  transition: 0.4s;
}
.apply-btn:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(255,165,0,1); }

/* PAGE CONTAINER */
.page-container {
  max-width: 1450px;
  margin: 80px auto;
  padding: 45px;
  border-radius: 25px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  color: #fff;
  animation: fadeUp 1.2s ease;
}
.page-container h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #f9ff3d, #ffd609);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-container h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 28px;
  background: linear-gradient(45deg, #00ffff, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.page-container p  { font-size: 19px; line-height: 1.8; margin-bottom: 10px; color: #f1f1f1; }
.page-container ul { list-style: none; padding: 0; }
.page-container ul li {
  margin: 8px 0;
  padding: 12px 15px;
  font-size: 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  transition: 0.3s;
  text-align: center;
}
.page-container ul li:hover { transform: translateX(10px); background: rgba(255,255,255,0.2); }
.page-container input,
.page-container textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.page-container button {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
.page-container button:hover { background: #0056b3; }

/* ELIGIBILITY */
.eligibility-container { text-align: center; }
.box { text-align: center; }
.content { text-align: center; font-size: 18px; }
.eligibility-title { font-size: 40px; }
.subtitle { font-size: 26px; }
.box p { font-size: 17px; }

/* VISION PAGE */
.vision-page {
  padding: 80px 20px;
  max-width: 1500px;
  margin: auto;
  color: #fff;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  min-height: 100vh;
}
.vision-page h2 {
  font-size: 68px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  background: linear-gradient(45deg, #ffffff, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vision-page h3 {
  font-size: 28px;
  text-align: center;
  margin: 20px 0 10px;
  background: linear-gradient(45deg, #ffffff, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
}
.vision-page p, .vision-page ul { font-size: 18px; line-height: 1.8; text-align: center; margin-bottom: 15px; color: #fff; }
.vision-page ul li { margin-bottom: 10px; }

/* VISION CONTAINER */
.vision-container {
  max-width: 1100px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  color: #fff;
  animation: fadeUp 1s ease;
}
.vision-container h2 { text-align: center; font-size: 38px; margin-bottom: 30px; color: #FFD700; }
.vision-container h3 { font-size: 24px; margin-top: 25px; margin-bottom: 10px; color: #00e5ff; }
.vision-container p  { font-size: 17px; line-height: 1.8; color: #f1f1f1; margin-bottom: 15px; }

/* VISION SECTION */
.vision-section { text-align: center; padding: 60px 20px; color: #fff; }
.vision-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vision-section p { font-size: 18px; margin-bottom: 20px; line-height: 1.6; }
.vision-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}
.vision-btn:hover { transform: scale(1.1); }

/* COMMITTEES */
.committees {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
}
.committees h2 {
  font-size: 58px;
  margin-bottom: 50px;
  font-weight: bold;
  background: linear-gradient(45deg, #ffffff, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.committee-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-bottom: 60px; }
.committee-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 20px;
  width: 290px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.committee-card img { width: 70%; height: 190px; object-fit: cover; border-radius: 15px; margin-bottom: 15px; }
.committee-card h3 { font-size: 16px; margin-bottom: 5px; color: #fff; }
.committee-card h4 { font-size: 16px; margin-bottom: 5px; color: #fff; }
.committee-card p  { font-size: 16px; color: #f0f0f0; }
.committee-card ul { list-style: none; padding: 0; color: #fff; }
.committee-card ul li { margin-bottom: 5px; }
.committee-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255,255,255,0.3); }

.committee-container { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin-top: 20px; }
.committee-card.non-teaching {
  width: 100%;
  max-width: 350px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.committee-card.non-teaching img { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; margin-bottom: 10px; }
.committee-card.non-teaching h3 { font-size: 24px; color: #fff; margin-bottom: 5px; }
.committee-card.non-teaching h4 { font-size: 18px; color: #fff; margin-bottom: 5px; }
.committee-card.non-teaching p  { font-size: 17px; color: #ddd; }
.committee-card.non-teaching:hover { transform: translateY(-5px); }

.nonteaching-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 20px;
  background: linear-gradient(45deg, #ffffff, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* WHY US */
.why-us { padding: 80px 20px; text-align: center; }
.why-us h2 {
  font-size: 50px;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #fffffe, #fffb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.why-card {
  width: 300px;
  padding: 25px;
  border-radius: 15px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: 0.4s;
}
.why-card:hover { transform: translateY(-10px) scale(1.05); }
.why-card h3 { font-size: 20px; color: #010334; margin-bottom: 10px; }
.why-card p  { font-size: 17px; color: #010334; line-height: 1.5; }

/* FORM */
.form-container {
  width: 90%;
  max-width: 500px;
  height: auto;
  margin: 80px auto;
  background: white;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
  font-size: 20px;
}
.form-container h2 { margin-bottom: 20px; }
.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #1b0170;
  border-radius: 10px;
}
.form-container button {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
.form-container button:hover { background: #0056b3; }
.map-section {
  text-align: center;
  padding: 60px 80px;
  background: #f9f9f9;
}

.map-section h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #333;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.map-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 16px;
  background: #28a745;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.map-btn:hover {
  background: #218838;
}
/* WHATSAPP */
.whatsapp { position: fixed; bottom: 10px; right: 10px; z-index: 999; }
.whatsapp img { width: 70px; }
/* ADMISSION PAGE */
.admission-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px 20px;
  text-align: center;
}

.page-title {
  font-size: 40px;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #FFD700, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f1f1f1;
}

/* STEP BOX */
.step {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  margin: 20px 0;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.step h2 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  color: #fff;
}

/* APPLY BUTTON */
.apply-now {
  margin-top: 40px;
}

.apply-now a {
  padding: 12px 30px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.apply-now a:hover {
  transform: scale(1.1);
}
/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0d6efd, #6a11cb);
  color: #fff;
  padding: 50px 20px 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-box { flex: 1; min-width: 90px; text-align: center; line-height: 1.5; }
.footer-box h3 { font-size: 26px; margin-bottom: 10px; color: #00fbff; }
.footer-box p  { font-size: 17px; margin: 6px 0; color: #fff; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 10px; }
.footer-logo img { width: 45px; height: 45px; object-fit: contain; }
.footer-logo span { font-size: 24px; font-weight: bold; color: #00fbff; }
.footer-box a { text-decoration: none; color: #ffffff; display: block; margin: 4px 0; transition: 0.3s; }
.footer-box a:hover { color: #FFD700; }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 16px 20px;
}
.footer-bottom p { font-size: 16px; color: #FFD700; }
.footer-link { color: #ffffff; font-weight: bold; text-decoration: none; }
.footer-link:hover { color: #FFD700; }

/* ================= MOBILE — 768px ================= */
@media (max-width: 768px) {

  body { padding: 0; }

  /* SLIDE TEXT */
  .slide-text {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* NAVBAR */
  .navbar {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
  }
  .logo-container { flex-direction: row; gap: 7px; align-items: center; width: auto; }
  .logo-container img { width: 40px; height: 40px; }
  .logo-text { font-size: 18px; line-height: 1; }

  /* SHOW HAMBURGER */
  .menu-toggle { display: block; margin-left: auto; font-size: 28px; }

  /* HIDE NAV BY DEFAULT */
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    left: auto;
    gap: 4px;
    width: 180px;
    background: #0d6efd;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 10px 4px;
    border-radius: 10px 0 0 10px;
    z-index: 9999;
    margin-top: 0;
  }
  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; padding: 1px 4px; text-align: center; line-height: 1.2; }
  .nav-links a { font-size: 18px; padding: 4px 0; display: block; color: white; }

  /* DROPDOWN ON MOBILE */
  .dropdown-menu {
    position: static;
    min-width: 140px;
    box-shadow: none;
    border-radius: 0;
    background: rgba(255,255,255,0.1);
    padding: 2px 0;
  }
  .dropdown-menu li { list-style: none; padding: 1px 4px; margin: 0; line-height: 1.1; }
  .dropdown-menu a { color: #fff; font-size: 11px; padding: 2px 0; line-height: 1.2; display: block; }
  .dropdown.active .dropdown-menu { display: block; }

  /* HERO SLIDER */
  .slide { height: 200px; }

  /* HERO BUTTONS */
  .hero-buttons {
    left: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: -50px;
    margin-bottom: 50px;
    padding: 0 16px;
    position: relative;
    z-index: 99;
  }
  .hero-buttons a { font-size: 12px; padding: 10px 16px; width: auto; text-align: center; }

  /* COURSES */
  .course-grid { flex-direction: column; align-items: center; }
  .course-item { width: 90%; }

  /* COURSE PAGE */
  .course-page { margin: 40px 15px; padding: 20px; }
  .course-page h1 { font-size: 28px; }
  .course-page h2 { font-size: 20px; }
  .course-page p  { font-size: 15px; }

  /* CONTENT BOX */
  .content-box { padding: 15px; }
  .content-box h2 { font-size: 18px; }
  .content-box p  { font-size: 15px; }

  /* PAGE CONTAINER */
  .page-container { margin: 40px 15px; padding: 20px; }
  .page-container h2 { font-size: 28px; }
  .page-container h3 { font-size: 18px; }

  /* APPLY BUTTON */
  .apply-btn { font-size: 14px; padding: 10px 25px; }

  /* COMMITTEES */
  .committee-group { flex-direction: column; align-items: center; }
  .committee-card { width: 90%; }
  .committee-card img { height: auto; }
  .committee-card.non-teaching { max-width: 90%; }
  .committee-card.non-teaching h3 { font-size: 20px; }
  .committee-card.non-teaching h4 { font-size: 16px; }

  /* ABOUT */
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .about-text { width: 90%; text-align: center; }
  .about-text h2 { font-size: 20px; margin-bottom: 5px; }
  .about-text p  { font-size: 13px; line-height: 1.5; text-align: justify; }
  .about-image { width: 85%; height: 250px; object-fit: cover; margin: 0 auto; border-radius: 10px; }
  .about-btn { font-size: 13px; padding: 8px 16px; }

  /* MID IMAGES */
  .mid-images { flex-direction: column; align-items: center; gap: 15px; }
  .mid-images img { width: 100%; max-width: 100%; height: auto; }

  /* VISION PAGE */
  .vision-page h2 { font-size: 32px; }
  .vision-page h3 { font-size: 18px; }
  .vision-page p, .vision-page ul { font-size: 15px; }

  /* WHY US */
  .why-us h2 { font-size: 32px; }
  .why-container { flex-direction: column; align-items: center; }
  .why-card { width: 90%; }

  /* FORM */
  .form-container { padding: 20px; font-size: 16px; }

  /* ===== MAP SECTION FIX ===== */

.map-section {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.map-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

/* MAP BOX */
.map-container {
  width: 100%;
  max-width: 900px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

/* MAP IFRAME */
.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* BUTTONS */
.map-actions {
  margin-top: 15px;
}

.map-btn {
  display: inline-block;
  margin: 5px;
  padding: 10px 20px;
  background: #28a745;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.map-btn.secondary {
  background: #007bff;
}


  /* FOOTER */
  .footer-container {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-box { min-width: 100%; width: 100%; }
  .footer-box h3 { font-size: 20px; }
  .footer-box p  { font-size: 14px; }

  /* WHATSAPP */
  .whatsapp img { width: 50px; }
  .whatsapp { right: 10px; bottom: 10px; }

  /* ELIGIBILITY */
  .eligibility-title { font-size: 28px; }
  .subtitle { font-size: 20px; }
  .content { font-size: 16px; }
  .box p { font-size: 18px; }

}

/* ================= SMALL MOBILE — 480px ================= */
@media (max-width: 480px) {
  .logo-text { font-size: 16px; }
  .logo-container img { width: 36px; height: 36px; }
  .slide { height: 170px; }
  .slide-text { display: none !important; }
  .courses-offered h2 { font-size: 26px; }
  .why-us h2 { font-size: 24px; }
  .map-section h2 {
    font-size: 20px;
  }
  .map-section iframe {
    height: 220px;
  }
  .committees h2 { font-size: 26px; }
  .nonteaching-title { font-size: 20px; }
  .about-text h2 { font-size: 18px; }
  .vision-page h2 { font-size: 24px; }
  .footer-bottom p { font-size: 12px; }
  .course-page h1 { font-size: 24px; }
  .content-box h2 { font-size: 16px; }
  .hero-buttons a { font-size: 11px; padding: 7px 12px; }
}

/* ================= MOBILE — 768px ================= */
@media (max-width: 768px) {

  body { padding: 0; }

  /* SLIDE TEXT */
  .slide-text {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* NAVBAR */
  .navbar {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
  }
  .logo-container { flex-direction: row; gap: 7px; align-items: center; width: auto; }
  .logo-container img { width: 40px; height: 40px; }
  .logo-text { font-size: 18px; line-height: 1; }

  /* SHOW HAMBURGER */
  .menu-toggle { display: block; margin-left: auto; font-size: 28px; }

  /* HIDE NAV BY DEFAULT */
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    left: auto;
    gap: 4px;
    width: 180px;
    background: #0d6efd;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 10px 4px;
    border-radius: 10px 0 0 10px;
    z-index: 9999;
    margin-top: 0;
  }
  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; padding: 1px 4px; text-align: center; line-height: 1.2; }
  .nav-links a { font-size: 18px; padding: 4px 0; display: block; color: white; }

  /* DROPDOWN ON MOBILE */
  .dropdown-menu {
    position: static;
    min-width: 140px;
    box-shadow: none;
    border-radius: 0;
    background: rgba(255,255,255,0.1);
    padding: 2px 0;
  }
  .dropdown-menu li { list-style: none; padding: 1px 4px; margin: 0; line-height: 1.1; }
  .dropdown-menu a { color: #fff; font-size: 11px; padding: 2px 0; line-height: 1.2; display: block; }
  .dropdown.active .dropdown-menu { display: block; }

  /* HERO SLIDER */
  .slide { height: 200px; }

  /* HERO BUTTONS */
  .hero-buttons {
    left: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: -50px;
    margin-bottom: 50px;
    padding: 0 16px;
    position: relative;
    z-index: 99;
  }
  .hero-buttons a { font-size: 12px; padding: 10px 16px; width: auto; text-align: center; }

  /* COURSES */
  .course-grid { flex-direction: column; align-items: center; }
  .course-item { width: 90%; }

  /* COURSE PAGE */
  .course-page { margin: 40px 15px; padding: 20px; }
  .course-page h1 { font-size: 28px; }
  .course-page h2 { font-size: 20px; }
  .course-page p  { font-size: 15px; }

  /* CONTENT BOX */
  .content-box { padding: 15px; }
  .content-box h2 { font-size: 18px; }
  .content-box p  { font-size: 15px; }

  /* PAGE CONTAINER */
  .page-container { margin: 40px 15px; padding: 20px; }
  .page-container h2 { font-size: 28px; }
  .page-container h3 { font-size: 18px; }

  /* APPLY BUTTON */
  .apply-btn { font-size: 14px; padding: 10px 25px; }

  /* COMMITTEES */
  .committee-group { flex-direction: column; align-items: center; }
  .committee-card { width: 90%; }
  .committee-card img { height: auto; }
  .committee-card.non-teaching { max-width: 90%; }
  .committee-card.non-teaching h3 { font-size: 20px; }
  .committee-card.non-teaching h4 { font-size: 16px; }

  /* ABOUT */
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .about-text { width: 90%; text-align: center; }
  .about-text h2 { font-size: 20px; margin-bottom: 5px; }
  .about-text p  { font-size: 13px; line-height: 1.5; text-align: justify; }
  .about-image { width: 85%; height: 250px; object-fit: cover; margin: 0 auto; border-radius: 10px; }
  .about-btn { font-size: 13px; padding: 8px 16px; }

  /* MID IMAGES */
  .mid-images { flex-direction: column; align-items: center; gap: 15px; }
  .mid-images img { width: 100%; max-width: 100%; height: auto; }

  /* VISION PAGE */
  .vision-page h2 { font-size: 32px; }
  .vision-page h3 { font-size: 18px; }
  .vision-page p, .vision-page ul { font-size: 15px; }

  /* WHY US */
  .why-us h2 { font-size: 32px; }
  .why-container { flex-direction: column; align-items: center; }
  .why-card { width: 90%; }

  /* FORM */
  .form-container { padding: 20px; font-size: 16px; }

  .map-section {
    padding: 30px 15px;
  }
  .map-section h2 {
    font-size: 22px;
  }
  .map-section iframe {
    height: 250px;
    border-radius: 10px;
  }
  .map-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  /* FOOTER */
  .footer-container {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-box { min-width: 100%; width: 100%; }
  .footer-box h3 { font-size: 20px; }
  .footer-box p  { font-size: 14px; }

  /* WHATSAPP */
  .whatsapp img { width: 50px; }
  .whatsapp { right: 10px; bottom: 10px; }

  /* ELIGIBILITY */
  .eligibility-title { font-size: 28px; }
  .subtitle { font-size: 20px; }
  .content { font-size: 16px; }
  .box p { font-size: 18px; }

}
@media (max-width: 768px) {
  .page-title {
    font-size: 24px;
  }

  .step {
    padding: 15px;
  }

  .step h2 {
    font-size: 18px;
  }

  .step p {
    font-size: 14px;
  }
}
/* ================= SMALL MOBILE — 480px ================= */
@media (max-width: 480px) {
  .logo-text { font-size: 16px; }
  .logo-container img { width: 36px; height: 36px; }
  .slide { height: 170px; }
  .slide-text { display: none !important; }
  .courses-offered h2 { font-size: 26px; }
  .why-us h2 { font-size: 24px; }
  .map-section h2 {
    font-size: 20px;
  }
  .map-section iframe {
    height: 220px;
  }
  .committees h2 { font-size: 26px; }
  .nonteaching-title { font-size: 20px; }
  .about-text h2 { font-size: 18px; }
  .vision-page h2 { font-size: 24px; }
  .footer-bottom p { font-size: 12px; }
  .course-page h1 { font-size: 24px; }
  .content-box h2 { font-size: 16px; }
  .hero-buttons a { font-size: 11px; padding: 7px 12px; }
}