
:root {
  --bg: #ffffff;
  --text: #0B1220;
  --muted: #667085;

  --navy: #071A33;
  --blue: #2563EB;
  --teal: #14B8A6;

  --soft: #F6F9FF;
  --card: #ffffff;

  --border: rgba(7, 26, 51, 0.10);

  --shadow-sm: 0 10px 26px rgba(10, 24, 45, 0.08);
  --shadow-md: 0 18px 55px rgba(10, 24, 45, 0.14);

  --r-xl: 18px;
  --r-2xl: 22px;

  --container-max: 1180px;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ------------------------------
   BASE
------------------------------ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; transition: 0.25s ease; }

.container { max-width: var(--container-max) !important; }

/* Accessible Focus */
.btn:focus,
.nav-link:focus,
.form-control:focus,
.form-select:focus,
.navbar-toggler:focus {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18) !important;
}

/* ------------------------------
   PRELOADER
------------------------------ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(20, 184, 166, 0.16), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(37, 99, 235, 0.18), transparent 60%),
    #ffffff;
  display: grid;
  place-items: center;
}

.preloader-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--r-2xl);
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.preloader-mark {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.25);
  position: relative;
}

.preloader-mark::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.65);
  border-top-color: rgba(255, 255, 255, 0);
  animation: spin 0.85s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.preloader-title {
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}

.preloader-subtitle {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* =========================================================
   TOPBAR + NAVBAR 
   ========================================================= */

/* ------------------------------
   TOPBAR
------------------------------ */
.topbar {
  background: #234935;
  color: rgba(255, 255, 255, 0.90);
  padding: 10px 0;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.topbar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.topbar-item i {
  color: rgba(20, 184, 166, 1);
  font-size: 14px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  transition: 0.25s ease;
}

.social-btn:hover {
  background: rgba(20, 184, 166, 0.18);
  transform: translateY(-2px);
  color: #fff;
}

/* ------------------------------
   NAVBAR WRAPPER
------------------------------ */
.site-header { position: relative; z-index: 999; }

.navbar-premium {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 26, 51, 0.08);
  padding: 16px 0;
  transition: all 0.28s ease;
}

/* Sticky Mode */
.navbar-premium.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 18px 42px rgba(10, 24, 45, 0.10);
  padding: 12px 0;
  animation: navDown 0.18s ease-out;
}

@keyframes navDown {
  from { transform: translateY(-8px); opacity: 0.7; }
  to { transform: translateY(0); opacity: 1; }
}

/* ------------------------------
   BRAND (LOGO + TEXT)
------------------------------ */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563EB, #14B8A6);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.22);
  flex: 0 0 auto;
}

.brand-icon span {
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 900;
  color: #071A33;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.brand-sub {
  font-size: 12px;
  color: rgba(11, 18, 32, 0.62);
  font-weight: 700;
}

/* ------------------------------
   NAV LINKS
------------------------------ */
.navbar .navbar-nav { gap: 2px; }

.navbar .nav-link {
  color: rgba(11, 18, 32, 0.78);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 14px;
  transition: all 0.25s ease;
  position: relative;
}

.navbar .nav-link:hover {
  color: #071A33;
  background: rgba(20, 184, 166, 0.10);
  transform: translateY(-1px);
}

.navbar .nav-link.active {
  color: #071A33;
  background: rgba(37, 99, 235, 0.12);
}

/* Dropdown Toggle Icon Smooth */
.navbar .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

.navbar .dropdown.show .dropdown-toggle::after { transform: rotate(180deg); }

/* ------------------------------
   DROPDOWN MENU 
------------------------------ */
.dropdown-menu-premium {
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(7, 26, 51, 0.10);
  box-shadow: 0 24px 60px rgba(10, 24, 45, 0.14);
  padding: 10px;
  min-width: 240px;
}

.dropdown-item {
  border-radius: 14px;
  font-weight: 700;
  padding: 10px 12px;
  color: rgba(11, 18, 32, 0.85);
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(20, 184, 166, 0.12);
  transform: translateX(2px);
}

/* ------------------------------
   NAVBAR TOGGLER (Cleaner)
------------------------------ */
.navbar-toggler {
  border: 1px solid rgba(7, 26, 51, 0.14);
  border-radius: 14px;
  padding: 8px 10px;
  box-shadow: none !important;
}

/* ------------------------------
   MOBILE NAVBAR (Smooth)
------------------------------ */
@media (max-width: 991px) {
  .navbar-premium { padding: 12px 0; }

  .navbar .navbar-collapse {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(7, 26, 51, 0.10);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 18px 44px rgba(10, 24, 45, 0.10);
  }

  .navbar .nav-link {
    padding: 12px 12px;
    border-radius: 14px;
  }

  .dropdown-menu-premium {
    margin-top: 8px;
    box-shadow: none;
    border-radius: 16px;
  }
}

/* ------------------------------
    BUTTONS
------------------------------ */
.btn-primary-premium {
  border: none;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #2563EB, #14B8A6);
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.22);
  transition: 0.25s ease;
}

.btn-primary-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(20, 184, 166, 0.28);
  color: #fff;
}

.btn-outline-premium {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  color: var(--navy);
  transition: 0.25s ease;
}

.btn-outline-premium:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
}

.btn-soft-premium {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  color: #fff;
  transition: 0.25s ease;
}

.btn-soft-premium:hover {
  background: rgba(20, 184, 166, 0.22);
  transform: translateY(-2px);
  color: #fff;
}

/* =========================================================
   HERO 
========================================================= */
.hero-slide {
  height: 640px; 
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width: 991px) {
  .hero-slide {
    height: 560px;
    min-height: 560px;
    padding: 10px 0;
  }
}

@media (max-width: 575px) {
  .hero-slide {
    height: 520px;
    min-height: 520px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(7, 26, 51, 0.80) 0%,
      rgba(7, 26, 51, 0.54) 55%,
      rgba(7, 26, 51, 0.26) 100%),
    radial-gradient(900px 520px at 15% 10%, rgba(20, 184, 166, 0.24), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(37, 99, 235, 0.22), transparent 60%);
}

.hero-inner { position: relative; z-index: 2; padding: 54px 0; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.6px;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.90);
  max-width: 740px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  flex-wrap: wrap;
}

.meta-item { display: inline-flex; align-items: center; gap: 8px; }

.meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

/* Hero side cards */
.hero-side-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-2xl);
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.hero-side-top { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }

.hero-side-icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(20, 184, 166, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-side-title { color: #fff; font-weight: 900; line-height: 1.1; }

.hero-side-sub { color: rgba(255, 255, 255, 0.80); font-weight: 600; font-size: 13px; }

.hero-side-body { color: rgba(255, 255, 255, 0.88); font-weight: 600; font-size: 14px; }

.hero-side-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.hero-side-link:hover { color: rgba(20, 184, 166, 1); }

/* Swiper controls */
.hero .swiper-button-prev,
.hero .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 14px;
  font-weight: 900;
}

.hero .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

.hero .swiper-pagination-bullet-active { background: rgba(20, 184, 166, 1); }

/* =========================================================
   SECTIONS + TYPOGRAPHY
========================================================= */
.section { padding: 72px 0; }

@media (max-width: 991px) { .section { padding: 56px 0; } }

.section-bg {
  background:
    radial-gradient(1100px 520px at 15% 0%, rgba(20, 184, 166, 0.10), transparent 58%),
    radial-gradient(1100px 520px at 90% 10%, rgba(37, 99, 235, 0.10), transparent 58%),
    var(--soft);
}

.sec-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: rgba(37, 99, 235, 1);
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 12px;
  text-transform: uppercase;
}

.sec-title {
  font-weight: 900;
  color: var(--navy);
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.sec-title::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.sec-desc {
  color: var(--muted);
  font-weight: 600;
  margin-top: 12px;
  max-width: 860px;
  font-size: 16px;
}

/* =========================================================
   COMMON CARDS
========================================================= */
.card-soft {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.img-frame {
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
}

.img-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

@media (max-width: 991px) { .img-frame img { height: 320px; } }

.img-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 26, 51, 0.12);
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

/* Info Cards */
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: 0.25s ease;
}

.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.10);
  color: var(--blue);
  margin-bottom: 12px;
}

.info-title { font-weight: 900; color: var(--navy); font-size: 16px; margin-bottom: 8px; }

.info-text { color: rgba(11, 18, 32, 0.76); font-weight: 600; }

/* =========================================================
   COURSES
========================================================= */
.course {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: 0.25s ease;
  height: 100%;
}

.course:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.course-img { position: relative; }

.course-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.badge-top {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  color: var(--navy);
  font-size: 12px;
}

.course-body { padding: 16px; }

.course-title {
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 18px;
}

.course-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.course-meta i { color: var(--teal); margin-right: 6px; }

.course-text { color: rgba(11, 18, 32, 0.76); font-weight: 600; margin-bottom: 12px; }

.course-actions { display: flex; justify-content: space-between; gap: 10px; }

/* =========================================================
   FEATURES (WHY CHOOSE)
========================================================= */
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  height: 100%;
  transition: 0.25s ease;
}

.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feature-ic {
  width: 52px;
  height: 52px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal);
  margin-bottom: 12px;
}

.feature-title { font-weight: 900; color: var(--navy); font-size: 16px; margin-bottom: 6px; }

.feature-text { color: rgba(11, 18, 32, 0.76); font-weighten-weight: 600; margin-bottom: 0; }


.feature-text { font-weight: 600; }

/* =========================================================
   FACILITIES
========================================================= */
.facility {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  height: 100%;
  transition: 0.25s ease;
}

.facility:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.facility-img img {
  width: 100%;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
}

.facility-title { font-weight: 900; color: var(--navy); margin-bottom: 10px; font-size: 18px; }

.facility-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(11, 18, 32, 0.76);
  font-weight: 600;
}

.facility-list li { margin-bottom: 6px; }

@media (max-width: 991px) {
  .facility { grid-template-columns: 1fr; }
  .facility-img img { height: 220px; }
}

/* =========================================================
   NOTICES
========================================================= */
.notice {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  transition: 0.25s ease;
  height: 100%;
}

.notice:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.notice-top { display: flex; gap: 12px; }

.notice-date {
  width: 64px;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(7, 26, 51, 0.08);
  display: grid;
  place-items: center;
  padding: 10px 6px;
  flex: 0 0 auto;
}

.notice-date .d { font-weight: 900; color: var(--navy); }

.notice-date .m { font-weight: 900; font-size: 12px; color: var(--blue); }

.notice-title { font-weight: 900; color: var(--navy); font-size: 16px; margin-bottom: 6px; }

.notice-text { color: rgba(11, 18, 32, 0.76); font-weight: 600; }

/* Mini link */
.mini-link {
  font-weight: 900;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mini-link:hover { color: var(--teal); }

/* =========================================================
   GALLERY + LIGHTBOX
========================================================= */
.gal {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.gal img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.3s ease;
}

.gal:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox.show { display: block; }

.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.lightbox-box {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 64px auto;
  padding: 10px;
}

.lightbox-box img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.lightbox-close {
  position: absolute;
  right: 10px;
  top: -6px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
}

/* =========================================================
   CTA
========================================================= */
.cta {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(20, 184, 166, 0.10)), #fff;
}

.cta-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 1), rgba(20, 184, 166, 1));
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 26px;
  box-shadow: 0 22px 60px rgba(10, 24, 45, 0.18);
}

.cta-tag {
  font-weight: 900;
  letter-spacing: 0.7px;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.95;
}

.cta-title {
  font-weight: 900;
  margin: 8px 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
}

.cta-text { opacity: 0.92; font-weight: 600; }

/* =========================================================
   FORMS
========================================================= */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.form-title { font-weight: 900; color: var(--navy); font-size: 18px; margin-bottom: 10px; }

.control {
  border-radius: 16px !important;
  border: 1px solid rgba(7, 26, 51, 0.14) !important;
  padding: 12px 14px !important;
  font-weight: 600;
}

/* =========================================================
   CONTACT CARD
========================================================= */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  height: 100%;
}

.contact-title { font-weight: 900; color: var(--navy); font-size: 18px; margin-bottom: 14px; }

.contact-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(7, 26, 51, 0.08);
  margin-bottom: 10px;
}

.contact-ic {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(20, 184, 166, 0.14);
  color: var(--teal);
  flex: 0 0 auto;
}

.label { font-weight: 900; color: var(--navy); font-size: 13px; }

.value { color: rgba(11, 18, 32, 0.78); font-weight: 600; }

.map-box {
  border-radius: 18px;
  border: 1px dashed rgba(7, 26, 51, 0.22);
  overflow: hidden;
  margin-top: 10px;
}

.map-head {
  padding: 10px 12px;
  background: rgba(7, 26, 51, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
}

.map-body { padding: 18px 12px; color: var(--muted); font-weight: 600; }

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: #234935;
  color: rgba(255, 255, 255, 0.86);
  padding: 56px 0 18px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }

.footer-title { color: #fff; font-weight: 900; }

.footer-sub { color: rgba(255, 255, 255, 0.70); font-weight: 600; font-size: 13px; }

.footer-text { color: rgba(255, 255, 255, 0.74); font-weight: 600; }

.footer-social { display: flex; gap: 10px; margin-top: 14px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
}

.footer-social a:hover { transform: translateY(-2px); background: rgba(20, 184, 166, 0.18); }

.footer-h { color: #fff; font-weight: 900; margin-bottom: 12px; }

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a { color: rgba(255, 255, 255, 0.74); font-weight: 700; }

.footer-links a:hover { color: rgba(20, 184, 166, 1); }

.footer-add .a { display: flex; gap: 10px; margin-bottom: 10px; color: rgba(255, 255, 255, 0.76); font-weight: 600; }

.footer-add i { color: rgba(20, 184, 166, 1); }

.footer-bottom {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 700;
}

/* =========================================================
   SCROLL TO TOP + WHATSAPP
========================================================= */
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(7, 26, 51, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  color: var(--navy);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 999;
}

.scroll-top.show { opacity: 1; pointer-events: auto; }

.scroll-top:hover { transform: translateY(-2px); }

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 74px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #14b86a);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
  z-index: 999;
}

.whatsapp:hover { transform: translateY(-2px); color: #fff; }


   .page-head {
      padding: 46px 0 10px;
    }

    .faq-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      box-shadow: var(--shadow-sm);
      padding: 18px;
      height: 100%;
      transition: .25s ease;
    }

    .faq-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .faq-title {
      font-weight: 900;
      color: var(--navy);
      font-size: 16px;
      margin-bottom: 8px;
    }

    .faq-text {
      color: rgba(11, 18, 32, 0.76);
      font-weight: 600;
      margin: 0;
    }


     .page-head {
      padding: 46px 0 10px;
    }

    /* Filter pills */
    .filter-wrap {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .filter-btn {
      border: 1px solid rgba(7, 26, 51, 0.12);
      background: rgba(255, 255, 255, 0.92);
      border-radius: 999px;
      padding: 10px 14px;
      font-weight: 900;
      color: rgba(11, 18, 32, 0.78);
      transition: .25s ease;
      box-shadow: 0 10px 22px rgba(10, 24, 45, 0.06);
    }

    .filter-btn:hover {
      transform: translateY(-2px);
      background: rgba(20, 184, 166, 0.10);
      color: var(--navy);
    }

    .filter-btn.active {
      background: linear-gradient(135deg, var(--blue), var(--teal));
      color: #fff;
      border-color: transparent;
      box-shadow: 0 18px 38px rgba(37, 99, 235, 0.18);
    }

    /* Gallery Card overlay */
    .gal {
      position: relative;
    }

    .gal::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(7, 26, 51, 0.65));
      opacity: 0;
      transition: .25s ease;
    }

    .gal:hover::after {
      opacity: 1;
    }

    .gal-cap {
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 10px;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: #fff;
      opacity: 0;
      transform: translateY(6px);
      transition: .25s ease;
    }

    .gal:hover .gal-cap {
      opacity: 1;
      transform: translateY(0);
    }

    .gal-cap .t {
      font-weight: 900;
      font-size: 14px;
      margin: 0;
    }

    .gal-cap .b {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 12px;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .section-mini {
      padding-top: 20px !important;
    }

    .page-head {
      padding: 46px 0 10px;
    }

    .facility-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      height: 100%;
      transition: .25s ease;
    }

    .facility-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .facility-img {
      position: relative;
      height: 170px;
      overflow: hidden;
    }

    .facility-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      transition: .35s ease;
    }

    .facility-card:hover .facility-img img {
      transform: scale(1.08);
    }

    .facility-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 7px 10px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 12px;
      color: #fff;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
    }

    .facility-body {
      padding: 16px;
    }

    .facility-title {
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 6px;
      font-size: 16px;
    }

    .facility-text {
      color: rgba(11, 18, 32, 0.76);
      font-weight: 600;
      margin: 0;
    }

    .facility-actions {
      padding: 14px 16px;
      border-top: 1px solid rgba(7, 26, 51, 0.08);
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }

    .chip-mini {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 10px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 12px;
      color: rgba(11, 18, 32, 0.82);
      border: 1px solid rgba(7, 26, 51, 0.10);
      background: rgba(20, 184, 166, 0.10);
    }

    .rule-list {
      margin: 0;
      padding-left: 18px;
      color: rgba(11, 18, 32, 0.78);
      font-weight: 600;
    }

    .rule-list li {
      margin-bottom: 10px;
    }

    .note-box {
      background: rgba(37, 99, 235, 0.06);
      border: 1px solid rgba(7, 26, 51, 0.08);
      border-radius: 18px;
      padding: 14px;
      font-weight: 700;
      color: rgba(11, 18, 32, 0.76);
    }

     .page-head {
      padding: 46px 0 10px;
    }

    .eligibility-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      box-shadow: var(--shadow-sm);
      padding: 18px;
      height: 100%;
      transition: .25s ease;
    }

    .eligibility-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .eligibility-title {
      font-weight: 900;
      color: var(--navy);
      font-size: 18px;
      margin-bottom: 10px;
    }

    .eligibility-list {
      margin: 0;
      padding-left: 18px;
      color: rgba(11, 18, 32, 0.78);
      font-weight: 600;
    }

    .eligibility-list li {
      margin-bottom: 10px;
    }

    .note-box {
      background: rgba(37, 99, 235, 0.06);
      border: 1px solid rgba(7, 26, 51, 0.08);
      border-radius: 18px;
      padding: 14px;
      font-weight: 700;
      color: rgba(11, 18, 32, 0.76);
    }

       .page-head {
      padding: 46px 0 10px;
    }

    /* Steps */
    .step-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      box-shadow: var(--shadow-sm);
      padding: 18px;
      height: 100%;
      transition: .25s ease;
    }

    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .step-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }

    .step-no {
      width: 44px;
      height: 44px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-weight: 900;
      color: var(--navy);
      background: rgba(37, 99, 235, 0.10);
      border: 1px solid rgba(7, 26, 51, 0.10);
    }

    .step-title {
      font-weight: 900;
      color: var(--navy);
      margin: 0;
      font-size: 16px;
    }

    .step-text {
      color: rgba(11, 18, 32, 0.76);
      font-weight: 600;
      margin: 0;
    }

    /* Eligibility list UI */
    .eligibility-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      box-shadow: var(--shadow-sm);
      padding: 18px;
      height: 100%;
      transition: .25s ease;
    }

    .eligibility-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .eligibility-title {
      font-weight: 900;
      color: var(--navy);
      font-size: 18px;
      margin-bottom: 12px;
    }

    .eligibility-list {
      margin: 0;
      padding-left: 18px;
      color: rgba(11, 18, 32, 0.78);
      font-weight: 600;
    }

    .eligibility-list li {
      margin-bottom: 10px;
    }

    /* Documents Table */
    .doc-wrap {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .doc-head {
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      background:
        radial-gradient(720px 280px at 10% 10%, rgba(20, 184, 166, 0.10), transparent 60%),
        radial-gradient(720px 280px at 90% 10%, rgba(37, 99, 235, 0.10), transparent 60%),
        #fff;
      border-bottom: 1px solid rgba(7, 26, 51, 0.08);
    }

    .doc-title {
      font-weight: 900;
      color: var(--navy);
      margin: 0;
      font-size: 16px;
    }

    .table-premium {
      margin: 0;
    }

    .table-premium th {
      font-weight: 900;
      color: var(--navy);
      background: rgba(7, 26, 51, 0.03);
      border-bottom: 1px solid rgba(7, 26, 51, 0.08) !important;
      padding: 12px 14px !important;
    }

    .table-premium td {
      padding: 12px 14px !important;
      font-weight: 600;
      color: rgba(11, 18, 32, 0.78);
      border-top: 1px solid rgba(7, 26, 51, 0.06) !important;
    }

    .badge-star {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 12px;
      background: rgba(20, 184, 166, 0.12);
      border: 1px solid rgba(7, 26, 51, 0.10);
      color: var(--navy);
      white-space: nowrap;
    }

    /* Nav Pills */
    .nav-pills .nav-link {
      border-radius: 16px !important;
      font-weight: 900;
      padding: 10px 14px;
    }

    .nav-pills .nav-link.active {
      background: linear-gradient(135deg, var(--blue), var(--teal));
    }

    /* Annexures */
    .annex-list {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .annex-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 14px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: .25s ease;
    }

    .annex-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .annex-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .annex-ic {
      width: 44px;
      height: 44px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(37, 99, 235, 0.10);
      color: var(--blue);
      border: 1px solid rgba(7, 26, 51, 0.10);
    }

    .annex-name {
      font-weight: 900;
      color: var(--navy);
      margin: 0;
    }

    .annex-sub {
      color: var(--muted);
      font-weight: 700;
      font-size: 13px;
      margin: 0;
    }

    .inner-hero {
      position: relative;
      padding: 80px 0;
      background-image: url("https://v2.lhpctvita.org/assets/img/new/trust.jpg");
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .inner-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg,
          rgba(7, 26, 51, 0.86) 0%,
          rgba(7, 26, 51, 0.58) 55%,
          rgba(7, 26, 51, 0.30) 100%),
        radial-gradient(900px 520px at 15% 10%, rgba(20, 184, 166, 0.24), transparent 60%),
        radial-gradient(900px 520px at 90% 10%, rgba(37, 99, 235, 0.22), transparent 60%);
    }

    .inner-hero .inner-hero-content {
      position: relative;
      z-index: 2;
    }

    .inner-title {
      color: #fff;
      font-weight: 900;
      letter-spacing: -0.6px;
      font-size: clamp(28px, 3.8vw, 44px);
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .inner-sub {
      color: rgba(255, 255, 255, 0.92);
      font-weight: 600;
      max-width: 820px;
      margin-bottom: 18px;
    }

    .breadcrumb-premium {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: rgba(255, 255, 255, 0.92);
      font-weight: 700;
      flex-wrap: wrap;
    }

    .breadcrumb-premium a {
      color: rgba(255, 255, 255, 0.92);
      font-weight: 800;
    }

    .breadcrumb-premium a:hover {
      color: rgba(20, 184, 166, 1);
    }

    .breadcrumb-sep {
      opacity: .7;
    }

    /* Simple list styling for objectives */
    .premium-list {
      margin: 0;
      padding-left: 18px;
      color: rgba(11, 18, 32, 0.78);
      font-weight: 600;
    }

    .premium-list li {
      margin-bottom: 10px;
    }

    /* Core values grid cards */
    .value-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      box-shadow: var(--shadow-sm);
      padding: 18px;
      height: 100%;
      transition: .25s ease;
    }

    .value-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .value-ic {
      width: 52px;
      height: 52px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      background: rgba(37, 99, 235, 0.10);
      color: var(--blue);
      margin-bottom: 12px;
    }

    .value-title {
      font-weight: 900;
      color: var(--navy);
      font-size: 16px;
      margin-bottom: 6px;
    }

    .value-text {
      color: rgba(11, 18, 32, 0.76);
      font-weight: 600;
      margin: 0;
    }


    .page-head {
      padding: 46px 0 10px;
    }

    .staff-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      height: 100%;
      transition: .25s ease;
    }

    .staff-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .staff-top {
      padding: 16px;
      display: flex;
      gap: 14px;
      align-items: center;
      border-bottom: 1px solid rgba(7, 26, 51, 0.08);
      background:
        radial-gradient(520px 220px at 10% 10%, rgba(20, 184, 166, 0.10), transparent 60%),
        radial-gradient(520px 220px at 90% 10%, rgba(37, 99, 235, 0.10), transparent 60%),
        #fff;
    }

    .staff-avatar{
  width: 90px;          
  height: 90px;
  border-radius: 16px;  
  overflow: hidden;
  flex: 0 0 90px;
  border: 2px solid rgba(7, 26, 51, 0.10);
  box-shadow: 0 12px 26px rgba(10, 24, 45, 0.10);
  background: #fff;
}

.staff-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;    
  display: block;
}

    .staff-name {
      font-weight: 900;
      color: var(--navy);
      margin: 0;
      font-size: 16px;
      line-height: 1.2;
    }

    .staff-role {
      color: var(--muted);
      font-weight: 700;
      font-size: 13px;
      margin-top: 3px;
    }

    .staff-body {
      padding: 16px;
    }

    .staff-meta {
      display: grid;
      gap: 8px;
      color: rgba(11, 18, 32, 0.78);
      font-weight: 600;
      font-size: 14px;
    }

    .staff-meta .m {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .staff-meta i {
      color: var(--teal);
      margin-top: 2px;
    }

    .staff-footer {
      padding: 14px 16px;
      border-top: 1px solid rgba(7, 26, 51, 0.08);
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid rgba(7, 26, 51, 0.10);
      background: rgba(37, 99, 235, 0.06);
      color: var(--navy);
      font-weight: 800;
      font-size: 12px;
    }

    .muted-note {
      color: var(--muted);
      font-weight: 600;
      font-size: 13px;
    }


    .logo-wrap {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}


/* ===== STAFF CARD V2 ===== */

.staff-card-v2{
  background:#fff;
  border-radius:24px;
  padding:28px 22px 26px;
  height:100%;
  text-align:center;
  border:1px solid rgba(7,26,51,0.08);
  box-shadow:0 14px 36px rgba(10,24,45,0.08);
  transition:.35s ease;
}

.staff-card-v2:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 54px rgba(10,24,45,0.14);
}

/* BIG SQUARE IMAGE */
.staff-avatar-lg{
  width:150px;
  height:150px;
  margin:0 auto 18px;
  border-radius:22px;
  overflow:hidden;
  background:#f6f8fb;
  box-shadow:0 18px 36px rgba(0,0,0,0.12);
}

.staff-avatar-lg img{
  width:100%;
  height:100%;
  min-width:100%;
  min-height:100%;
  object-fit:cover;
  object-position: top center;
  display:block;
}

/* NAME + ROLE */
.staff-info{
  margin-bottom:16px;
}

.staff-name{
  font-size:18px;
  font-weight:800;
  color:#0b1220;
  margin-bottom:4px;
}

.staff-role{
  font-size:14px;
  font-weight:700;
  color:var(--blue);
}

/* META DETAILS */
.staff-meta{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:10px;
}

.staff-meta .m{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  font-weight:600;
  color:rgba(11,18,32,0.78);
}

.staff-meta i{
  color:var(--teal);
  font-size:16px;
}
