/* ================================================================
   विष्णुकांति महाविद्यालय — Premium Design System v2
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --green:        #3cb371;
  --green-dark:   #2a7a52;
  --green-light:  #d4f1e4;
  --green-glow:   rgba(60,179,113,0.25);
  --navy:         #12275e;
  --navy-mid:     #1c3a7a;
  --navy-light:   #e8edf8;
  --gold:         #f5a623;
  --gold-light:   #fff3d6;
  --text:         #1e293b;
  --text-muted:   #64748b;
  --bg-light:     #f8fafc;
  --white:        #ffffff;
  --border:       #e2e8f0;
  --sh-xs: 0 1px 4px rgba(0,0,0,0.06);
  --sh-sm: 0 4px 16px rgba(0,0,0,0.08);
  --sh-md: 0 8px 32px rgba(0,0,0,0.12);
  --sh-lg: 0 20px 60px rgba(0,0,0,0.16);
  --r:     10px;
  --r-lg:  18px;
  --r-xl:  28px;
  --ease:  cubic-bezier(.4,0,.2,1);
  --dur:   0.3s;
  --header-h: 100px;
}

/* ── Reset / Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
section { padding: 80px 0; }

/* ── Announcement Ticker ────────────────────────────────────────── */
.ticker-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 0.78rem;
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
}
.ticker-bar .ticker-label {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  padding: 0 14px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  letter-spacing: .5px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.ticker-bar .ticker-label::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0; bottom: 0;
  border-left: 10px solid var(--green);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}
.ticker-wrap { overflow: hidden; }
.ticker-move {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
}
.ticker-move span { padding: 0 50px; }
.ticker-move span::before { content: '●'; color: var(--green); margin-right: 8px; font-size: 0.6rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Header ─────────────────────────────────────────────────────── */
.vk-header {
  position: fixed;
  top: 30px; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: top var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.vk-header.scrolled { top: 0; box-shadow: var(--sh-md); }

/* Top bar */
.header-top-bar {
  background: linear-gradient(135deg, #fff 0%, #f0f8f4 100%);
  border-bottom: 3px solid var(--green);
  padding: 6px 0;
}
.college-logo {
  height: 50px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
}
.college-title {
  font-family: 'Times New Roman', serif;
  font-size: clamp(0.88rem, 2vw, 1.15rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}
.college-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 2px 0 1px;
}
.college-affil {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .2px;
  margin: 0;
}
.header-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  padding: 2px 0;
  transition: color var(--dur);
}
.header-contact a:hover { color: var(--green); }
.header-contact a i { color: var(--green); font-size: 0.8rem; }

/* Navbar */
.vk-navbar {
  background: var(--navy);
  padding: 0;
  position: relative;
}
.vk-navbar .nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.vk-nav-list {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}
.vk-nav-list li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 14px;
  color: rgba(255,255,255,.8);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: background var(--dur), color var(--dur);
  white-space: nowrap;
  position: relative;
}
.vk-nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--green);
  transition: left var(--dur) var(--ease), right var(--dur) var(--ease);
}
.vk-nav-list li a:hover::after,
.vk-nav-list li a.active::after { left: 0; right: 0; }
.vk-nav-list li a:hover,
.vk-nav-list li a.active {
  color: #fff;
  background: rgba(255,255,255,.07);
}
.vk-nav-list li .result-link {
  color: var(--gold) !important;
  font-weight: 700;
}
.vk-nav-list li .result-link:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.vk-nav-list li .result-link::after { background: var(--gold); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  color: #fff;
  font-size: 1.4rem;
  padding: 8px 12px;
  cursor: pointer;
  transition: var(--dur);
  align-self: center;
  margin-right: 12px;
}
.mobile-toggle:hover { background: rgba(255,255,255,.1); }

/* ── Page offset ────────────────────────────────────────────────── */
.page-content { padding-top: calc(var(--header-h) + 30px); }

/* ── Section Headings ───────────────────────────────────────────── */
.sec-head {
  text-align: center;
  margin-bottom: 52px;
}
.sec-head .label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.sec-head h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}
.sec-head h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 4px;
  background: var(--green);
  border-radius: 4px;
}
.sec-head p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.sec-head.left-align { text-align: left; }
.sec-head.left-align h2::after { left: 0; transform: none; }
.sec-head.left-align p { margin-left: 0; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform var(--dur), box-shadow var(--dur);
}
.btn-green:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--green-glow);
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: transform var(--dur), box-shadow var(--dur);
}
.btn-navy:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(18,39,94,.35);
}
.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all var(--dur);
}
.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #e8940f 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: transform var(--dur), box-shadow var(--dur);
}
.btn-gold:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,.4);
}

/* ── Hero Carousel ──────────────────────────────────────────────── */
.hero-wrap {
  position: relative;
  margin-top: calc(var(--header-h) + 30px);
}
.hero-wrap .carousel-item { position: relative; }
.hero-wrap .carousel-item img {
  height: 590px;
  width: 100%;
  object-fit: cover;
  filter: brightness(.75);
}
.hero-wrap .carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(12,30,70,.75) 0%,
    rgba(12,30,70,.4) 50%,
    rgba(60,179,113,.2) 100%);
}
.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 0 60px;
}
.hero-caption .hc-inner { max-width: 700px; }
.hero-caption .hc-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-caption h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 3px 16px rgba(0,0,0,.35);
  margin-bottom: 16px;
}
.hero-caption p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-wrap .carousel-control-prev,
.hero-wrap .carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  opacity: 1;
  transition: background var(--dur);
}
.hero-wrap .carousel-control-prev:hover,
.hero-wrap .carousel-control-next:hover {
  background: var(--green);
}
.hero-wrap .carousel-indicators {
  bottom: 22px;
  gap: 6px;
}
.hero-wrap .carousel-indicators button {
  width: 32px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.4);
  border: none;
  transition: all var(--dur);
  opacity: 1;
}
.hero-wrap .carousel-indicators button.active {
  background: var(--green);
  width: 52px;
}

/* ── Stats Strip ────────────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #0e2050 100%);
  padding: 0;
}
.stats-strip .stat-card {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--dur);
}
.stats-strip .stat-card:last-child { border-right: none; }
.stats-strip .stat-card:hover { background: rgba(255,255,255,.04); }
.stats-strip .stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green-light);
  display: block;
  line-height: 1;
}
.stats-strip .stat-suffix {
  font-size: 1.6rem;
  color: var(--green);
}
.stats-strip .stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  font-weight: 600;
}
.stats-strip .stat-icon {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

/* ── Cards ──────────────────────────────────────────────────────── */
.card-base {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card-base:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

/* Notice / Announcement cards */
.notice-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  padding: 32px 28px;
  height: 100%;
  transition: transform var(--dur), box-shadow var(--dur);
  position: relative;
  overflow: hidden;
}
.notice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--navy-mid));
}
.notice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.notice-card .nc-icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.notice-card .nc-icon i { font-size: 1.5rem; color: var(--green-dark); }
.notice-card h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.notice-list { list-style: none; padding: 0; margin: 0; }
.notice-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.5;
}
.notice-list li:last-child { border-bottom: none; }
.notice-list li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.notice-list li a { color: var(--text); transition: color var(--dur); }
.notice-list li a:hover { color: var(--green); }

/* Course cards */
.course-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  padding: 28px 24px;
  height: 100%;
  transition: transform var(--dur), box-shadow var(--dur);
  position: relative;
  overflow: hidden;
}
.course-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.course-card:hover::after { transform: scaleX(1); }
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.course-card .cc-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px var(--green-glow);
}
.course-card .cc-icon i { font-size: 1.3rem; color: #fff; }
.course-card h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.course-card p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

/* Faculty cards */
.faculty-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--dur), box-shadow var(--dur);
  text-align: center;
}
.faculty-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.faculty-card .fc-img-wrap {
  position: relative;
  overflow: hidden;
}
.faculty-card .fc-img-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
  transition: transform .5s var(--ease);
}
.faculty-card:hover .fc-img-wrap img { transform: scale(1.06); }
.faculty-card .fc-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .5px;
}
.faculty-card .fc-body { padding: 20px; }
.faculty-card .fc-body h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.faculty-card .fc-body .fc-role { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.faculty-card .fc-dept {
  display: inline-block;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: .4px;
}

/* Info badges */
.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  border: 1px solid rgba(60,179,113,.25);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin: 4px 3px;
}

/* ── Gallery ────────────────────────────────────────────────────── */
.gallery-card {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--sh-xs);
}
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,30,70,.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-card:hover .g-overlay { opacity: 1; }
.gallery-card .g-overlay span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}
.gallery-card .g-overlay i {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.7);
  font-size: 2.2rem;
  color: #fff;
  opacity: 0;
  transition: all .3s var(--ease);
}
.gallery-card:hover .g-overlay i {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}

/* ── Page Heroes ────────────────────────────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  margin-top: calc(var(--header-h) + 30px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 20px; }
.page-hero .breadcrumb {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 8px 18px;
  display: inline-flex;
  margin-bottom: 0;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); font-size: 0.82rem; }
.page-hero .breadcrumb-item.active { color: var(--green-light); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.page-hero .hero-shape {
  position: absolute;
  right: -60px; top: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.page-hero .hero-shape2 {
  position: absolute;
  right: 60px; top: 80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.hero-about  { background: linear-gradient(135deg, var(--navy) 0%, #0e2a5e 60%, #1a5e3c 100%); }
.hero-admission { background: linear-gradient(135deg, #1a5e3c 0%, var(--navy) 100%); }
.hero-gallery { background: linear-gradient(135deg, #0e2a5e 0%, #1a5e3c 60%, #0e2a5e 100%); }
.hero-contact { background: linear-gradient(135deg, var(--navy) 0%, #083a2e 100%); }
.hero-faculty { background: linear-gradient(135deg, #1a5e3c 0%, var(--navy) 100%); }

/* ── About Page ─────────────────────────────────────────────────── */
.principal-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  transition: transform var(--dur), box-shadow var(--dur);
}
.principal-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.principal-card img {
  width: 100%; height: 300px;
  object-fit: cover; object-position: top;
}
.principal-card .pc-body { padding: 24px; text-align: center; }
.principal-card .pc-body h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: var(--navy); margin-bottom: 4px;
}
.principal-card .pc-body p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.principal-card .pc-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-top: 8px;
  letter-spacing: .5px;
}
.about-content-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  padding: 44px;
}
.about-content-card .quote-line {
  border-left: 4px solid var(--green);
  padding-left: 18px;
  margin-top: 24px;
  font-style: italic;
  color: var(--green-dark);
  font-weight: 600;
}
.timeline-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.tl-dot {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--green);
}
.tl-dot i { color: var(--green-dark); font-size: 1rem; }
.tl-text h6 { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 0.92rem; }
.tl-text p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

/* ── Contact Page ───────────────────────────────────────────────── */
.contact-info-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  padding: 40px;
  height: 100%;
}
.cic-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: transform var(--dur);
}
.cic-item:last-child { border-bottom: none; }
.cic-item:hover { transform: translateX(4px); }
.cic-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px var(--green-glow);
}
.cic-icon i { font-size: 1.2rem; color: #fff; }
.cic-text h5 {
  font-weight: 700; color: var(--navy);
  font-size: 0.9rem; margin-bottom: 4px;
}
.cic-text p, .cic-text a { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.cic-text a:hover { color: var(--green); }

.map-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  padding: 44px;
}
.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}
.form-control, .form-select {
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--dur), box-shadow var(--dur);
  width: 100%;
  background: var(--white);
  font-family: 'Open Sans', sans-serif;
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(60,179,113,.15);
  outline: none;
}
.form-control.is-invalid { border-color: #dc3545; }
.invalid-feedback { font-size: 0.78rem; }

/* ── Footer ─────────────────────────────────────────────────────── */
.vk-footer { background: #0b1a35; }
.footer-top { padding: 72px 0 40px; }
.footer-about p { color: rgba(255,255,255,.55); font-size: 0.85rem; line-height: 1.8; margin-top: 14px; }
.footer-logo { height: 68px; border-radius: var(--r); }
.footer-h {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-h::before { content: ''; width: 4px; height: 18px; background: var(--green); border-radius: 4px; display: block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur);
}
.footer-links a i { color: var(--green); font-size: 0.7rem; }
.footer-links a:hover { color: var(--green); padding-left: 5px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-contact-list li i { color: var(--green); margin-top: 2px; flex-shrink: 0; font-size: 0.95rem; }
.footer-contact-list a { color: rgba(255,255,255,.55); transition: color var(--dur); }
.footer-contact-list a:hover { color: var(--green); }
.footer-newsletter p { color: rgba(255,255,255,.55); font-size: 0.84rem; margin-bottom: 14px; }
.footer-newsletter .fn-row { display: flex; gap: 0; }
.footer-newsletter input {
  flex: 1;
  border-radius: var(--r) 0 0 var(--r);
  border: none;
  padding: 12px 16px;
  font-size: 0.85rem;
}
.footer-newsletter button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 0 var(--r) var(--r) 0;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--dur);
}
.footer-newsletter button:hover { background: var(--green-dark); }
.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: var(--gold); }
.footer-social { display: flex; gap: 10px; justify-content: flex-end; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: all var(--dur);
}
.footer-social a:hover { background: var(--green); color: #fff; }

/* ── Misc Utilities ─────────────────────────────────────────────── */
.bg-soft-green { background: linear-gradient(135deg, #f0faf5 0%, #e8f6ff 100%); }
.bg-soft-navy  { background: linear-gradient(135deg, #eef2fb 0%, #f0faf5 100%); }
.divider { width: 60px; height: 4px; background: var(--green); border-radius: 4px; margin: 12px 0 24px; }
.divider-center { margin-left: auto; margin-right: auto; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .3px;
}
.chip-green { background: var(--green-light); color: var(--green-dark); }
.chip-navy  { background: var(--navy-light); color: var(--navy); }
.chip-gold  { background: var(--gold-light); color: #a06400; }

/* Table */
.vk-table { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); }
.vk-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 14px 16px;
  border: none;
}
.vk-table tbody td {
  font-size: 0.84rem;
  padding: 13px 16px;
  border-color: var(--border);
  vertical-align: middle;
}
.vk-table tbody tr:hover { background: var(--bg-light); }

/* process steps */
.step-item { text-align: center; padding: 20px; }
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px var(--green-glow);
}
.step-item h5 { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 6px; }
.step-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* Modal */
.vk-modal .modal-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff; border: none;
}
.vk-modal .modal-title { font-weight: 800; font-family: 'Raleway', sans-serif; }
.vk-modal .btn-close { filter: invert(1); }
.vk-modal .modal-body { padding: 28px; }
.alert-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.88rem;
}
.alert-row:last-child { border-bottom: none; }
.alert-row i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.modal-footer { border-top: 1px solid var(--border); padding: 16px 28px; }

/* Back to top */
.back-to-top {
  background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
  box-shadow: 0 4px 20px var(--green-glow) !important;
  border-radius: 50% !important;
}

/* ── Mobile nav ─────────────────────────────────────────────────── */
@media (max-width: 991px) {
  :root { --header-h: 118px; }
  .mobile-toggle { display: flex; }
  .vk-nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    box-shadow: var(--sh-lg);
    z-index: 999;
  }
  .vk-nav-list.open { display: flex; }
  .vk-nav-list li a { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 0.85rem; }
  .vk-nav-list li a::after { display: none; }
  .hero-wrap .carousel-item img { height: 400px; }
  .hero-caption h2 { font-size: 1.7rem; }
  .stats-strip .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 575px) {
  :root { --header-h: 128px; }
  .college-logo { height: 40px; }
  .college-title { font-size: 0.8rem; }
  .hero-wrap .carousel-item img { height: 280px; }
  .hero-caption h2 { font-size: 1.25rem; }
  .hero-caption p { font-size: 0.85rem; }
  section { padding: 52px 0; }
  .about-content-card { padding: 24px; }
  .contact-form-card { padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   HOME PAGE — all styles (moved from inline / @section head)
═══════════════════════════════════════════════════════════ */

/* ── Hero carousel ── */
.vk-hero-wrap { position: relative; overflow: hidden; }
.vk-hero-wrap .carousel-item img {
  width: 100%; height: 780px; object-fit: cover; object-position: center top;
  filter: brightness(.50);
}
@media (max-width: 991px) { .vk-hero-wrap .carousel-item img { height: 540px; } }
@media (max-width: 575px)  { .vk-hero-wrap .carousel-item img { height: 420px; } }
.vk-hero-wrap .carousel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,27,68,.82) 0%, rgba(11,27,68,.35) 60%, transparent 100%);
}
.vk-hero-wrap .hc-wrap {
  position: absolute; inset: 0; display: flex; align-items: center;
}
.hc-inner { max-width: 620px; }
.hc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px); color: #fff; font-size: .78rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 7px 18px;
  border-radius: 50px; margin-bottom: 22px;
}
.hc-inner h1 {
  font-family: 'Raleway', sans-serif; font-weight: 900; color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.1; margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.hc-inner h1 span { color: var(--green-light); }
.hc-inner p {
  color: rgba(255,255,255,.82); font-size: clamp(.92rem, 2vw, 1.08rem);
  line-height: 1.7; margin-bottom: 30px; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero carousel controls */
.vk-hero-wrap .carousel-control-prev,
.vk-hero-wrap .carousel-control-next {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px); top: 50%; transform: translateY(-50%);
  margin: 0 24px; opacity: 1; transition: .3s;
}
.vk-hero-wrap .carousel-control-prev:hover,
.vk-hero-wrap .carousel-control-next:hover { background: var(--green); }
.vk-hero-wrap .carousel-control-icon { font-size: 1.1rem; color: #fff; }
.vk-hero-wrap .carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%; opacity: .5;
  border: 2px solid #fff; background: transparent; transition: .3s;
}
.vk-hero-wrap .carousel-indicators .active {
  width: 30px; border-radius: 50px; opacity: 1; background: #fff;
}

/* Ghost button (used in hero slides) */
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.5); color: #fff;
  background: rgba(255,255,255,.08); border-radius: 50px;
  padding: 10px 26px; font-weight: 700; font-size: .88rem;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: .3s;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ── Floating stats bar ── */
.stats-bar-wrap { position: relative; z-index: 11; }
.hero-stats-bar {
  background: #fff; box-shadow: 0 8px 40px rgba(11,27,68,.14);
  border-radius: 16px; margin-top: -48px; position: relative; z-index: 10; padding: 0;
}
.hstat-item {
  display: flex; align-items: center; gap: 16px;
  padding: 26px 28px; border-right: 1px solid #eef0f5; transition: .3s;
}
.hstat-item:last-child { border-right: none; }
.hstat-item:hover { background: #f7faf9; border-radius: 16px; }
.hstat-ico {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
}
.hstat-ico.green { background: linear-gradient(135deg, var(--green), #2ea96a); }
.hstat-ico.navy  { background: linear-gradient(135deg, var(--navy),  #1e3a8a); }
.hstat-ico.gold  { background: linear-gradient(135deg, #f59e0b,      #d97706); }
.hstat-ico.teal  { background: linear-gradient(135deg, #0891b2,      #0e7490); }
.hstat-num { font-size: 2rem; font-weight: 900; font-family: 'Raleway', sans-serif; line-height: 1; color: var(--navy); }
.hstat-lbl { font-size: .78rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

/* ── About section ── */
.section-about { padding-top: 80px; }
.about-desc { color: var(--text-muted); line-height: 1.85; font-size: .96rem; margin-bottom: 24px; }
.about-img-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; gap: 14px; }
.about-img-mosaic .aim-item { border-radius: 18px; overflow: hidden; position: relative; }
.about-img-mosaic .aim-item img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.about-img-mosaic .aim-item:hover img { transform: scale(1.06); }
.about-img-mosaic .aim-item:first-child { grid-row: span 2; }
.aim-stat-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(11,27,68,.82); backdrop-filter: blur(10px);
  color: #fff; border-radius: 12px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.15);
}
.aim-stat-badge .asb-num { font-size: 1.6rem; font-weight: 900; font-family: 'Raleway', sans-serif; line-height: 1; color: var(--green-light); }
.aim-stat-badge .asb-lbl { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; opacity: .75; }
.aim-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--green); color: #fff; font-size: .68rem; font-weight: 700;
  padding: 5px 12px; border-radius: 50px; letter-spacing: .8px; text-transform: uppercase;
}
.check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: .92rem; color: var(--text-muted);
  border-bottom: 1px solid #f0f2f7;
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* ── Results & Notices section ── */
.section-bg-light { background: #f4f7ff; padding: 80px 0; }
.card-flex { height: 100%; display: flex; flex-direction: column; }

/* Section card header icon */
.sec-card-ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; flex-shrink: 0;
}
.sec-card-ico.green { background: linear-gradient(135deg, var(--green), #2ea96a); }
.sec-card-ico.gold  { background: linear-gradient(135deg, #f59e0b, #d97706); }
.sec-card-title { font-family: 'Raleway', sans-serif; color: var(--navy); margin-bottom: 0; }

/* Scroll area */
.notice-scroll { flex: 1; overflow-y: auto; padding-right: 4px; min-height: 0; }
.notice-scroll::-webkit-scrollbar { width: 4px; }
.notice-scroll::-webkit-scrollbar-track { background: #eef5f0; border-radius: 4px; }
.notice-scroll::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }

/* Result row */
.result-row {
  display: flex; align-items: center;
  border-radius: 14px; margin-bottom: 10px; overflow: hidden;
  border: 1px solid #d6eddf; text-decoration: none;
  background: #fff; transition: .28s; position: relative;
}
.result-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--green); border-radius: 4px 0 0 4px; transition: .28s;
}
.result-row.is-new::before { background: #f59e0b; }
.result-row:hover { box-shadow: 0 6px 24px rgba(26,94,60,.14); transform: translateY(-2px); border-color: var(--green); }
.result-row:hover::before { width: 6px; }
.rr-num {
  min-width: 46px; height: 70px; background: linear-gradient(135deg, var(--green), #28a065);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.result-row.is-new .rr-num { background: linear-gradient(135deg, #f59e0b, #d97706); }
.rr-body { flex: 1; padding: 13px 16px; min-width: 0; }
.rr-title { font-size: .93rem; font-weight: 700; color: var(--navy); line-height: 1.4; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rr-meta { font-size: .72rem; color: var(--text-muted); margin-top: 4px; display: flex; align-items: center; gap: 6px; }
.rr-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.rr-badge-new {
  font-size: .62rem; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  background: #fff3cd; color: #b45309; border: 1px solid #fde68a;
  padding: 2px 8px; border-radius: 50px; flex-shrink: 0;
}
.rr-dl {
  min-width: 52px; height: 70px; display: flex; align-items: center; justify-content: center;
  background: #f0fbf4; border-left: 1px solid #d6eddf; flex-shrink: 0;
  font-size: 1.2rem; color: var(--green); transition: .28s;
}
.result-row:hover .rr-dl { background: var(--green); color: #fff; }

/* Notice items */
.notice-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: 12px; margin-bottom: 8px;
  background: #fff; border: 1px solid #e4edea; border-left: 4px solid var(--green);
  text-decoration: none; transition: .25s;
}
.notice-item:hover { background: #f0fbf5; box-shadow: 0 4px 16px rgba(26,94,60,.1); transform: translateX(4px); }
.notice-item.is-notice { border-left-color: #f59e0b; }
.notice-item.is-notice:hover { background: #fffbeb; }
.notice-item .ni-ico {
  width: 40px; height: 40px; border-radius: 10px; min-width: 40px;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .95rem;
}
.notice-item.is-notice .ni-ico { background: linear-gradient(135deg, #f59e0b, #d97706); }
.notice-item .ni-txt { font-size: .92rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.notice-item .ni-date { font-size: .72rem; color: var(--text-muted); margin-top: 3px; }
.notice-list-body { flex: 1; }

/* Quick Info */
.quick-info-title { font-family: 'Raleway', sans-serif; color: var(--navy); }
.phone-link { font-size: .95rem; }

/* ── Course tiles ── */
.course-tile {
  background: #fff; border: 1px solid #eef0f7; border-radius: 18px;
  padding: 28px 24px; height: 100%; transition: .3s; position: relative; overflow: hidden;
}
.course-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 18px 18px 0 0;
}
.course-tile.ct-green::before { background: var(--green); }
.course-tile.ct-navy::before  { background: var(--navy); }
.course-tile.ct-gold::before  { background: #f59e0b; }
.course-tile:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,27,68,.12); border-color: transparent; }
.ct-ico-wrap {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff;
}
.ct-ico-wrap.green { background: linear-gradient(135deg, var(--green), #2ea96a); }
.ct-ico-wrap.navy  { background: linear-gradient(135deg, var(--navy),  #1e3a8a); }
.ct-ico-wrap.gold  { background: linear-gradient(135deg, #f59e0b,      #d97706); }
.course-tile h5 { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.course-tile p  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.ct-link {
  font-size: .8rem; font-weight: 700; color: var(--green); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: .2s;
}
.ct-link:hover { gap: 10px; color: var(--green-dark); }

/* ── Gallery mosaic ── */
.gal-mosaic { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 200px 200px; gap: 12px; }
.gal-mosaic .gm-item { border-radius: 14px; overflow: hidden; position: relative; }
.gal-mosaic .gm-item:first-child { grid-column: span 2; grid-row: span 2; }
.gal-mosaic .gm-item img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.gal-mosaic .gm-item:hover img { transform: scale(1.07); }
.gal-mosaic .gm-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,27,68,.7));
  opacity: 0; transition: .3s; display: flex; align-items: flex-end; padding: 14px;
}
.gal-mosaic .gm-item:hover .gm-overlay { opacity: 1; }
.gal-mosaic .gm-overlay span { color: #fff; font-size: .8rem; font-weight: 700; }
@media (max-width: 767px) {
  .gal-mosaic { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gal-mosaic .gm-item:first-child { grid-column: span 2; height: 200px; }
  .gal-mosaic .gm-item { height: 140px; }
}

/* ── Map section ── */
.map-frame { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(11,27,68,.14); }
.map-iframe { width: 100%; height: 460px; border: 0; display: block; }

/* Contact info card (home page map section) */
.cic-home { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(11,27,68,.1); }
.cic-home-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3d7b 100%);
  padding: 24px; position: relative; overflow: hidden;
}
.cic-home-header .deco-1 {
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,.06);
}
.cic-home-header .deco-2 {
  position: absolute; bottom: -30px; left: -10px;
  width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.04);
}
.cic-home-header .inner { position: relative; z-index: 1; }
.location-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border-radius: 50px;
  padding: 4px 12px; font-size: .68rem; font-weight: 700;
  color: rgba(255,255,255,.8); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 10px;
}
.location-chip i { color: var(--green-light); }
.cic-college-name { font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 1.05rem; color: #fff; line-height: 1.3; }
.cic-address { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: 6px; line-height: 1.5; }

/* Info grid */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #eef0f6; }
.ig-cell {
  background: #fff; padding: 18px 16px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; transition: .25s;
}
.ig-cell:hover { background: #f4fbf7; }
.ig-ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .95rem;
}
.ig-ico.green { background: linear-gradient(135deg, var(--green), #2ea96a); }
.ig-ico.teal  { background: linear-gradient(135deg, #0891b2,      #0e7490); }
.ig-ico.gold  { background: linear-gradient(135deg, #f59e0b,      #d97706); }
.ig-ico.navy  { background: linear-gradient(135deg, var(--navy),  #1e3a8a); }
.ig-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-bottom: 2px; }
.ig-value { font-size: .88rem; font-weight: 800; color: var(--navy); font-family: 'Raleway', sans-serif; }
.ig-value-sm { font-size: .78rem; font-weight: 700; color: var(--navy); word-break: break-all; }
.ig-sub { font-size: .78rem; color: var(--text-muted); }
.cic-home-footer { padding: 16px 20px; background: #f8fafb; border-top: 1px solid #eef0f6; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(110deg, #081b44 0%, #0b2d1c 55%, #113622 100%);
  position: relative; overflow: hidden; padding: 72px 0;
}
.cta-band::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,94,60,.35) 0%, transparent 70%);
}
.cta-band::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Raleway', sans-serif; font-weight: 900; color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; line-height: 1.15;
}
.cta-desc { color: rgba(255,255,255,.68); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.chip-cta {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25);
  color: #fff; font-size: .75rem;
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,.35); color: #fff;
  background: rgba(255,255,255,.07); border-radius: 50px;
  padding: 10px 26px; font-weight: 700; font-size: .88rem;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: .3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ── Principal section ── */
.principal-profile-card {
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(11,27,68,.1); height: 100%;
}
.ppc-top {
  background: linear-gradient(145deg, var(--navy) 0%, #1e3d7b 100%);
  padding: 32px 28px 48px; position: relative; text-align: center;
}
.ppc-top::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 40px;
  background: #fff; border-radius: 50% 50% 0 0 / 40px 40px 0 0;
}
.ppc-photo-wrap { position: relative; display: inline-block; margin-bottom: 16px; }
.ppc-photo {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover; object-position: top;
  border: 4px solid rgba(255,255,255,.25); box-shadow: 0 8px 32px rgba(0,0,0,.3);
  position: relative; z-index: 1;
}
.ppc-photo-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.3); animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ppc-name  { font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 1.2rem; color: #fff; margin-bottom: 4px; }
.ppc-title { font-size: .78rem; color: rgba(255,255,255,.65); }
.ppc-body  { padding: 28px; }
.ppc-quote-mark { font-family: Georgia, serif; font-size: 4.5rem; line-height: .8; color: var(--green); opacity: .25; display: block; }
.ppc-quote-text { font-size: .97rem; line-height: 1.85; color: var(--text-muted); font-style: italic; margin-bottom: 20px; }
.ppc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ppc-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f0faf5; border: 1px solid #c8e6d6; color: var(--green-dark);
  font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 50px;
}

/* Value cards */
.val-card {
  background: #fff; border-radius: 18px; padding: 26px 22px;
  border: 1px solid #eef0f7; height: 100%; transition: .3s;
  display: flex; flex-direction: column; gap: 14px;
}
.val-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(11,27,68,.1); border-color: transparent; }
.val-ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff;
}
.val-ico.gold  { background: linear-gradient(135deg, #f59e0b, #d97706); }
.val-ico.green { background: linear-gradient(135deg, var(--green), #2ea96a); }
.val-ico.navy  { background: linear-gradient(135deg, var(--navy),  #1e3a8a); }
.val-ico.teal  { background: linear-gradient(135deg, #0891b2,      #0e7490); }
.val-card h6 { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); margin: 0; }
.val-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Alert modal ── */
.modal-backdrop          { z-index: 1500 !important; }
#alertModal              { z-index: 1510 !important; }
#alertModal.modal        { padding-top: 0 !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; }
#alertModal .modal-dialog {
  position: relative !important;
  top: auto !important; left: auto !important;
  width: auto !important; max-width: 500px;
  margin: 1.75rem auto !important;
  display: flex; align-items: center;
  min-height: calc(100% - 3.5rem);
}
#alertModal .modal-content { width: 100% !important; }
.vk-modal .modal-content { border-radius: 22px !important; overflow: hidden; box-shadow: 0 32px 80px rgba(11,27,68,.28); }
.vk-modal .modal-header  { background: linear-gradient(135deg, var(--navy), #1a3560); color: #fff; border: none; padding: 22px 28px; }
.vk-modal .modal-header .modal-title { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1.08rem; }
.vk-modal .modal-header .btn-close   { filter: invert(1); opacity: .8; }
.vk-modal .modal-body   { padding: 28px; }
.vk-modal .modal-footer { border: none; padding: 8px 28px 26px; gap: 10px; }
.text-green-light { color: var(--green-light); }
.alert-item {
  display: flex; gap: 14px; padding: 16px 18px; border-radius: 14px;
  background: #f4fbf7; border: 1px solid #d1edd9; margin-bottom: 12px; transition: .2s;
}
.alert-item:last-child { margin-bottom: 0; }
.alert-item:hover { background: #e8f7ef; box-shadow: 0 4px 16px rgba(26,94,60,.1); }
.ai-ico {
  width: 42px; height: 42px; border-radius: 11px; background: var(--green);
  color: #fff; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.ai-ico.gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ai-ico.navy { background: linear-gradient(135deg, var(--navy), #1e3a8a); }
.ai-txt strong { font-size: .9rem; display: block; color: var(--navy); margin-bottom: 3px; font-weight: 800; }
.ai-txt span   { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }
.new-gif       { width: 24px; vertical-align: middle; margin-left: 4px; }
.stats-bar-wrap { position: relative; z-index: 11; }
