/* ═══════════════════════════════════════════════
   GYANSAROVER GROUP OF EDUCATION – MAIN CSS
   Mobile-first | Primary: #09224c | Gold: #f5a623
   ═══════════════════════════════════════════════ */
:root {
  --navy: #09224c;
  --navy-mid: #122d65;
  --navy-deep: #060f1f;
  --gold: #f5a623;
  --gold-light: #ffc94a;
  --cream: #fef8ee;
  --ice: #eef2fb;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7697;
  --border: #dfe4f0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 12px rgba(9, 34, 76, 0.07);
  --shadow-md: 0 8px 32px rgba(9, 34, 76, 0.11);
  --shadow-lg: 0 20px 60px rgba(9, 34, 76, 0.15);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--navy-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.25rem;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.section {
  padding: 5rem 1.25rem;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
}

@media (min-width: 1400px) {
  .section {
    padding: 6rem 1.25rem;
  }
}
.text-center {
  text-align: center;
}
.d-none {
  display: none !important;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
}
.section-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 0.75rem;
  max-width: 560px;
  font-family: 'Josefin Sans', sans-serif;
  font-style: italic;
}
.section-lead span {
  color: #ffc94a;
}
.section-lead span {
  color: #ffc94a;
}
.section-head {
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 166, 35, 0.4);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.12);
  transition: box-shadow 0.3s;
  font-size: 20px;
  font-weight: 600;
}
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1400px) {
  .nav-container {
    max-width: 1320px;
  }
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.nav-brand-logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.nav-brand-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: nowrap;
  align-items: center;
}
.nav-links a {
  color: rgb(9, 34, 76);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 1000;
  margin: 0;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  margin: 0;
}
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text);
  transition: background 0.2s;
  white-space: nowrap;
}
.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--ice);
  color: var(--gold);
}
.dropdown-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: var(--gold);
}

/* Mobile Drawer Dropdown */
.drawer-dropdown {
  position: relative;
}
.drawer-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.2s;
}
.drawer-dropdown-toggle:hover,
.drawer-dropdown-toggle.active {
  color: var(--gold);
}
.drawer-dropdown-menu {
  background: var(--navy);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  list-style: none;
  padding: 0.25rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.drawer-dropdown.open .drawer-dropdown-menu {
  max-height: 200px;
  padding: 0.5rem 0;
}
.drawer-dropdown-menu li {
  margin: 0;
}
.drawer-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-dropdown-menu a:hover,
.drawer-dropdown-menu a.active {
  color: var(--gold);
  padding-left: 2rem;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-apply {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-apply:hover {
  background: var(--gold-light);
  transform: scale(1.04);
}
.hamburger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-drawer {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy-deep);
  padding: 1rem 1.5rem 1.5rem;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open {
  transform: translateY(0);
}
.mobile-drawer a {
  padding: 0.8rem 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.2s;
}
.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--gold);
}
.mobile-drawer .drawer-apply {
  margin-top: 1rem;
  text-align: center;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: var(--radius-md);
  padding: 0.75rem !important;
  font-weight: 700;
  border-bottom: none !important;
}
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}
.drawer-overlay.open {
  display: block;
}
@media (min-width: 480px) {
  .nav-brand-logo {
    height: 54px;
  }
  .nav-links {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .hamburger {
    display: none;
  }
  .mobile-drawer {
    display: none;
  }
  .nav-actions .btn-apply {
    display: inline-flex;
  }
  .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 992px) {
  .nav-links {
    gap: 1.75rem;
  }
  .dropdown-menu {
    left: 0;
    transform: none;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 1.25rem;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }
  .nav-actions {
    gap: 0;
  }
  .nav-actions .btn-apply {
    display: none;
  }
  .hamburger span {
    background: #09224c;
  }
}

/* Add to main.css */
.quote-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    z-index: 1;
    backdrop-filter: blur(4px);     /* nice modern touch */
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.hero {
  min-height: 100svh;
  padding-top: 68px;
  background:
    radial-gradient(
      ellipse at 75% 10%,
      rgba(245, 166, 35, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(30, 80, 180, 0.22) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: var(--sz, 4px);
  height: var(--sz, 4px);
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 8s) var(--del, 0s) ease-in-out infinite;
}
@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100%) translateX(0);
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) translateX(var(--dx, 20px));
  }
}
.hero-body {
  padding: 3rem 1.25rem;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-body {
    padding: 2rem 1rem;
  }
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 999px;
  padding: 0.3rem 0.95rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}
.hero-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-top: 0.85rem;
  animation: fadeUp 0.8s 0.35s both;
}
.hero-heading .accent {
  background: linear-gradient(90deg, var(--gold), #ff9d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin-top: 0.9rem;
  animation: fadeUp 0.8s 0.5s both;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
  animation: fadeUp 0.8s 0.65s both;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
  animation: fadeUp 0.8s 0.8s both;
}
.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.stat-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateY(-3px);
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-top: 0.1rem;
}
.hero-form-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(16px);
  animation: fadeUp 0.9s 0.9s both;
}
.hero-form-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.hero-form-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.mini-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mini-form input,
.mini-form select {
  width: 100%;
  padding: 0.72rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.mini-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.mini-form input:focus,
.mini-form select:focus {
  border-color: var(--gold);
}
.mini-form select option {
  background: var(--navy-deep);
  color: var(--white);
}
.mini-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 380px;
    align-items: center;
  }
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.55rem 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
animation: marquee 100s linear infinite;
  width: max-content;
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.83rem;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.marquee-item::after {
  content: "◆";
  font-size: 0.45rem;
  opacity: 0.5;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.marquee-link:hover .marquee-item {
    opacity: 0.8;
}


.about-grid {
  display: grid;
  gap: 3rem;
}

.about-img-wrap img {
    height: 100%;
    width: 100%;
}

.about-img-wrap {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-xl);
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.about-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 25%,
    rgba(245, 166, 35, 0.2),
    transparent 60%
  );
}
.about-img-icon {
  font-size: 4.5rem;
  position: relative;
  z-index: 1;
}
.about-img-caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-float-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 10px 32px rgba(245, 166, 35, 0.4);
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.about-float-badge .num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}
.about-float-badge .lbl {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.8;
}
.about-quote {
  position: absolute;
  top: -1rem;
  left: -1rem;
  background: var(--navy-deep);
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 1;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.value-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  transition: var(--transition);
}
.value-chip:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.value-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.95rem;
}
.value-chip h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
}
.value-chip p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 0.1rem;
}
.about-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.page-hero {
  padding: calc(68px + 3rem) 1.25rem 3rem;
  background:
    radial-gradient(
      ellipse at 80% 0%,
      rgba(245, 166, 35, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-top: 0.5rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
  font-size: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}
.inst-grid {
  display: grid;
  gap: 1.25rem;
}
.inst-card {
  background: var(--ice);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.inst-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.inst-card:hover::before {
  transform: scaleX(1);
}
.inst-card:hover {
  border-color: transparent;
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.inst-number {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.inst-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.inst-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}
.inst-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.inst-tag {
  background: rgba(9, 34, 76, 0.08);
  color: var(--navy);
  font-size: 0.71rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}
.inst-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.inst-card:hover .inst-arrow {
  background: var(--gold);
  color: var(--navy);
  transform: translateX(3px);
}
@media (min-width: 600px) {
  .inst-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .inst-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.inst-detail-header {
  padding: calc(68px + 3rem) 1.25rem 3rem;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: var(--white);
}
.inst-info-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .inst-info-grid {
    grid-template-columns: 1fr 320px;
  }
}
.inst-info-sidebar {
  background: var(--ice);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1.5px solid var(--border);
}
.sidebar-contact-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.sidebar-contact-item:last-child {
  border-bottom: none;
}
.sidebar-contact-item .ico {
  color: var(--gold);
  font-size: 1rem;
}
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.filter-btn:hover:not(.active) {
  border-color: var(--navy);
  background: var(--ice);
}
.course-search-wrap {
  margin-bottom: 1.5rem;
}
.course-search {
  width: 100%;
  max-width: 380px;
  padding: 0.72rem 1rem 0.72rem 2.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  outline: none;
  background: var(--white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7697' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E")
    no-repeat 0.8rem center;
  transition: border-color 0.2s;
}
.course-search:focus {
  border-color: var(--navy);
}
.course-grid {
  display: grid;
  gap: 1.1rem;
}
.course-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.course-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.course-card:hover::after {
  transform: scaleX(1);
}
.course-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.course-cat {
  display: inline-block;
  margin-bottom: 0.65rem;
  background: rgba(9, 34, 76, 0.07);
  color: var(--navy);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.course-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.course-meta {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.course-meta span {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.course-card .link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  transition:
    gap 0.2s,
    color 0.2s;
}
.course-card:hover .link-more {
  gap: 0.6rem;
  color: var(--gold);
}
@media (min-width: 600px) {
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .course-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.course-detail-section {
  padding: 3rem 1.25rem;
}
.course-detail-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .course-detail-grid {
    grid-template-columns: 1fr 320px;
  }
}
.course-info-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.course-info-box h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.course-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.meta-item {
  background: var(--ice);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}
.meta-item .meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.meta-item .meta-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 0.2rem;
}
.course-sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--white);
  position: sticky;
  top: 88px;
}
.course-sidebar-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.course-sidebar-form input,
.course-sidebar-form select {
  width: 100%;
  padding: 0.68rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.86rem;
  margin-bottom: 0.7rem;
  outline: none;
  transition: border-color 0.2s;
}
.course-sidebar-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.course-sidebar-form input:focus,
.course-sidebar-form select:focus {
  border-color: var(--gold);
}
.course-sidebar-form select option {
  background: var(--navy-deep);
}
.events-grid {
  display: grid;
  gap: 1.25rem;
}
.event-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}
.event-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.event-date {
  flex-shrink: 0;
  width: 62px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--white);
  text-align: center;
}
.event-day {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}
.event-month {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}
.event-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.event-content p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.event-tag {
  display: inline-block;
  margin-top: 0.5rem;
  background: rgba(245, 166, 35, 0.15);
  color: #b36000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.event-register-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.event-register-modal.open {
  display: flex;
}
.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeUp 0.35s ease;
}
.modal-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.modal-close {
  float: right;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}
@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-grid {
  display: grid;
  gap: 2rem;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.18),
    transparent 70%
  );
  pointer-events: none;
}
.contact-info-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.contact-info-card h2 .accent {
  color: var(--gold);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-detail .c-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.contact-detail .c-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.contact-detail .c-value {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0.1rem;
}
.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 1rem;
}
.hours-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}
.form-group label .req {
  color: #e53e3e;
}
.form-control {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(9, 34, 76, 0.08);
}
.form-control::placeholder {
  color: #adb5c8;
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 500px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--muted);
}
.form-check input {
  margin-top: 0.2rem;
  accent-color: var(--navy);
}
.form-message {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.admission-section {
  padding: 3rem 1.25rem 5rem;
}
.admission-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .admission-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}
.admission-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.admission-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}
.form-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
  margin: 1.25rem 0 0.9rem;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
}
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.admission-sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--white);
  position: sticky;
  top: 88px;
}
.admission-sidebar-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sidebar-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sidebar-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
}
.sidebar-step .stp-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #1a3d7a);
  padding: 4.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1), transparent 70%);
}
.cta-banner .section-title {
  color: var(--white);
  position: relative;
  z-index: 1;
}
.cta-banner .section-lead {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.life-section {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  padding: 5rem 1.25rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.life-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1), transparent 70%);
  pointer-events: none;
}
.life-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.life-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}
.life-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(245, 166, 35, 0.35);
  transform: translateY(-4px);
}
.life-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), #e07b00);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.life-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.life-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}
@media (min-width: 600px) {
  .life-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .life-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stats-bar {
  background: var(--navy);
  padding: 3rem 1.25rem;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.stats-item {
  text-align: center;
}
.stats-num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stats-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}
@media (min-width: 600px) {
  .stats-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.site-footer {
  background: #ffffff;
  color: #09224c;
  padding: 4.5rem 1.25rem 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 0.75rem;
  max-width: 300px;
  font-weight: 500;
  color: #09224c;
}
.footer-brand p span {
  color: #f5a623;
  font-weight: 600;
}
.footer-tagline {
  margin-top: 0.75rem;
  font-style: italic;
  color: #f5a623;
  font-size: 1.0rem;
  font-weight: 600;
}
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5a623;
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: #09224c;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #f5a623;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #09224c;
  font-weight: 500;
}
.footer-icon {
  color: #f5a623;
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.footer-contact a {
  color: #09224c;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  padding-top: 1.5rem;
  border-top: 1px solid #dfe4f0;
  color: #09224c;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(9, 34, 76, 0.08);
  color: #09224c;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #f5a623;
  color: #09224c;
  transform: translateY(-3px);
}

.heart {
  color: var(--gold);
}
@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}
.back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-top:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--navy);
}
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  min-width: 220px;
  text-align: center;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-l {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-r {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.vis,
.reveal-l.vis,
.reveal-r.vis {
  opacity: 1;
  transform: none;
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.stagger.vis > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}
.stagger.vis > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}
.stagger.vis > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}
.stagger.vis > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.35s;
}
.stagger.vis > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.45s;
}
.stagger.vis > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.55s;
}
.stagger.vis > *:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: 0.65s;
}
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.badge {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.badge-warning {
  background: #fff3cd;
  color: #856404;
}
.badge-success {
  background: #d1e7dd;
  color: #0f5132;
}
.badge-info {
  background: #cff4fc;
  color: #055160;
}
.badge-danger {
  background: #f8d7da;
  color: #842029;
}
.badge-primary {
  background: #cfe2ff;
  color: #084298;
}
.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}
.error-code {
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* File Upload Styles */
.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  background: var(--ice);
  color: var(--muted);
  font-size: 0.85rem;
  transition: all 0.25s ease;
  min-height: 80px;
}

.file-upload-text i {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.file-upload-wrapper:hover .file-upload-text {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.05);
}

.file-upload-wrapper:hover .file-upload-text i {
  color: var(--gold);
}

.file-input:valid + .file-upload-text {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.08);
}

.file-input:valid + .file-upload-text i {
  color: var(--gold);
}

/* Form Loading State */
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success Message After Submit */
.form-success-wrapper {
  text-align: center;
  padding: 2rem;
}

.form-success-wrapper .success-icon {
  width: 80px;
  height: 80px;
  background: #d4edda;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: #28a745;
}

.form-success-wrapper h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.form-success-wrapper p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* =====================================================
   GALLERY SECTION — paste into assets/css/main.css
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --gallery-gap: 1.25rem;
  --gallery-section-height: 860px;
  --scroll-speed-1: 30s;
  --scroll-speed-2: 25s;
  --scroll-speed-3: 28s;
}

/* ---------- Hero Banner ---------- */
.awards-hero {
  position: relative;
  text-align: center;
  padding: 90px 24px 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,166,35,0.12) 0%, transparent 70%),
    linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: var(--white);
}

.awards-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}

.awards-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.awards-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.35);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.awards-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.awards-headline em {
  font-style: italic;
  color: var(--gold);
}

.awards-subline {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0;
}

.hero-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 40px auto 0;
}

/* ---------- Grid Section ---------- */
.awards-grid-section {
  padding: 4rem 1.25rem;
  overflow: hidden;
  background: var(--white);
}

.media-grid-container {
  display: flex;
  gap: var(--gallery-gap);
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Columns ---------- */
.column {
  /* Each column takes equal 1/3 width */
  flex: 1 1 0;
  max-width: 360px;
  height: var(--gallery-section-height);
  overflow: hidden;
  position: relative;

  /* Soft fade mask at top & bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image:         linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* ---------- Track (the moving inner wrapper) ---------- */
.column-track {
  display: flex;
  flex-direction: column;
  gap: var(--gallery-gap);
  /* JS will clone cards inside here and start animation */
}

/* Column 1: top → bottom (scrollDown) */
.column-1 .column-track {
  animation: galleryScrollDown var(--scroll-speed-1) linear infinite;
}

/* Column 2: bottom → top (scrollUp) */
.column-2 .column-track {
  animation: galleryScrollUp var(--scroll-speed-2) linear infinite;
}

/* Column 3: top → bottom (scrollDown) */
.column-3 .column-track {
  animation: galleryScrollDown var(--scroll-speed-3) linear infinite;
}

/* Pause on hover */
.column:hover .column-track {
  animation-play-state: paused;
}

/* ---------- Keyframes ---------- */
@keyframes galleryScrollDown {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes galleryScrollUp {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

/* ---------- Card Image ---------- */
.card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.card:hover .card-image img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0,0,0,0.35);
  transition: opacity 0.3s ease;
}

.card:hover .img-overlay {
  opacity: 1;
}

.zoom-icon {
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Card Content ---------- */
.card-content {
  padding: 1rem 1.1rem 1.2rem;
}

.card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.card-description {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-description b {
  color: var(--text);
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --gallery-section-height: 780px; }
  .column { max-width: 300px; }
}

@media (max-width: 768px) {
  .awards-grid-section {
    overflow: visible;
  }
  .media-grid-container {
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
  }
  .column {
    width: 100%;
    max-width: none;
    height: auto !important;
    overflow: visible !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    display: block !important;
    flex-shrink: 0;
  }
  .column-track {
    animation: none !important;
    display: flex !important;
    flex-direction: column;
    gap: var(--gallery-gap);
  }
  .card {
    flex-shrink: 0;
  }
}

/* ================================================================
   new-gallery-sections.css
   Styles for 3 New Event Gallery Sections:
     Section 4 — Fresher's Day   (.fd2-*)
     Section 5 — Health Camp     (.hc2-*)
     Section 6 — Saraswati Puja  (.sp2-*)
   ================================================================
   Load this file in <head> AFTER your main stylesheet:
     <link rel="stylesheet" href="assets/css/new-gallery-sections.css">
   Google Fonts are imported below — no separate <link> needed.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,400&family=Playfair+Display:ital,wght@1,400;1,700&family=Cabinet+Grotesk:wght@300;400;500;700;800&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;1,9..144,400&family=Cormorant:ital,wght@0,300;0,600;0,700;1,400;1,600&family=Josefin+Sans:wght@300;400;600&display=swap');


/* ================================================================
   SECTION 4 — FRESHER'S DAY
   Cinematic Polaroid Wall / Auto-scrolling Film Strips
   ================================================================ */

.fd2-section {
  --fd2-bg:      #0c0c14;
  --fd2-accent1: #ff6b35;
  --fd2-accent2: #f7c948;
  --fd2-accent3: #7c5cbf;
  --fd2-white:   #f5f0e8;
  --fd2-muted:   rgba(245, 240, 232, 0.35);
  background: var(--fd2-bg);
  position: relative;
  overflow: hidden;
  padding: 0 0 80px;
}

/* Noise texture overlay */
.fd2-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

/* Bokeh blobs */
.fd2-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.18;
  z-index: 0;
}
.fd2-blob--1 { width: 500px; height: 500px; background: var(--fd2-accent3); top: -100px; left: -150px; }
.fd2-blob--2 { width: 400px; height: 400px; background: var(--fd2-accent1); top: 30%; right: -120px; }
.fd2-blob--3 { width: 350px; height: 350px; background: var(--fd2-accent2); bottom: -80px; left: 40%; }

/* ── Header ── */
.fd2-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 80px 5% 60px;
  position: relative;
  z-index: 2;
}
.fd2-header__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 240, 232, 0.15), transparent);
}
.fd2-header__content {
  text-align: center;
}
.fd2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fd2-accent1);
  margin-bottom: 16px;
}
.fd2-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  margin: 0 0 16px;
}
.fd2-title__top {
  display: block;
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--fd2-white);
  letter-spacing: 0.12em;
}
.fd2-title__bottom {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--fd2-accent1), var(--fd2-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fd2-title__bottom em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  letter-spacing: 0;
}
.fd2-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  color: var(--fd2-muted);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

/* ── Film Strips ── */
.fd2-filmstrip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 20px;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.fd2-filmstrip__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: fd2-scroll-left 40s linear infinite;
  padding: 12px 0;
}
.fd2-filmstrip__track--rev {
  animation: fd2-scroll-right 46s linear infinite;
}
@keyframes fd2-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fd2-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.fd2-filmstrip:hover .fd2-filmstrip__track { animation-play-state: paused; }
.fd2-filmstrip__frame { flex-shrink: 0; }

/* ── Polaroid card ── */
.fd2-polaroid {
  width: 200px;
  background: #1a1a2a;
  border-radius: 4px;
  padding: 10px 10px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition: transform 0.4s cubic-bezier(.23, 1, .32, 1), box-shadow 0.4s ease;
  transform: rotate(var(--r, 0deg));
  position: relative;
}
.fd2-filmstrip__frame:nth-child(3n)   .fd2-polaroid { --r: -1.5deg; }
.fd2-filmstrip__frame:nth-child(3n+1) .fd2-polaroid { --r:  1.2deg; }
.fd2-filmstrip__frame:nth-child(5n)   .fd2-polaroid { --r: -0.8deg; }
.fd2-polaroid--alt { background: #1c1428; }
.fd2-polaroid:not(.fd2-polaroid--dup):hover {
  transform: rotate(0deg) scale(1.06) translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(247, 201, 72, 0.3);
  z-index: 10;
}
.fd2-polaroid__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: #111;
}
.fd2-polaroid__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: saturate(1.15) contrast(1.05);
}
.fd2-polaroid:hover .fd2-polaroid__img-wrap img {
  transform: scale(1.08);
  filter: saturate(1.3) brightness(0.85);
}
.fd2-polaroid__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.fd2-polaroid__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.fd2-polaroid__caption {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.fd2-polaroid__icon {
  color: var(--fd2-accent2);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fd2-polaroid:hover .fd2-polaroid__icon {
  opacity: 1;
  transform: scale(1);
}

/* ── Footer bar ── */
.fd2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 5% 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(245, 240, 232, 0.07);
  margin-top: 20px;
}
.fd2-footer__count {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.fd2-footer__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(90deg, var(--fd2-accent1), var(--fd2-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fd2-footer__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--fd2-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fd2-footer__dots {
  display: flex;
  gap: 8px;
}
.fd2-footer__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fd2-accent3);
  opacity: 0.4;
  animation: fd2-blink 2s ease-in-out infinite;
}
.fd2-footer__dots span:nth-child(2) { animation-delay: 0.3s; }
.fd2-footer__dots span:nth-child(3) { animation-delay: 0.6s; background: var(--fd2-accent1); }
.fd2-footer__dots span:nth-child(4) { animation-delay: 0.9s; }
.fd2-footer__dots span:nth-child(5) { animation-delay: 1.2s; background: var(--fd2-accent2); }
@keyframes fd2-blink {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}
.fd2-footer__tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--fd2-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* ================================================================
   SECTION 5 — HEALTH CAMP
   Bento Editorial Grid — clean white + electric teal
   ================================================================ */

.hc2-section {
  --hc2-bg:     #f8faff;
  --hc2-ink:    #050d1a;
  --hc2-teal:   #00b8a9;
  --hc2-teal2:  #00e5d4;
  --hc2-sky:    #e0f7fa;
  --hc2-muted:  #6b7a8d;
  --hc2-border: rgba(5, 13, 26, 0.08);
  background: var(--hc2-bg);
  position: relative;
  overflow: hidden;
}
.hc2-wave { line-height: 0; }
.hc2-wave svg { width: 100%; height: 60px; display: block; }

/* ── Inner layout ── */
.hc2-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 70px 5%;
  align-items: start;
}

/* ── Sidebar ── */
.hc2-sidebar {
  position: sticky;
  top: 80px;
}
.hc2-sidebar__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hc2-teal);
  background: var(--hc2-sky);
  border: 1px solid rgba(0, 184, 169, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hc2-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--hc2-ink);
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}
.hc2-title span {
  font-style: italic;
  font-weight: 300;
  color: var(--hc2-teal);
}
.hc2-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--hc2-teal), var(--hc2-teal2));
  border-radius: 2px;
  margin-bottom: 20px;
}
.hc2-desc {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--hc2-muted);
  line-height: 1.75;
  margin-bottom: 30px;
}

/* Stats */
.hc2-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--hc2-border);
  box-shadow: 0 2px 16px rgba(0, 184, 169, 0.06);
}
.hc2-stat { text-align: center; flex: 1; }
.hc2-stat__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--hc2-teal);
  line-height: 1;
}
.hc2-stat__lbl {
  display: block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc2-muted);
  margin-top: 4px;
}
.hc2-stat__sep {
  width: 1px;
  height: 36px;
  background: var(--hc2-border);
}

/* Pills */
.hc2-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hc2-pill {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hc2-ink);
  background: #fff;
  border: 1.5px solid var(--hc2-border);
  padding: 6px 14px;
  border-radius: 100px;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  cursor: default;
}
.hc2-pill:hover {
  border-color: var(--hc2-teal);
  background: var(--hc2-sky);
  color: var(--hc2-teal);
}

/* ── Bento Grid ── */
.hc2-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 12px;
}
.hc2-bento__item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #e0f7fa;
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.55s ease var(--delay), transform 0.55s ease var(--delay);
  box-shadow: 0 2px 12px rgba(5, 13, 26, 0.07);
}
.hc2-bento__item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hc2-bento__item--hero { grid-column: span 2; grid-row: span 2; }
.hc2-bento__item--tall { grid-row: span 2; }
.hc2-bento__item--wide { grid-column: span 2; }
.hc2-bento__item--sm   { grid-column: span 1; grid-row: span 1; }
.hc2-bento__item a {
  display: block;
  width: 100%;
  height: 100%;
}
.hc2-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(.25, .8, .25, 1), filter 0.4s ease;
  filter: saturate(1.05);
}
.hc2-bento__item:hover img {
  transform: scale(1.07);
  filter: saturate(1.2) brightness(0.7);
}
.hc2-bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 184, 169, 0.7), rgba(0, 229, 212, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.hc2-bento__item:hover .hc2-bento__overlay { opacity: 1; }
.hc2-bento__overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hc2-bento__zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.hc2-bento__item:hover .hc2-bento__zoom { transform: scale(1); }
.hc2-bento__num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
}
.hc2-bento__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0, 184, 169, 0.85);
  backdrop-filter: blur(4px);
  padding: 3px 9px;
  border-radius: 100px;
  transition: opacity 0.3s ease;
}
.hc2-bento__item:hover .hc2-bento__badge { opacity: 0; }


/* ================================================================
   SECTION 6 — SARASWATI PUJA
   Luxury Mandala Gallery — deep navy + burnished gold
   ================================================================ */

.sp2-section {
  --sp2-bg:    #060d1e;
  --sp2-bg2:   #0b1530;
  --sp2-gold:  #c9a227;
  --sp2-gold2: #f0d060;
  --sp2-gold3: #8c6e1a;
  --sp2-white: #f5ede0;
  --sp2-muted: rgba(245, 237, 224, 0.38);
  background: radial-gradient(ellipse at 50% 0%, #0f1e45 0%, var(--sp2-bg) 65%);
  position: relative;
  overflow: hidden;
  padding: 0 0 80px;
}

/* Mandala BG */
.sp2-mandala-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}
.sp2-mandala-bg svg { width: 100%; height: auto; }

/* Particles */
.sp2-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sp2-particle {
  position: absolute;
  left: var(--px);
  top: var(--py);
  width: var(--ps);
  height: var(--ps);
  border-radius: 50%;
  background: var(--sp2-gold);
  animation: sp2-twinkle var(--pdu) ease-in-out var(--pd) infinite;
}
@keyframes sp2-twinkle {
  0%, 100% { opacity: 0;   transform: scale(0.5); }
  50%       { opacity: 0.7; transform: scale(1.2); }
}

/* ── Header ── */
.sp2-header {
  text-align: center;
  padding: 80px 5% 55px;
  position: relative;
  z-index: 2;
}
.sp2-header__symbol {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.5));
  animation: sp2-float 4s ease-in-out infinite;
}
@keyframes sp2-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.sp2-veena { display: inline-block; }
.sp2-header__tag-row { margin-bottom: 18px; }
.sp2-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sp2-gold);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 6px 20px;
  border-radius: 100px;
  background: rgba(201, 162, 39, 0.07);
}
.sp2-tag__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sp2-gold);
  display: inline-block;
}
.sp2-title { margin: 0 0 14px; line-height: 1; }
.sp2-title__main {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  color: var(--sp2-white);
  letter-spacing: -0.02em;
}
.sp2-title__sub {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, var(--sp2-gold3), var(--sp2-gold), var(--sp2-gold2), var(--sp2-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: sp2-shimmer 4s linear infinite;
}
.sp2-title__sub em { font-style: italic; font-weight: 600; }
@keyframes sp2-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.sp2-title__ornament { width: 200px; margin: 16px auto; }
.sp2-title__ornament svg { width: 100%; height: auto; }
.sp2-subtitle {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--sp2-muted);
  letter-spacing: 0.08em;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

/* ── Gallery ── */
.sp2-gallery-wrap {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.sp2-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp2-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* Cells */
.sp2-cell {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #0b1530;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease calc(var(--ci) * 0.04s),
    transform 0.6s ease calc(var(--ci) * 0.04s);
  border: 1px solid rgba(201, 162, 39, 0.1);
}
.sp2-cell.visible { opacity: 1; transform: translateY(0); }
.sp2-cell--wide { flex: 2; height: 220px; }
.sp2-cell--port { flex: 1; height: 220px; }
.sp2-cell--eq   { flex: 1; height: 200px; }
.sp2-cell--hero { flex: 2; height: 260px; }
.sp2-cell--sm   { flex: 1; height: 260px; }
.sp2-cell a { display: block; width: 100%; height: 100%; position: relative; }
.sp2-cell__img-wrap { width: 100%; height: 100%; }
.sp2-cell__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.25, .8, .25, 1), filter 0.5s ease;
  filter: brightness(0.88) saturate(1.1) sepia(0.08);
}
.sp2-cell:hover .sp2-cell__img-wrap img {
  transform: scale(1.08);
  filter: brightness(0.55) saturate(1.4) sepia(0.1);
}

/* Gold corners */
.sp2-cell__corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sp2-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--sp2-gold);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sp2-corner--tl { top: 8px;    left: 8px;   border-width: 2px 0 0 2px; transform: translate(-4px, -4px); }
.sp2-corner--tr { top: 8px;    right: 8px;  border-width: 2px 2px 0 0; transform: translate(4px, -4px);  }
.sp2-corner--bl { bottom: 8px; left: 8px;   border-width: 0 0 2px 2px; transform: translate(-4px, 4px);  }
.sp2-corner--br { bottom: 8px; right: 8px;  border-width: 0 2px 2px 0; transform: translate(4px, 4px);   }
.sp2-cell:hover .sp2-corner { opacity: 1; transform: translate(0, 0); }

/* Overlay */
.sp2-cell__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(240, 208, 96, 0.1));
}
.sp2-cell:hover .sp2-cell__overlay { opacity: 1; }
.sp2-cell__overlay-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, 0.7);
  background: rgba(6, 13, 30, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sp2-gold2);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.sp2-cell:hover .sp2-cell__overlay-icon { transform: scale(1); }
.sp2-cell__overlay-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(240, 208, 96, 0.75);
}

/* Footer */
.sp2-footer {
  text-align: center;
  margin-top: 55px;
  position: relative;
  z-index: 2;
  padding: 0 5%;
}
.sp2-footer__ornament {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1rem;
  color: var(--sp2-gold);
  margin-bottom: 14px;
  opacity: 0.55;
}
.sp2-footer__text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sp2-muted);
}
.sp2-footer__bar {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sp2-gold), transparent);
  margin: 16px auto 0;
  opacity: 0.5;
}


/* ================================================================
   RESPONSIVE — All 3 Sections
   ================================================================ */

/* Fresher's Day */
@media (max-width: 768px) {
  .fd2-header {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 5% 40px;
  }
  .fd2-header__line { display: none; }
  .fd2-polaroid { width: 160px; }
  .fd2-footer { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 480px) {
  .fd2-polaroid { width: 130px; }
}

/* Health Camp */
@media (max-width: 1024px) {
  .hc2-inner { grid-template-columns: 1fr; }
  .hc2-sidebar { position: static; text-align: center; }
  .hc2-divider { margin: 0 auto 20px; }
  .hc2-stats { max-width: 400px; margin: 0 auto 28px; }
  .hc2-pill-row { justify-content: center; }
  .hc2-title br { display: none; }
  .hc2-desc { max-width: 520px; margin: 0 auto 30px; }
}
@media (max-width: 768px) {
  .hc2-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .hc2-bento__item--hero { grid-column: span 2; grid-row: span 1; }
  .hc2-bento__item--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .hc2-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
}

/* Saraswati Puja */
@media (max-width: 768px) {
  .sp2-row { flex-wrap: wrap; }
  .sp2-cell--wide,
  .sp2-cell--hero { flex: 1 1 100%; }
  .sp2-cell--port,
  .sp2-cell--eq,
  .sp2-cell--sm   { flex: 1 1 45%; height: 160px; }
}
@media (max-width: 480px) {
  .sp2-cell--port,
  .sp2-cell--eq,
  .sp2-cell--sm   { flex: 1 1 100%; height: 180px; }
  .sp2-gallery-wrap { padding: 0 10px; }
}