/* ============================================================
   Federal Public School — style.css  (Visual Redesign v2)
   Bootstrap 5 CDN handles grid, utilities, cards.
   This file defines all custom site components.
   ============================================================ */

/* Design tokens */
:root {
  --primary: #0a6b45;
  --primary-dark: #064d30;
  --primary-light: #d4f0e3;
  --secondary: #1b3f7a;
  --secondary-dark: #112a54;
  --accent: #e89c1a;
  --accent-dark: #b5770e;
  --accent-soft: #fff8e6;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #eef6f1;
  --text: #1a2332;
  --muted: #5e6e82;
  --line: #dde6df;
  --shadow: 0 12px 36px rgba(10, 107, 69, .10);
  --shadow-lg: 0 24px 60px rgba(10, 107, 69, .14);
  --radius: 16px;
  --radius-lg: 24px;
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none !important;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}


::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

/* Topbar */
.topbar-bar {
  background: var(--secondary-dark);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  padding: 7px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.topbar-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.contact-item i {
  opacity: .65;
}

.topbar-right a,
.topbar-right span {
  color: rgba(255, 255, 255, .65);
  cursor: pointer;
  transition: color .15s;
}

.topbar-right a:hover,
.topbar-right span:hover {
  color: #fff;
}

/* Flip ticker */
.flip-container {
  display: inline-block;
  height: 22px;
  width: 140px;
  perspective: 600px;
  overflow: hidden;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #fff;
}

.flipper {
  transform-style: preserve-3d;
  position: relative;
  height: 22px;
  transform-origin: 100% 11px;
  animation: spin4faces 5s ease-in-out infinite;
}

@keyframes spin4faces {
  0% {
    transform: rotateX(0deg);
  }

  20% {
    transform: rotateX(-90deg);
  }

  25% {
    transform: rotateX(-90deg);
  }

  45% {
    transform: rotateX(-180deg);
  }

  50% {
    transform: rotateX(-180deg);
  }

  70% {
    transform: rotateX(-270deg);
  }

  75% {
    transform: rotateX(-270deg);
  }

  100% {
    transform: rotateX(-360deg);
  }
}

.flip {
  backface-visibility: hidden;
  position: absolute;
  height: 22px;
  width: 140px;
  line-height: 22px;
  text-align: center;
}

.face1 {
  transform: rotateX(0deg) translateZ(11px);
  background: var(--secondary);
}

.face2 {
  transform: rotateX(90deg) translateZ(11px);
  background: var(--primary-dark);
}

.face3 {
  transform: rotateX(180deg) translateZ(11px);
  background: var(--secondary);
}

.face4 {
  transform: rotateX(270deg) translateZ(11px);
  background: var(--primary-dark);
}

/* Site header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 107, 69, .09);
  box-shadow: 0 2px 20px rgb(0 0 0 / 33%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 20px;
  position: relative;
}

.logo {
  height: 78px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform .3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #2c3e50;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-drop-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  color: #2c3e50;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}

.nav-drop-btn:hover,
.nav-drop-btn.active {
  color: var(--secondary);
}

.drop-arrow {
  font-size: 10px;
  display: inline-block;
  transition: transform .2s ease;
}

.nav-dropdown.open .drop-arrow {
  transform: rotate(180deg);
}

.drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(27, 63, 122, .14);
  border: 1px solid rgba(10, 107, 69, .08);
  padding: 8px 0;
  z-index: 200;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

.nav-dropdown.open .drop-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.drop-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(10, 107, 69, .08);
  border-top: 1px solid rgba(10, 107, 69, .08);
  rotate: 45deg;
}

.drop-menu a {
  text-decoration: none !important;
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #2c3e50;
  white-space: nowrap;
  transition: background .12s, color .12s;
}

.drop-menu a:hover {
  background: var(--surface-2);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--primary);
  cursor: pointer;
}

/* Buttons */



/* Modal */

.event-card {
  cursor: pointer;
}

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.event-modal-dialog {
  position: relative;
  width: min(900px, calc(100% - 24px));
  max-height: calc(100vh - 30px);
  margin: 15px auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.event-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid #ececec;
  background: #fff;
}

.event-modal-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.event-modal-date {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
}

/* close button */
.event-modal-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  font-size: 24px;
  cursor: pointer;
  flex-shrink: 0;
}

/* image */
.event-modal-media-wrap {
  padding: 20px;
  background: #fafafa;
}

.event-modal-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

/* thumbnails */
.event-modal-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
}

.event-modal-thumb {
  width: 75px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: .8;
  border: 2px solid transparent;
}

.event-modal-thumb.active {
  border-color: var(--primary);
  opacity: 1;
}

/* content */
.event-modal-body {
  padding: 24px;
  overflow-y: auto;
}

.event-modal-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  white-space: pre-line;
}

.event-icon-card {
  position: relative;
  min-height: 132px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0f172a;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.event-icon-card:hover,
.event-icon-card.active {
  transform: translateY(-3px);
  border-color: var(--secondary);
  box-shadow: 0 16px 34px rgba(0,0,0,.25);
  color: #fff;
}

.event-icon-card img,
.event-icon-card > span {
  width: 100%;
  height: 132px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
}

.event-icon-card > span {
  display: flex;
}

.event-icon-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.18), transparent);
  pointer-events: none;
}

.event-icon-card strong,
.event-icon-card small {
  position: absolute;
  left: 12px;
  right: 12px;
  z-index: 1;
}

.event-icon-card strong {
  bottom: 25px;
  font-size: 13px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-icon-card small {
  bottom: 9px;
  font-size: 11px;
  color: rgba(255,255,255,.78);
}

.event-icon-card.active::before {
  content: 'Selected';
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: var(--accent);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}

@media (max-width: 576px) {
  .event-icon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gallery-year-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-year-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--muted);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
  font-weight: 700;
  transition: .18s ease;
}

.gallery-year-badge:hover,
.gallery-year-badge.active {
  color: #111;
  background: var(--accent);
  border-color: var(--accent);
}


.event-icon-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 14px;
}







.management-card {
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  border: 3px solid var(--secondary);
  border-radius: var(--radius);
    /*background: linear-gradient(45deg, aliceblue, var(--secondary));*/
  background: linear-gradient(45deg, #f0f8ff8a, #3572d58f);
  backdrop-filter: blur(3px);
}

.management-card h5 {
    color: var(--secondary);
}

.management-card p {
    color: var(--secondary-color);
}

.management-card:hover {
  transform: translateY(-4px);
}

.management-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.management-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
}

.management-modal-dialog {
  position: relative;
  width: min(960px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  margin: 50px auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.management-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.management-modal-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 340px;
}

.management-modal-left {
  background: #f8fafc00;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.management-modal-img {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.management-modal-initial {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  background: #e5e7eb;
  color: #4b5563;
  font-size: 72px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.management-modal-right {
  padding: 28px 28px 24px;
  overflow: auto;
}

.management-modal-name {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.2;
}

.management-modal-position {
  margin: 0 0 18px;
  color: var(--bs-dark);
  font-size: 16px;
  font-weight: 600;
}

.management-modal-meta {
  margin-bottom: 20px;
}

.management-meta-label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--bs-light);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.management-meta-value {
  color: var(--bs-dark);
  line-height: 1.6;
}

.management-modal-subtitle {
  margin: 0 0 10px;
  font-size: 16px;
}

.management-modal-bio {
  color: var(--bs-dark);
  line-height: 1.8;
  white-space: pre-line;
}

@media (max-width:768px) {
  .management-modal-dialog {
    width: calc(100% - 14px);
    margin: 7px auto;
    max-height: calc(100vh - 14px);
    border-radius: 14px;
  }

  .management-modal-content {
    grid-template-columns: 1fr;
  }

  .management-modal-left {
    padding: 22px 22px 10px;
  }

  .management-modal-img,
  .management-modal-initial {
    width: 140px;
    height: 140px;
  }

  .management-modal-name {
    font-size: 24px;
  }

  .management-modal-right {
    padding: 18px 18px 22px;
  }
}



.staff-card {
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  border: 3px solid var(--secondary);
  border-radius: var(--radius);
  /*background: linear-gradient(45deg, aliceblue, var(--secondary));*/
  background: linear-gradient(45deg, #f0f8ff8a, #3572d58f);
  backdrop-filter: blur(3px);
}

.staff-card small {
    color: var(--bs-secondary-color);
}

.staff-card h6 {
    color: var(--secondary);
}

.staff-card:hover {
  transform: translateY(-3px);
}

.staff-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.staff-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
}

.staff-modal-dialog {
  position: relative;
  width: min(920px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  margin: 50px auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.staff-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.staff-modal-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 320px;
}

.staff-modal-left {
  background: #f8fafc00;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.staff-modal-img {
  width: 210px;
  height: 210px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.staff-modal-initial {
  width: 210px;
  height: 210px;
  border-radius: 18px;
  background: #e5e7eb;
  color: #4b5563;
  font-size: 72px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-modal-right {
  padding: 28px 28px 24px;
  overflow: auto;
}

.staff-modal-name {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.2;
}

.staff-modal-designation {
  margin: 0 0 18px;
  color: var(--bs-dark);
  font-size: 16px;
  font-weight: 600;
}

.staff-modal-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.staff-meta-label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--bs-light);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.staff-meta-value {
  color: var(--bs-dark);
  line-height: 1.6;
}

.staff-modal-subtitle {
  margin: 0 0 10px;
  font-size: 16px;
}

.staff-modal-bio {
  color: var(--bs-dark);
  line-height: 1.8;
  white-space: pre-line;
}

@media (max-width: 768px) {
  .staff-modal-dialog {
    width: calc(100% - 14px);
    margin: 7px auto;
    max-height: calc(100vh - 14px);
    border-radius: 14px;
  }

  .staff-modal-content {
    grid-template-columns: 1fr;
  }

  .staff-modal-left {
    padding: 22px 22px 10px;
  }

  .staff-modal-img,
  .staff-modal-initial {
    width: 140px;
    height: 140px;
  }

  .staff-modal-name {
    font-size: 24px;
  }

  .staff-modal-right {
    padding: 18px 18px 22px;
  }
}


/* Hero */
.hero {
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 540px;
  align-items: center;
}

.hero-content {
  padding: 60px 48px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-carousel-wrap {
  /*position: relative;*/
  overflow: hidden;
  border-radius: 0 0 0 var(--radius-lg);
  padding: 30px 0;
}

.hero-carousel-wrap .carousel,
.hero-carousel-wrap .carousel-inner,
.hero-carousel-wrap .carousel-item {
  height: 100%;
}

.hero-carousel-wrap .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay on carousel */
.hero-carousel-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to right, rgba(255,255,255,.15) 0%, transparent 40%);*/
  pointer-events: none;
}

.affiliation {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  width: fit-content;
}

.hero-content h1 {
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--text);
  font-weight: 800;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 8px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.carousel-inner {
  border-radius: 20px;
}


/* Stats band */
.stats-band {
  background: var(--secondary);
  padding: 28px 0;
}

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-item span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* Quick links (on navy bg) */
.quick-section {
  background: var(--secondary);
  padding: 52px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.quick-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .2s ease;
  color: #fff;
  text-align: center;
  align-items: center;
}

.quick-card:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .28);
  transform: translateY(-3px);
  color: #fff;
}

.quick-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.quick-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  margin: 0;
  line-height: 1.5;
}

.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent);
  color: #1a1200;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

/* Why section */
.why-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(232, 156, 26, .08);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background .2s ease, transform .2s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  margin: 0;
  line-height: 1.6;
}


/* Mgmt section */
.mgmt-section {
  background: linear-gradient(135deg, #ffc92926 0%, #ffc10761 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.mgmt-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgb(8 92 59 / 5%);
}

.mgmt-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgb(8 92 59 / 5%);
}


/* Section head */
section {
  padding: 64px 0;
}

.section-head {
  z-index: 1;
  /*max-width: 640px;*/
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 8px 0 12px;
  line-height: 1.2;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: 50px;
}

.tag-white {
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .15);
}

/* Decorative underline on h2 */
.section-head h2 span {
  position: relative;
}

.section-head h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* Toppers strip */
.toppers-section {
  background: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.toppers-strip {
  overflow: hidden;
  padding: 4px 0 12px;
}

.toppers-strip.is-scrolling {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.toppers-track {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 4px 0 8px;
}

.toppers-track.is-scrolling {
  justify-content: flex-start;
  width: max-content;
  animation: toppers-scroll 35s linear infinite;
}

.toppers-track.is-scrolling:hover {
  animation-play-state: paused;
}

@keyframes toppers-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Topper card — photo background */
.topper-card {
  min-width: 210px;
  max-width: 210px;
  height: 290px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background-color: var(--primary-dark);
  /*background-size: cover;*/
  background-position: center top;
  box-shadow: 6px 6px 5px rgba(0, 0, 0, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.topper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
}

.topper-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 77, 48, .95) 0%, rgb(6 77 48 /30%) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 14px;
  gap: 4px;
}

.topper-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #1a1200;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 5px;
  width: fit-content;
  box-shadow: inset 2px 2px 8px 0px black, 3px 3px 6px 0px #fff8e68c;
}

.topper-card-overlay h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.topper-card-overlay p {
  margin: 0;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .75);
}

/* Events scroll strip */
.events-strip {
  overflow: hidden;
  padding: 4px 0 12px;
}

.events-strip.is-scrolling {
  width: 100%;
  position: relative;
  left: 50%;
  margin-left: -50%;
  margin-right: -50%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.events-track {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 4px 0 8px;
  scroll-behavior: smooth;
}

.events-track.is-scrolling {
  justify-content: flex-start;
  width: max-content;
  animation: events-scroll 28s linear infinite;
}

.events-track.is-scrolling:hover {
  animation-play-state: paused;
}

@keyframes events-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.event-card {
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 107, 69, .12);
}

.event-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.event-card-img.no-img {
  height: 170px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.event-card-body {
  padding: 14px 16px 18px;
  flex: 1;
}

.event-card-date {
  font-size: 11px;
  color: var(--accent-dark);
  font-weight: 700;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.event-card-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
  line-height: 1.4;
}

.event-card-desc {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}


/* Scroll to Top */

#scrollTopBtn {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 20%;
  background: var(--primary, #2563eb);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
  transition: all .25s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
  background: #1e40af;
}

#scrollTopBtn.show {
  display: block;
  animation: fadeInUp .3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Gallery */
/* Masonry grid */

.gallery-filter-form {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
}

.gallery-caption {
  padding: 10px 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}

.gallery-caption strong {
  display: block;
}

.gallery-caption span {
  color: rgba(255,255,255,.75);
}

.masonry-grid {
  columns: 6;
  column-gap: 12px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: rgba(255, 255, 255, .06);

  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
  background: #111;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  transition: transform .35s ease, filter .35s ease;
}

.masonry-item.loaded {
  opacity: 1;
  transform: none;
}

.masonry-img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.masonry-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 107, 69, .0);
  border-radius: 12px;
  transition: background .25s ease;
  pointer-events: none;
}

.masonry-item:hover::after {
  background: rgba(10, 107, 69, .15);
}

.masonry-item::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 28px;
  z-index: 2;
  transition: transform .25s ease;
  pointer-events: none;
}

.masonry-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Responsive columns */
@media (max-width: 1100px) {
  .masonry-grid {
    columns: 4;
  }
}

@media (max-width: 768px) {
  .masonry-grid {
    columns: 3;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    columns: 2;
  }
}






/* Management message */
.msg-section {
  background: var(--accent-soft);
}

/* Payment */
.payment-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.payment-panel {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.payment-panel h2 {
  color: #fff;
}

.payment-panel p {
  color: rgba(255, 255, 255, .78);
}

.payment-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.payment-feature {
  background: rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-feature::before {
  content: '✓';
  font-weight: 700;
  color: var(--accent);
}

.payment-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}


/* Page hero bg (inner pages) */
.page-hero-bg {
  padding: 52px 0 40px;
  background: linear-gradient(315deg, #1b3f7a61 10%, var(--bs-info-text-emphasis) 80%, var(--primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232, 156, 26, .08);
  z-index: -1;
}




/* Page hero (inner pages) */
.page-hero {
  padding: 52px 0 40px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 60%, var(--primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232, 156, 26, .08);
}

.page-hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  color: #fff;
  margin: 0 0 12px;
  font-weight: 800;
}

.page-hero p {
  color: rgba(255, 255, 255, .82);
  margin: 0;
  font-size: 15px;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.page-visual {
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
}

.breadcrumb {
  font-size: 12px;
  opacity: .6;
  margin-bottom: 10px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

/* Info / contact cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vision-mission-card {
  font-family: 'Inter';
  background: #ffffff90;
  border-radius: var(--radius);
  padding: 26px;
  transition: color .18s, box-shadow .18s;
  backdrop-filter: blur(3px);
}







.info-card,
.contact-card {
  /*background: #fff;*/
  backdrop-filter: blur(3px);
  border: 3px solid var(--secondary);
  border-radius: var(--radius);
  padding: 26px;
  transition: color .18s, box-shadow .18s;
  
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}


.info-card h3,
.contact-card h3 {
  color: var(--primary);
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
}

.info-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-border-shine h3,
.card-border-shine p,
.card-border-shine h6,
.card-border-shine small,
.card-border-shine h5,
.card-border-shine p {
    color: var(--bs-light);
}

.card-border-shine {
  --bg-angle: 0deg;
  border: 1px solid #00000038;

  background:
    linear-gradient(129deg, #4a71aa 20%, #2c7055 90%) padding-box,
    linear-gradient(129deg, var(--bs-primary-text-emphasis) 20%, var(--primary) 90%) padding-box,
    
    conic-gradient(from var(--bg-angle),
      var(--bs-primary-text-emphasis) 0deg,
      var(--bs-primary-text-emphasis) 80deg,
      white 100deg,
      var(--bs-primary-text-emphasis) 120deg,
      var(--bs-primary-text-emphasis) 250deg,
      white 280deg,
      var(--bs-primary-text-emphasis) 310deg,
      var(--bs-primary-text-emphasis) 360deg) border-box;

  animation: borderSpin 4s linear infinite;
}







.table-card {
  /*background: linear-gradient(#6994db 10%, #507dc700 110%);*/
  border: 3px solid var(--secondary);
  border-radius: var(--radius);
  padding: 26px;
  transition: color .18s, box-shadow .18s;
  box-shadow: 4px 4px 9px 0px #00000075;
  backdrop-filter: blur(3px);
}

.table-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}


.table-card h3,
.contact-card h3 {
  color: var(--bs-light);
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
}

.table-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}


.table {
    font-family: 'Inter';
    font-size: 14px;
    --bs-table-bg: none;
}


/* Message / portrait */
.message-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.portrait-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote {
  font-size: 17px;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 16px 0;
  line-height: 1.7;
}

/*  Admission wrap */
.admission-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.admission-box {
  /*background: #fff;*/
  backdrop-filter: blur(4px);
  border: 3px solid var(--secondary);
  border-radius: var(--radius);
  padding: 30px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-no {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

/* Site form */
.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--text);
  transition: border-color .15s;
  min-height: 46px;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 107, 69, .1);
}

.site-form textarea {
  resize: vertical;
  min-height: 90px;
}

.notice {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid;
  font-size: 14px;
}

/* CTA band */
.cta-band {
  background: var(--surface-2);
}

.cta-panel {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: var(--radius);
  padding: 36px;
  color: #fff;
}

.cta-panel h2 {
  color: #fff;
}

/* Footer */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, .75);
  padding: 25px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding-bottom: 40px;
  align-items: end;
}

.footer-grid h4 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 16px;
  font-family: 'Poppins', sans-serif;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  margin-bottom: 8px;
  transition: color .15s;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-grid p {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin: 0;
}

.footer-accent-bar {
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent), var(--secondary));
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 0;
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, .35);
}

/* Results page */
.result-lookup {
  /*background: #fff;*/
  border-radius: var(--radius);
  padding: 32px;
  max-width: 560px;
  backdrop-filter: blur(3px);
  border: 3px solid var(--secondary);
}

.result-box {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 20px;
}

/* Lightbox */
.fps-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .9);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}

.fps-lightbox.open {
  display: flex;
  animation: lb-fade-in .2s ease;
}

@keyframes lb-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fps-lightbox-wrap {
  position: relative;
  display: inline-flex;
  cursor: default;
  max-width: 92vw;
  max-height: 88vh;
}

.fps-lightbox-wrap img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
  display: block;
  animation: lb-zoom-in .22s ease;
}

@keyframes lb-zoom-in {
  from {
    transform: scale(.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.fps-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .7);
  border: 2px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 10001;
}

.fps-lightbox-close:hover {
  background: rgba(220, 50, 50, .85);
}

.fps-lightbox-prev,
.fps-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  border: 2px solid rgba(255, 255, 255, .4);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 10001;
}

.fps-lightbox-prev {
  left: -19px;
}

.fps-lightbox-next {
  right: -19px;
}

.fps-lightbox-prev:hover,
.fps-lightbox-next:hover {
  background: rgba(0, 0, 0, .88);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
  .stats-band-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 40px 0 32px;
  }

  .hero-carousel-wrap {
    min-height: 260px;
    border-radius: 0;
  }

  .page-grid,
  .message-wrap,
  .admission-wrap,
  .payment-wrap {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-actions .btn-light {
    display: none;
  }
  
  .nav-wrap {
    padding: 8px 10px;    
  }

  .nav-wrap.active .nav-links {
    display: flex;
    position: absolute;
    top: 94px;
    left: 0;
    right: 0;
    background: var(--accent);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 4px;
    z-index: 100;
  }
  
  .nav-item {
      padding: 8px 0;
  }

  .nav-wrap.active .nav-actions {
    position: absolute;
    top: calc(82px + 210px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 0 20px 16px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
    z-index: 100;
    display: none;
  }

  .nav-wrap.active .nav-actions .btn-light {
    display: inline-flex;
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-drop-btn {
    width: 100%;
    padding: 8px 0;
    justify-content: space-between;
  }

  .drop-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 14px;
    border-left: 2px solid var(--line);
    margin: 4px 0 6px;
    min-width: unset;
    width: 100%;
  }

  .drop-menu::before {
    display: none;
  }

  .nav-dropdown.open .drop-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    background-color: var(--accent-soft);
    border-radius: var(--radius);
    padding: 8px 10px;
  }

  .drop-menu a {
    padding: 8px 4px;
    text-decoration: none !important;
  }

  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar-bar {
    display: none;
  }
}






/* Social Media & Video section — add to style.css */

.social-section {
  background: var(--bg);
  padding: 72px 0;
}

/* Two-column layout: video left, social cards right */
.social-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 40px;
}

.social-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Base card */
.social-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* YouTube video card */
.video-card {
  display: flex;
  flex-direction: column;
}

.video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #cc0000;
  background: #fff9f9;
  border-bottom: 1px solid var(--line);
}

.video-label i {
  font-size: 18px;
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  background: #000;
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.social-card-body {
  padding: 18px 20px 22px;
}

.social-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}

.social-card-body p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.6;
}

/* Social follow cards */
.social-follow-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.social-follow-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: #fff;
}

.facebook-card .social-follow-icon {
  background: #1877f2;
}

.instagram-card .social-follow-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.whatsapp-card .social-follow-icon {
  background: #25d366;
}

.social-follow-body {
  flex: 1;
  min-width: 0;
}

.social-follow-body h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 3px;
}

.social-follow-body p {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
  line-height: 1.5;
}

/* Social link buttons */
.social-link-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid;
  transition: all .18s ease;
  white-space: nowrap;
}

.youtube-btn {
  color: #cc0000;
  border-color: #cc0000;
}

.youtube-btn:hover {
  background: #cc0000;
  color: #fff;
}

.facebook-btn {
  color: #1877f2;
  border-color: #1877f2;
}

.facebook-btn:hover {
  background: #1877f2;
  color: #fff;
}

.instagram-btn {
  color: #e1306c;
  border-color: #e1306c;
}

.instagram-btn:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
  color: #fff;
  border-color: transparent;
}

.whatsapp-btn {
  color: #25d366;
  border-color: #25d366;
}

.whatsapp-btn:hover {
  background: #25d366;
  color: #fff;
}

/* Responsive */
@media (max-width: 860px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .social-follow-card {
    flex-direction: column;
    text-align: center;
  }

  .social-follow-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .hero-carousel-wrap {
    padding: 0;
  }
}





.header {
  position: relative;
  bottom: -25px;
}

.ocean {
  height: 80px;
  /* change the height of the waves here */
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
}

.wave1 {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%231a2332'/%3E%3C/svg%3E");
  position: absolute;
  width: 1000%;
  height: 100%;
  animation: wave1 60s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.6;
}

.wave1:nth-of-type(2) {
  bottom: 0;
  animation: wave1 60s linear reverse infinite;
  opacity: 0.5;
}

.wave1:nth-of-type(3) {
  animation: wave1 100s -5s linear infinite;
  opacity: 1;
}

@keyframes wave1 {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.wave {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%231B3F7A'/%3E%3C/svg%3E");
  position: absolute;
  width: 1000%;
  height: 100%;
  animation: wave 60s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.6;
}

.wave:nth-of-type(2) {
  bottom: 0;
  animation: wave 60s linear reverse infinite;
  opacity: 0.5;
}

.wave:nth-of-type(3) {
  animation: wave 100s -5s linear infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}






/* Reusable Gradient Glow Wrapper */

.parent-container {
  min-height: 90%;
  width: 100%;
  padding: 20px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* optional horizontal center */
}


.glow-wrap {
  position: relative;
  isolation: isolate;
  display: block;
  border-radius: 20px;
  max-height: fit-content;
  width: calc(100% - 5px);
}

/* animated border */
.glow-wrap::before,
.glow-wrap::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: linear-gradient(45deg,
      #fb0094,
      #0000ff,
      #00ff00,
      #ffff00,
      #ff0000,
      #fb0094,
      #0000ff,
      #00ff00,
      #ffff00,
      #ff0000);
  background-size: 400%;
  animation: glowAnim 180s linear infinite;
  z-index: -1;
}

/* glow layer */
.glow-wrap::after {
  filter: blur(60px);
  opacity: 0.9;
}

/* IMPORTANT: content layer */
.glow-wrap>.glow-inner {
  position: relative;
  z-index: 1;
  border-radius: inherit;
  overflow: hidden;
  background: #000;
  /* optional */
}

/* animation */
@keyframes glowAnim {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}


@property --bg-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes borderSpin {
  to {
    --bg-angle: 360deg;
  }
}

.border-shine {
  --bg-angle: 0deg;

  border: 3px solid transparent;
  border-radius: var(--radius);

  background:
    linear-gradient(to bottom,
      var(--secondary), #FFF) padding-box,
    conic-gradient(from var(--bg-angle),
      var(--secondary) 0deg,
      var(--secondary) 80deg,
      var(--bs-white) 100deg,
      var(--secondary) 120deg,
      var(--secondary) 250deg,
      var(--bs-white) 280deg,
      var(--secondary) 310deg,
      var(--secondary) 360deg) border-box;

  animation: borderSpin 8s linear infinite;
}

.shine-topper {
  --bg-angle: 0deg;

  border: 3px solid transparent;
  border-radius: 2rem;

  background:
    linear-gradient(to bottom,
      var(--primary), #FFF) padding-box,
    conic-gradient(from var(--bg-angle),
      var(--primary-dark) 0deg,
      var(--primary-dark) 80deg,
      var(--bs-white) 100deg,
      var(--primary-dark) 120deg,
      var(--primary-dark) 250deg,
      var(--bs-white) 280deg,
      var(--primary-dark) 310deg,
      var(--primary-dark) 360deg) border-box;

  animation: borderSpin 4s linear infinite;
}
















img {
  max-width: 100%;
}

.card {
  position: relative;
  background: #333;
  width: 400px;
  height: 75vh;
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #aaa;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.2), 0 0 1rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.card__image-container {
  margin: -2rem -2rem 1rem -2rem;
}
.card__line {
  opacity: 0;
  animation: LineFadeIn 0.8s 0.8s forwards ease-in;
}
.card__image {
  opacity: 0;
  animation: ImageFadeIn 0.8s 1.4s forwards;
}
.card__title {
  color: white;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.card__content {
  margin-top: -1rem;
  opacity: 0;
  animation: ContentFadeIn 0.8s 1.6s forwards;
}
.card__svg {
  position: absolute;
  left: 0;
  top: 115px;
}

@keyframes LineFadeIn {
  0% {
    opacity: 0;
    d: path("M 0 300 Q 0 300 0 300 Q 0 300 0 300 C 0 300 0 300 0 300 Q 0 300 0 300 ");
    stroke: #fff;
  }
  50% {
    opacity: 1;
    d: path("M 0 300 Q 50 300 100 300 Q 250 300 350 300 C 350 300 500 300 650 300 Q 750 300 800 300");
    stroke: #888BFF;
  }
  100% {
    opacity: 1;
    d: path("M -2 100 Q 50 200 100 250 Q 250 400 350 300 C 400 250 550 150 650 300 Q 750 450 802 400");
    stroke: #545581;
  }
}
@keyframes ContentFadeIn {
  0% {
    transform: translateY(-1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes ImageFadeIn {
  0% {
    transform: translate(-0.5rem, -0.5rem) scale(1.05);
    opacity: 0;
    filter: blur(2px);
  }
  50% {
    opacity: 1;
    filter: blur(2px);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}










#particle-canvas {
  width: 100%;
  height: 100vh;
  /*background: linear-gradient(to bottom, rgb(10, 10, 50) 0%,rgb(60, 10, 60) 100%);*/
  vertical-align: middle;
  position: absolute;
  filter: opacity(0.5);
}


.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: start;
  justify-content: start;
}

.hover-card {
  width: 100%;
  max-width: 250px;
  min-height: 250px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background-color: #fffffe;
  border-radius: 18px;
  position: relative;
  /*overflow: hidden;*/
  cursor: pointer;
  margin-inline: auto;
}

.hover-card::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom: 3px solid #fefefe;
  background: linear-gradient(40deg, rgba(131,58,180,1) 5%, rgba(253,29,29,1) 40%, rgba(252,176,69,1) 90%);
  transition: all 0.25s ease;
}

.hover-card * {
    z-index: 1;
}

.hover-card-image {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    margin-top: 0px;
    transition: all 1s ease;
    overflow: hidden;
}

.hover-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.hover-card-name {
    font-size: 20px;
    color: #161A42;
    margin-top: 25px;
    line-height: 1;
}

.hover-card-info span {
    font-size: 14px;
    color: #161A42;
    line-height: 0.5;
}

.hover-card:hover::before {
    width: 250px;
    height: 250px;
    border-bottom: none;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transform: scale(0.95);
    box-shadow: inset 2px 2px 10px 2px #0000009c;
}

.hover-card:hover .hover-card-info {
    transform: translate(0%, 0%);
}

.hover-card:hover .hover-card-image {
    transform: scale(1.75) translate(-0%, -10%);
    border-color: white;
}