/* ================================================
   SRI SHRAVAN KUMAR B.Ed & D.El.Ed COLLEGE
   Theme: Warm Saffron · Forest Green · Ivory
   Font: Cormorant Garamond + DM Sans
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --saffron:    #c8601a;   /* warm terracotta saffron */
  --saffron-lt: #e8825e;
  --green:      #2d6a4f;   /* deep forest green */
  --green-lt:   #40916c;
  --ivory:      #fdf8f0;   /* warm ivory background */
  --cream:      #f5ede0;
  --charcoal:   #1e2726;   /* near-black with green tint */
  --text-body:  #3d3d3d;
  --text-mid:   #5c5c5c;
  --text-light: #8a8a8a;
  --border:     #e4d5c0;
  --white:      #ffffff;
  --footer-bg:  #141f1a;
  --grad-warm:  linear-gradient(135deg, #c8601a 0%, #e8825e 100%);
  --grad-green: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
  --grad-hero:  linear-gradient(135deg, #1e2726 0%, #2d6a4f 60%, #1e2726 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 15px;
}

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

/* ─── DECORATIVE PATTERN ─── */
.pattern-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8601a' fill-opacity='0.05'%3E%3Cpath d='M20 0L0 20L20 40L40 20Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--charcoal);
  color: #b0c4b1;
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--saffron);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar .tb-left, .top-bar .tb-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar a { color: #b0c4b1; transition: color .2s; }
.top-bar a:hover { color: var(--saffron-lt); }
.top-bar i { color: var(--saffron); margin-right: 5px; }
.tb-badge {
  background: var(--saffron);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge { 0%,100% { opacity:1; } 50% { opacity:.7; } }

/* ─── HEADER ─── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(30,39,38,.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--cream);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-emblem {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--saffron);
  box-shadow: 0 4px 14px rgba(200,96,26,.25);
  flex-shrink: 0;
}
.logo-emblem img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; }
.logo-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green);
  line-height: 1.2;
  font-weight: 700;
}
.logo-text .logo-sub {
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .4px;
  margin-top: 2px;
}
.logo-text .logo-tag {
  font-size: .68rem;
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ─── NAV ─── */
.main-nav { display: flex; align-items: center; }
.main-nav > ul { display: flex; gap: 2px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 15px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--charcoal);
  border-radius: 8px;
  transition: all .2s;
  letter-spacing: .2px;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--green);
  background: var(--ivory);
}
.main-nav > ul > li > a i { font-size: .68rem; margin-left: 3px; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: white;
  min-width: 210px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  border-top: 3px solid var(--saffron);
  padding: 8px 0;
  z-index: 999;
}
.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: .84rem;
  color: var(--text-mid);
  transition: all .2s;
}
.dropdown li a:hover { background: var(--ivory); color: var(--green); padding-left: 26px; }
.main-nav > ul > li:hover .dropdown { display: block; }

.nav-cta {
  background: var(--grad-warm);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(200,96,26,.35) !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(200,96,26,.45) !important;
  background: var(--grad-warm) !important;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 26px; height: 3px; background: var(--green); 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: 540px; background: var(--charcoal); }
.carousel-slides { display: flex; height: 100%; transition: transform .75s 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: .65; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,31,26,.9) 35%, rgba(20,31,26,.2) 80%);
  display: flex; align-items: center;
}
.slide-content { padding: 0 90px; color: white; max-width: 620px; }
.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--saffron);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.slide-label::before {
  content: '';
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  display: inline-block;
}
.slide-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 700;
}
.slide-content h2 em { color: #f9c784; font-style: italic; }
.slide-content p { font-size: 1rem; opacity: .88; margin-bottom: 28px; max-width: 480px; line-height: 1.7; }
.btn-warm {
  display: inline-block;
  background: var(--saffron);
  color: white;
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .3px;
  transition: all .2s;
}
.btn-warm:hover { background: #a34f14; transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.6);
  color: white;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .88rem;
  margin-left: 14px;
  transition: all .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: white; }

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

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 90px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.carousel-dots .dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s;
}
.carousel-dots .dot.active { background: var(--saffron); width: 48px; }

/* ─── NOTICE BAR ─── */
.notice-bar {
  background: var(--green);
  color: white;
  padding: 11px 0;
  overflow: hidden;
}
.notice-inner { display: flex; align-items: center; }
.notice-tag {
  background: var(--saffron);
  padding: 4px 18px;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 20px;
  flex-shrink: 0;
}
.notice-ticker { overflow: hidden; flex: 1; }
.notice-ticker span {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: .84rem;
  font-weight: 500;
}
@keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* ─── SECTION TITLE ─── */
.sec-title { text-align: center; margin-bottom: 52px; }
.sec-title .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--saffron);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-title .eyebrow::before,
.sec-title .eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--saffron);
  display: inline-block;
}
.sec-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--green);
  font-weight: 700;
  line-height: 1.2;
}
.sec-title p { color: var(--text-mid); max-width: 600px; margin: 14px auto 0; font-size: .95rem; }

/* ─── STATS ─── */
.stats-row {
  background: var(--charcoal);
  padding: 42px 0;
  position: relative;
  overflow: hidden;
}
.stats-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--green-lt) 50%, var(--saffron) 100%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-box {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  color: white;
}
.stat-box:last-child { border-right: none; }
.stat-box .s-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #f9c784;
  line-height: 1;
  display: block;
}
.stat-box .s-label { font-size: .82rem; opacity: .75; margin-top: 6px; font-weight: 500; letter-spacing: .3px; }

/* ─── WHY SECTION ─── */
.why-sec { padding: 84px 0; background: var(--ivory); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.why-card {
  background: white;
  border-radius: 12px;
  padding: 36px 28px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 20px rgba(45,106,79,.07);
  transition: all .3s;
}
.why-card:hover { border-left-color: var(--saffron); transform: translateY(-6px); box-shadow: 0 14px 40px rgba(45,106,79,.12); }
.why-icon {
  width: 60px; height: 60px;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--saffron);
  transition: all .3s;
}
.why-card:hover .why-icon { background: var(--saffron); color: white; }
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 700;
}
.why-card p { font-size: .87rem; color: var(--text-mid); line-height: 1.75; }

/* ─── COURSES ─── */
.courses-sec { padding: 84px 0; background: var(--cream); }
.courses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; max-width: 980px; margin: 0 auto; }
.course-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(45,106,79,.12);
  transition: all .35s;
}
.course-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(45,106,79,.2); }
.course-thumb { position: relative; height: 230px; overflow: hidden; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.course-card:hover .course-thumb img { transform: scale(1.06); }
.course-ribbon {
  position: absolute;
  top: 0; right: 24px;
  background: var(--saffron);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 8px 14px 14px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  min-width: 72px;
  text-align: center;
}
.course-body { padding: 30px 30px 26px; }
.course-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 4px;
}
.course-sub { color: var(--saffron); font-weight: 600; font-size: .82rem; margin-bottom: 14px; letter-spacing: .3px; }
.course-body p { color: var(--text-mid); font-size: .88rem; margin-bottom: 18px; line-height: 1.75; }
.c-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.c-pill {
  background: var(--ivory);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
}
.c-pill i { color: var(--saffron); font-size: .75rem; }
.course-pts { margin-bottom: 24px; }
.course-pts h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--charcoal); margin-bottom: 10px; }
.course-pts ul li {
  font-size: .84rem;
  color: var(--text-mid);
  padding: 4px 0 4px 20px;
  position: relative;
}
.course-pts ul li::before { content: '✦'; position: absolute; left: 0; color: var(--green); font-size: .6rem; top: 6px; }
.btn-green {
  display: inline-block;
  background: var(--grad-green);
  color: white;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .87rem;
  transition: all .2s;
}
.btn-green:hover { opacity: .85; transform: translateY(-2px); }

/* ─── ABOUT HOME ─── */
.about-home { padding: 84px 0; background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 16px; box-shadow: 0 20px 60px rgba(45,106,79,.2); }
.about-img-wrap .since-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--green);
  color: white;
  text-align: center;
  padding: 22px 26px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(45,106,79,.4);
}
.since-badge .since-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.since-badge .since-text { font-size: .72rem; font-weight: 700; letter-spacing: .5px; opacity: .85; margin-top: 4px; }
.about-txt .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--saffron);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.about-txt h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 700;
}
.about-txt p { color: var(--text-mid); margin-bottom: 16px; font-size: .92rem; line-height: 1.8; }
.highlight-strip {
  background: var(--cream);
  border-left: 4px solid var(--saffron);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--green);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.6;
}
.check-list { margin: 18px 0 24px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: .88rem;
  color: var(--text-mid);
}
.check-list li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* ─── DIRECTOR ─── */
.director-sec { padding: 84px 0; background: var(--cream); }
.director-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 20px 60px rgba(20,31,26,.3);
}
.director-photo { position: relative; }
.director-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 440px; }
.director-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(20,31,26,.4));
}
.director-msg { padding: 52px 52px; color: white; display: flex; flex-direction: column; justify-content: center; }
.director-msg .open-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--saffron);
  margin-bottom: 12px;
}
.director-msg p {
  font-size: .94rem;
  line-height: 1.85;
  opacity: .88;
  margin-bottom: 16px;
}
.director-msg .sig-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f9c784;
  margin-top: 20px;
}
.director-msg .sig-role { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .5px; }
.director-msg .sig-divider { width: 48px; height: 2px; background: var(--saffron); margin: 16px 0 6px; }

/* ─── GALLERY ─── */
.gallery-sec { padding: 84px 0; background: var(--ivory); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gal-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gal-item:hover img { transform: scale(1.12); }
.gal-item .gal-overlay {
  position: absolute; inset: 0;
  background: rgba(45,106,79,.55);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 2rem;
  transition: opacity .3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* ─── ENQUIRY ─── */
.enquiry-sec { padding: 84px 0; background: var(--cream); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.form-wrap { background: white; border-radius: 16px; padding: 40px; box-shadow: 0 8px 40px rgba(45,106,79,.08); }
.form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 6px;
}
.form-wrap > p { color: var(--text-mid); font-size: .88rem; margin-bottom: 28px; }
.f-group { margin-bottom: 18px; }
.f-group label { display: block; font-weight: 600; font-size: .82rem; color: var(--charcoal); margin-bottom: 7px; letter-spacing: .2px; }
.f-group input, .f-group select, .f-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: border-color .2s, box-shadow .2s;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  outline: none;
  border-color: var(--green-lt);
  box-shadow: 0 0 0 3px rgba(64,145,108,.15);
}
.f-group textarea { min-height: 100px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--grad-warm);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .4px;
  transition: all .2s;
}
.btn-submit:hover { opacity: .88; transform: translateY(-2px); }
.form-ok {
  display: none;
  background: #dcf0e8;
  color: #1a5c38;
  padding: 14px;
  border-radius: 8px;
  margin-top: 14px;
  font-weight: 600;
  text-align: center;
  font-size: .9rem;
}

/* Contact side */
.contact-side h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 28px;
}
.c-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.c-icon {
  width: 50px; height: 50px;
  background: var(--grad-green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.c-item h4 { font-weight: 700; color: var(--charcoal); font-size: .88rem; margin-bottom: 4px; }
.c-item p, .c-item a { font-size: .86rem; color: var(--text-mid); }
.c-item a:hover { color: var(--saffron); }
.map-box { margin-top: 22px; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 30px rgba(0,0,0,.1); }
.map-box iframe { width: 100%; height: 280px; border: none; display: block; }

/* ─── APPLY STRIP ─── */
.apply-strip {
  background: var(--grad-green);
  padding: 56px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.apply-strip::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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M30 0L0 30L30 60L60 30Z'/%3E%3C/g%3E%3C/svg%3E");
}
.apply-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
  position: relative;
}
.apply-strip p { opacity: .88; font-size: .98rem; margin-bottom: 28px; position: relative; }
.strip-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-ivory {
  display: inline-block;
  background: var(--ivory);
  color: var(--green);
  padding: 13px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .2s;
}
.btn-ivory:hover { background: white; transform: translateY(-2px); }
.btn-out-w {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.6);
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
}
.btn-out-w:hover { background: rgba(255,255,255,.1); border-color: white; }

/* ─── FOOTER ─── */
.site-footer { background: var(--footer-bg); color: #8fad9b; padding-top: 64px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.f-col h4 {
  color: white;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
}
.f-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.f-logo-row img { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--saffron); }
.f-logo-row span { font-family: 'Cormorant Garamond', serif; color: white; font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.f-col p { font-size: .83rem; line-height: 1.85; }
.f-col ul li { margin-bottom: 9px; }
.f-col ul li a { font-size: .83rem; color: #8fad9b; display: flex; align-items: center; gap: 7px; transition: color .2s; }
.f-col ul li a:hover { color: #f9c784; }
.f-col ul li a::before { content: '›'; color: var(--saffron); font-size: 1rem; }
.f-contact-line { display: flex; gap: 10px; margin-bottom: 12px; font-size: .83rem; }
.f-contact-line i { color: var(--saffron); margin-top: 3px; flex-shrink: 0; }
.f-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #8fad9b;
  transition: all .2s;
  font-size: .85rem;
}
.f-social a:hover { background: var(--saffron); border-color: var(--saffron); color: white; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
}

/* ─── PAGE HERO (INNER) ─── */
.page-hero {
  background: var(--grad-hero);
  padding: 72px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--green-lt), var(--saffron));
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.page-hero p { opacity: .85; font-size: 1rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .82rem;
  opacity: .75;
}
.breadcrumb a:hover { color: #f9c784; opacity: 1; }
.breadcrumb span { opacity: .6; }

/* ─── INNER SECTIONS ─── */
.inner-sec { padding: 72px 0; }
.inner-sec.alt { background: var(--cream); }
.inner-sec.white { background: white; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.info-card {
  background: white;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(45,106,79,.08);
}
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--green);
  font-size: 1.35rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h3 i { color: var(--saffron); }

.data-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 16px rgba(0,0,0,.07); }
.data-table th { background: var(--green); color: white; padding: 13px 18px; text-align: left; font-size: .84rem; font-weight: 600; letter-spacing: .2px; }
.data-table td { padding: 12px 18px; font-size: .85rem; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--ivory); }

/* Steps */
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step-box {
  text-align: center;
  background: white;
  border-radius: 14px;
  padding: 32px 20px;
  box-shadow: 0 3px 18px rgba(45,106,79,.07);
  position: relative;
}
.step-box::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 36px;
  color: var(--saffron);
  font-size: 1.4rem;
  font-weight: 700;
}
.step-box:last-child::after { display: none; }
.step-n {
  width: 48px; height: 48px;
  background: var(--grad-warm);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step-box h4 { color: var(--green); font-weight: 700; margin-bottom: 8px; font-size: .92rem; }
.step-box p { font-size: .82rem; color: var(--text-mid); }

/* Facility cards */
.fac-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.fac-card {
  background: white;
  border-radius: 14px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 3px 18px rgba(45,106,79,.07);
  transition: all .3s;
  border-bottom: 3px solid transparent;
}
.fac-card:hover { border-bottom-color: var(--saffron); transform: translateY(-6px); }
.fac-icon {
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
  margin: 0 auto 18px;
  transition: all .3s;
}
.fac-card:hover .fac-icon { background: var(--green); color: white; }
.fac-card h3 { font-family: 'Cormorant Garamond', serif; color: var(--green); font-size: 1.1rem; margin-bottom: 10px; }
.fac-card p { font-size: .84rem; color: var(--text-mid); line-height: 1.7; }

/* Gallery page */
.full-gal { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.gal-cell { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.gal-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gal-cell:hover img { transform: scale(1.08); }
.gal-cell .gc-ov { position: absolute; inset: 0; background: rgba(45,106,79,.5); opacity: 0; display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; transition: opacity .3s; }
.gal-cell:hover .gc-ov { opacity: 1; }

/* Lightbox */
.lb { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 9999; align-items: center; justify-content: center; }
.lb.on { display: flex; }
.lb img { max-width: 90vw; max-height: 90vh; border-radius: 6px; }
.lb-x { position: absolute; top: 20px; right: 24px; color: white; font-size: 1.8rem; cursor: pointer; }
.lb-p, .lb-n { position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 1.8rem; cursor: pointer; background: rgba(255,255,255,.08); border: none; border-radius: 6px; padding: 10px 16px; }
.lb-p { left: 16px; }
.lb-n { right: 16px; }

/* ─── 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.4rem; cursor: pointer; color: var(--green); }
}

/* ─── RESPONSIVE ─── */
@media(max-width: 1024px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .hero-carousel { height: 400px; }
  .slide-content { padding: 0 32px; }
  .slide-content h2 { font-size: 2rem; }
  .carousel-dots { left: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap .since-badge { left: 10px; bottom: -14px; }
  .director-wrap { grid-template-columns: 1fr; }
  .director-photo img { min-height: 280px; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2,1fr); }
  .steps-row { grid-template-columns: repeat(2,1fr); }
  .fac-grid { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}
@media(max-width: 480px) {
  .slide-content { padding: 0 18px; }
  .slide-content h2 { font-size: 1.5rem; }
  .btn-ghost { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .step-box::after { display: none; }
  .fac-grid { grid-template-columns: 1fr; }
  .full-gal { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 1.8rem; }
}
