/* ================================================
   GANGOTRI NURSING INSTITUTE — MAIN STYLESHEET
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --primary:    #1a5276;   /* deep navy blue */
  --secondary:  #d4a017;   /* warm gold */
  --accent:     #1e8bc3;   /* bright blue */
  --light-bg:   #f0f6fb;
  --white:      #ffffff;
  --text-dark:  #1c2833;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #d6e4f0;
  --footer-bg:  #0d2d4a;
  --gradient:   linear-gradient(135deg, #1a5276 0%, #1e8bc3 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--primary);
  color: #c9dff0;
  font-size: 0.82rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #c9dff0; }
.top-bar a:hover { color: var(--secondary); }
.top-bar .tb-left, .top-bar .tb-right {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar i { margin-right: 5px; color: var(--secondary); }

/* ─── HEADER ─── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,82,118,.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); }
.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
}
.logo-text span {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .5px;
}

/* ─── NAV ─── */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; gap: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  border-radius: 6px;
  transition: all .2s;
  letter-spacing: .2px;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--primary);
  background: var(--light-bg);
}
.main-nav > ul > li > a i { font-size: .7rem; margin-left: 3px; }

/* Dropdown */
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: white; min-width: 220px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,.12); border-top: 3px solid var(--secondary); padding: 8px 0; z-index: 999; }
.dropdown li a { display: block; padding: 9px 20px; font-size: .85rem; color: var(--text-mid); transition: all .2s; }
.dropdown li a:hover { background: var(--light-bg); color: var(--primary); padding-left: 26px; }
.main-nav > ul > li:hover .dropdown { display: block; }

.nav-cta {
  background: var(--gradient);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,139,195,.4) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 3px; background: var(--primary); border-radius: 3px; transition: all .3s; }

/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── HERO CAROUSEL ─── */
.hero-carousel { position: relative; overflow: hidden; height: 520px; background: #0d2d4a; }
.carousel-slides { display: flex; height: 100%; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.carousel-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,45,74,.85) 40%, rgba(13,45,74,.2));
  display: flex;
  align-items: center;
}
.slide-content { padding: 0 80px; color: white; max-width: 600px; }
.slide-content .tag {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.slide-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 700;
}
.slide-content p { font-size: 1.05rem; opacity: .9; margin-bottom: 24px; }
.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .2s;
  border: 2px solid transparent;
}
.btn-primary:hover { background: transparent; border-color: var(--secondary); color: var(--secondary); }
.btn-outline {
  display: inline-block;
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .9rem;
  margin-left: 12px;
  transition: all .2s;
}
.btn-outline:hover { background: white; color: var(--primary); }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  color: white;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .2s;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--secondary); border-color: var(--secondary); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s;
}
.carousel-dots .dot.active { background: var(--secondary); transform: scale(1.3); }

/* ─── NOTICE TICKER ─── */
.notice-bar {
  background: var(--secondary);
  color: white;
  padding: 10px 0;
  overflow: hidden;
}
.notice-bar .notice-inner { display: flex; align-items: center; gap: 0; }
.notice-bar .notice-label {
  background: var(--primary);
  padding: 4px 18px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 1px;
  white-space: nowrap;
  border-radius: 3px;
  margin-right: 20px;
  flex-shrink: 0;
}
.notice-ticker { overflow: hidden; flex: 1; }
.notice-ticker span {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: .85rem;
  font-weight: 600;
}
@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .sub-title {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}
.section-header p {
  color: var(--text-mid);
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 1rem;
}
.section-header .divider {
  width: 60px; height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--gradient);
  padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center;
  padding: 20px;
  color: white;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.stat-item p { font-size: .9rem; opacity: .9; margin-top: 6px; font-weight: 600; }

/* ─── WHY CHOOSE US ─── */
.why-section { padding: 80px 0; background: var(--light-bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all .3s;
  border-bottom: 4px solid transparent;
  box-shadow: 0 4px 20px rgba(26,82,118,.07);
}
.feature-card:hover { transform: translateY(-8px); border-bottom-color: var(--secondary); box-shadow: 0 16px 40px rgba(26,82,118,.15); }
.feature-icon {
  width: 72px; height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: white;
}
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.feature-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; }

/* ─── COURSES ─── */
.courses-section { padding: 80px 0; background: white; }
.courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; max-width: 960px; margin: 0 auto; }
.course-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,82,118,.12);
  transition: all .3s;
  border: 1px solid var(--border);
}
.course-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(26,82,118,.2); }
.course-img { position: relative; height: 220px; overflow: hidden; }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.course-card:hover .course-img img { transform: scale(1.08); }
.course-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--secondary);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.course-body { padding: 28px 28px 24px; }
.course-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.course-body .course-sub { color: var(--accent); font-weight: 600; font-size: .85rem; margin-bottom: 14px; }
.course-body p { color: var(--text-mid); font-size: .9rem; margin-bottom: 18px; line-height: 1.7; }
.course-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.meta-item { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--text-mid); }
.meta-item i { color: var(--secondary); }
.course-highlights { margin-bottom: 22px; }
.course-highlights h4 { font-size: .85rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; letter-spacing: .5px; text-transform: uppercase; }
.course-highlights ul li {
  padding: 4px 0 4px 18px;
  position: relative;
  font-size: .85rem;
  color: var(--text-mid);
}
.course-highlights ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}
.btn-course {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 11px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .88rem;
  transition: all .2s;
}
.btn-course:hover { opacity: .85; transform: translateY(-2px); }

/* ─── ABOUT SNIPPET (HOME) ─── */
.about-home { padding: 80px 0; background: var(--light-bg); }
.about-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-home-img { position: relative; }
.about-home-img img { border-radius: 20px; box-shadow: 0 20px 60px rgba(26,82,118,.2); }
.about-home-img .exp-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(212,160,23,.4);
}
.exp-badge .num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.exp-badge p { font-size: .75rem; font-weight: 700; letter-spacing: .5px; }
.about-home-content .tag {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-home-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.3;
}
.about-home-content p { color: var(--text-mid); margin-bottom: 16px; font-size: .95rem; }
.highlight-list { margin: 20px 0; }
.highlight-list li {
  padding: 8px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--text-mid);
}
.highlight-list li i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }

/* ─── DIRECTOR MESSAGE ─── */
.director-section { padding: 80px 0; background: white; }
.director-card {
  background: var(--gradient);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
  box-shadow: 0 20px 60px rgba(26,82,118,.25);
}
.director-img { position: relative; }
.director-img img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.director-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(26,82,118,.3));
}
.director-content { padding: 50px 50px; color: white; }
.director-content .quote-icon { font-size: 4rem; line-height: 1; color: var(--secondary); margin-bottom: 20px; font-family: Georgia, serif; }
.director-content p { font-size: 1rem; line-height: 1.8; opacity: .92; margin-bottom: 18px; }
.director-content .name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-top: 28px; }
.director-content .title-d { font-size: .85rem; color: var(--secondary); font-weight: 600; margin-top: 4px; letter-spacing: .5px; }

/* ─── GALLERY PREVIEW ─── */
.gallery-section { padding: 80px 0; background: var(--light-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid .g-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-grid .g-item:hover img { transform: scale(1.1); }
.gallery-grid .g-item .overlay {
  position: absolute; inset: 0;
  background: rgba(26,82,118,.5);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s;
  color: white;
  font-size: 1.8rem;
}
.gallery-grid .g-item:hover .overlay { opacity: 1; }
.gallery-grid .g-item.large { grid-column: span 2; grid-row: span 2; }

/* ─── ENQUIRY ─── */
.enquiry-section { padding: 80px 0; background: white; }
.enquiry-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.enquiry-form-wrap { background: var(--light-bg); border-radius: 20px; padding: 40px; }
.enquiry-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.enquiry-form-wrap p { color: var(--text-mid); font-size: .9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  transition: border-color .2s;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  background: var(--gradient);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .5px;
}
.btn-submit:hover { opacity: .88; transform: translateY(-2px); }
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 14px;
  border-radius: 10px;
  margin-top: 16px;
  font-weight: 600;
  text-align: center;
}

.contact-info-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-weight: 700; color: var(--primary); margin-bottom: 4px; font-size: .9rem; }
.contact-item p, .contact-item a { font-size: .88rem; color: var(--text-mid); }
.contact-item a:hover { color: var(--accent); }
.map-wrap { margin-top: 24px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.map-wrap iframe { width: 100%; height: 280px; border: none; display: block; }

/* ─── ADMISSION STRIP ─── */
.admission-strip {
  background: var(--gradient);
  padding: 50px 0;
  text-align: center;
  color: white;
}
.admission-strip h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 12px; }
.admission-strip p { opacity: .9; font-size: 1rem; margin-bottom: 26px; }
.strip-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.site-footer { background: var(--footer-bg); color: #a8c5d8; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--secondary); }
.footer-logo span { font-family: 'Playfair Display', serif; color: white; font-size: 1.1rem; font-weight: 700; }
.footer-col p { font-size: .85rem; line-height: 1.8; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .85rem; color: #a8c5d8; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-col ul li a::before { content: '›'; color: var(--secondary); font-size: 1.1rem; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .85rem; }
.footer-contact-item i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #a8c5d8;
  transition: all .2s;
  font-size: .9rem;
}
.footer-social a:hover { background: var(--secondary); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--gradient);
  padding: 70px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; margin-bottom: 12px; }
.page-hero p { opacity: .88; font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 16px; font-size: .85rem; opacity: .8; }
.breadcrumb a:hover { opacity: 1; color: var(--secondary); }
.breadcrumb span { opacity: .6; }

/* ─── INNER PAGE CONTENT ─── */
.inner-section { padding: 70px 0; }
.inner-section.alt-bg { background: var(--light-bg); }
.content-block { max-width: 860px; margin: 0 auto; }
.content-block h2 { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1.8rem; margin-bottom: 16px; }
.content-block h3 { color: var(--primary); font-size: 1.2rem; margin: 24px 0 10px; }
.content-block p { color: var(--text-mid); margin-bottom: 14px; font-size: .95rem; }
.content-block ul { margin: 10px 0 14px 20px; }
.content-block ul li { color: var(--text-mid); font-size: .9rem; margin-bottom: 6px; list-style: disc; }

.info-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.info-table th { background: var(--primary); color: white; padding: 14px 18px; text-align: left; font-size: .88rem; letter-spacing: .3px; }
.info-table td { padding: 13px 18px; font-size: .88rem; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: var(--light-bg); }

/* ─── FACULTY CARDS ─── */
.faculty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.faculty-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(26,82,118,.1); text-align: center; }
.faculty-card img { width: 100%; height: 200px; object-fit: cover; }
.faculty-card .fc-body { padding: 20px; }
.faculty-card h4 { font-family: 'Playfair Display', serif; color: var(--primary); margin-bottom: 4px; }
.faculty-card p { font-size: .83rem; color: var(--accent); font-weight: 600; }
.faculty-card span { font-size: .8rem; color: var(--text-light); }

/* ─── ADMISSION PAGE ─── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 4px 20px rgba(26,82,118,.08);
  position: relative;
}
.step-card::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 38px;
  color: var(--secondary);
  font-size: 1.4rem;
  font-weight: 700;
}
.step-card:last-child::after { display: none; }
.step-num {
  width: 50px; height: 50px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step-card h4 { color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: .82rem; color: var(--text-mid); }

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    z-index: 9999;
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav > ul { flex-direction: column; width: 100%; }
  .main-nav > ul > li > a { padding: 14px 0; font-size: 1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .dropdown { position: static; box-shadow: none; border-top: none; padding-left: 16px; display: none; }
  .main-nav > ul > li.open .dropdown { display: block; }
  .nav-close {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-carousel { height: 380px; }
  .slide-content { padding: 0 36px; }
  .slide-content h2 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .about-home-grid { grid-template-columns: 1fr; }
  .about-home-img .exp-badge { right: 10px; bottom: -16px; }
  .director-card { grid-template-columns: 1fr; }
  .director-img img { min-height: 280px; }
  .enquiry-wrapper { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .page-hero h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .slide-content { padding: 0 20px; }
  .slide-content h2 { font-size: 1.4rem; }
  .btn-outline { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .g-item.large { grid-column: span 2; }
}
