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

:root {
  --blue: #1a56db;
  --blue-mid: #073785;
  --blue-dark: #1239a0;
  --blue-glow: rgba(37, 99, 235, 0.18);
  --blue-soft: #dbeafe;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-glow: rgba(245, 158, 11, 0.2);
  --cream: #faf9f6;
  --white: #ffffff;
  --ink: #0c1a2e;
  --ink-mid: #1e2f47;
  --ink-soft: #374861;
  --gray-muted: #64748b;
  --gray-line: #e4e9f0;
  --gray-bg: #f4f7fc;
  --font-display: 'Sora', sans-serif;
  /* --font-ui: 'Inter', sans-serif; */
  --font-ui: 'Sora', sans-serif;
  --font-cond: 'Sora', sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --sh-sm: 0 2px 10px rgba(12, 26, 46, 0.07);
  --sh-md: 0 6px 24px rgba(12, 26, 46, 0.10);
  --sh-lg: 0 16px 48px rgba(12, 26, 46, 0.15);
  --sh-blue: 0 8px 30px rgba(37, 99, 235, 0.22);
  --sh-amber: 0 6px 24px rgba(245, 158, 11, 0.28);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-ui);
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: #f0f4fa
}

::-webkit-scrollbar-thumb {
  background: var(--blue-mid);
  border-radius: 3px
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem
}

section {
  padding: 5rem 0;
  position: relative
}

/* SCROLL REVEAL */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
}

.sr.sr-left {
  transform: translateX(-28px)
}

.sr.sr-right {
  transform: translateX(28px)
}

.sr.sr-scale {
  transform: scale(.95)
}

.sr.in {
  opacity: 1;
  transform: none
}

.sr-delay-1 {
  transition-delay: .1s
}

.sr-delay-2 {
  transition-delay: .2s
}

.sr-delay-3 {
  transition-delay: .3s
}

/* SECTION LABEL */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .75rem;
}

.sec-label::before {
  content: '';
  width: 24px;
  height: 2.5px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.4px;
  padding-bottom: 10px;
}

.sec-title span {
  color: #fff;
}

.sec-title em {
  font-style: italic;
  color: var(--amber-dark)
}

/* marquee */
.top-marquee {
  display: flex;
  align-items: center;
  background: #1e3a8a;
  color: #fff;
  overflow: hidden;
  height: 40px;
  font-size: 14px;
}

/* label */
.marquee-label {
  background: #2563eb;
  padding: 4px 20px;
  font-weight: 600;
  position: relative;
  margin-right: 26px;
}

.marquee-label::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 15px solid #2563eb;
}

/* container */
.marquee-content {
  flex: 1;
  overflow: hidden;
}

/* 🔥 TRACK FIX */
.marquee-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  /* width: max-content; */

  animation: marqueeMove 25s linear infinite;
}

/* text */
.marquee-track span {
  flex-shrink: 0;
}

/* 🔥 SMOOTH LOOP */
@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ✅ HOVER STOP FIX */
.marquee-content:hover .marquee-track {
  animation-play-state: paused;
}

/* ════ HEADER ════ */
#hdr {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #1e3a8a;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* border-bottom: 1px solid rgba(228, 233, 240, 0.7); */
  transition: box-shadow .3s, background .3s;
  padding: 10px 0px;
}


#hdr.scrolled {
  background: #1e3a8a;
  box-shadow: 0 2px 28px rgba(12, 26, 46, 0.09)
}

.hdr-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: contents;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  background-color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-box {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .4px;
}

.logo-info h1 {
  font-family: var(--font-cond);
  font-size: 32px;
  font-weight: 700;
  color: #073785;
  letter-spacing: .2px;
  line-height: 1.2
}

.dual-text {
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  /* dark blue */
  letter-spacing: 1px;
  line-height: 1.2;
  overflow: hidden;

}

.dual-text span {
  display: inline-block;
  background: linear-gradient(90deg, #002054, #009fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* animation */
  animation: slideUp 1s ease forwards;
}

/* animation */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-info p {
  font-size: 15px;
  color: #4f5d72;
  font-weight: 500;
  letter-spacing: .4px;
  margin-top: 0px;
  margin-bottom: -2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1px
}

.ni {
  position: relative
}

.nl {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 7px;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color .2s, background .2s;
  position: relative;
  white-space: nowrap;
}

.nl::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--blue-mid);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1);
  transform-origin: left;
}

.nl:hover,
.nl.active {
  color: #fff;
  background: rgba(219, 234, 254, .45)
}

.nl:hover::after,
.nl.active::after {
  transform: scaleX(1)
}

.ni:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1)
}

.nc {
  font-size: 9px;
  opacity: .5;
  transition: transform .22s
}

.ni:hover .nc {
  transform: rotate(180deg)
}

.drop {
  position: absolute;
  /* top: calc(100% + 8px); */
  left: 0;
  min-width: 400px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-top: 3px solid var(--blue-mid);
  z-index: 3000;
}

.ni:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  border-radius: 7px;
  transition: all .16s;
  font-weight: 600;
  font-family: var(--font-ui);
}

.drop a.active {
  color: var(--blue-mid);
  background: var(--blue-soft);
  padding-left: 16px;
}

.drop a.active::before {
  opacity: 1;
  transform: translateX(0);
}

.drop a::before {
  content: '→';
  color: var(--blue-mid);
  font-size: 11px;
  opacity: 0;
  transition: .16s;
  transform: translateX(-4px)
}

.drop a:hover {
  background: var(--blue-soft);
  color: var(--blue-mid);
  padding-left: 16px
}

.drop a:hover::before {
  opacity: 1;
  transform: translateX(0)
}

.btn-cta {
  background: #073785 !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, .26) !important;
  transition: all .24s !important;
}

.btn-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(37, 99, 235, .34) !important
}

.btn-cta::after {
  display: none !important
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  padding: 8px
}

/* ════ HERO ════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: 0;
  background: var(--ink);
  padding-bottom: 20px;
  z-index: 1;
}

.hero-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease
}

.slide.active {
  opacity: 1
}

.slide.active .s-bg {
  transform: scale(1)
}

.s-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease
}

/* .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 26, 46, .68) 0%, rgba(12, 26, 46, .28) 60%, rgba(12, 26, 46, .1) 100%)
} */

.s-cap {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  padding: 2.8rem 3rem;
  background: linear-gradient(to top, rgba(12, 26, 46, .88) 0%, transparent 100%);
}

.s-cap h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.4px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s .18s, transform .6s .18s cubic-bezier(.16, 1, .3, 1);
}

.s-cap p {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, .62);
  margin-top: 7px;
  opacity: 0;
  transform: translateY(13px);
  transition: opacity .5s .35s, transform .5s .35s;
}

.slide.active .s-cap h2,
.slide.active .s-cap p {
  opacity: 1;
  transform: none
}

.s-controls {
  position: absolute;
  bottom: 1.8rem;
  right: 2.5rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 9px;
  pointer-events: auto;
}

.s-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .22s;
}

.s-btn:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: scale(1.07)
}

.s-dots {
  position: absolute;
  bottom: 2.4rem;
  left: 3rem;
  z-index: 100;
  display: flex;
  gap: 7px;
  align-items: center;
  pointer-events: auto;
}

.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1)
}

.sdot.active {
  width: 22px;
  border-radius: 3px;
  background: var(--amber)
}

.hero-panel {
  width: 42%;
  background: linear-gradient(155deg, #0c1a2e 0%, #0c1a2e 100%);
  /* display: flex; */
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 3.8rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .07), transparent 70%)
}

.hero-panel::after {
  content: '';
  position: absolute;
  bottom: -55px;
  left: -55px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-glow), transparent 70%)
}

.hero-panel-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.hp-content {
  position: relative;
  z-index: 1;
  width: 100%
}

.hp-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .17);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 13px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-cond);
  margin-bottom: 1.4rem;
}

.hp-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0
}

.hp-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.4px;
  margin-bottom: .9rem;
}

.hp-sub {
  font-size: 17px;
  color: rgb(255, 255, 255);
  line-height: 1.7;
  font-family: var(--font-ui);
  margin-bottom: 1.8rem;
  max-width: 500px
}

.hp-address {
  background: rgba(0, 0, 0, .16);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 1.3rem;
  width: 100%;
}

.hp-address i {
  color: var(--amber);
  margin-top: 3px;
  font-size: 13px
}

.hp-address p {
  font-size: 14.5px;
  color: rgb(255 255 255 / 92%);
  line-height: 1.6;
  font-family: var(--font-ui)
}

.hp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  width: 100%
}

.hps {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  transition: background .26s
}

.hps:hover {
  background: rgba(255, 255, 255, .1)
}

.hps-n {
  font-family: var(--font-cond);
  font-size: 34px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1
}

.hps-l {
  font-size: 10.5px;
  color: #fff;
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: .4px
}

/* WAVE SEPARATORS */
.wave-sep {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: -1px 0;
  position: relative;
  z-index: 2
}

.wave-sep svg {
  display: block;
  width: 100%
}


/* ── PAGE BANNER ────────────────────────────────────────── */
.page-banner {
  position: relative;
  background: var(--ink);
  padding: 30px 0px;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid), var(--amber), var(--blue-mid))
}

.banner-bg-text {
  position: absolute;
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 800;
  color: rgba(255, 255, 255, .04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 8px
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center
}

.banner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 1.2rem
}

.banner-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: .2s
}

.banner-breadcrumb a:hover {
  color: var(--amber)
}

.banner-breadcrumb i {
  font-size: 9px
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(31px, 5vw, 31px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.05
}

.banner-title span {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, var(--amber), #fcd34d);
  -webkit-background-clip: text
}

.banner-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7
}

.banner-wave {
  position: relative;
  margin-top: 3rem
}

.banner-wave svg {
  display: block;
  width: 100%
}

/* ════ WELCOME ════ */
#welcome {
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-mid) 100%);
  overflow: hidden;
  padding: 0;
  padding-top: 50px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px
}

.w-img-side {
  position: relative;
  overflow: hidden
}

.w-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 7s ease
}

.w-img-side:hover .w-img-main {
  transform: scale(1.04)
}

.w-img-side::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--blue-mid), var(--amber));
  z-index: 5
}

.w-float-img {
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 4px solid var(--white);
  box-shadow: var(--sh-lg);
  z-index: 10;
}

.w-year-badge {
  position: absolute;
  top: 1.8rem;
  right: -14px;
  z-index: 10;
  background: var(--amber);
  border-radius: var(--r-md);
  padding: 1rem 1.3rem;
  box-shadow: var(--sh-amber);
  text-align: center;
}

.w-year-badge .yr {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1
}

.w-year-badge .yr-lbl {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 2px
}

.w-content {
  padding: 3.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.w-content .body-text {
  font-size: 17px;
  color: #001a40;
  line-height: 27px;
  font-family: var(--font-ui);
  margin-bottom: 1rem
}

.w-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 1.4rem 0
}

.wf {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .9rem 1.1rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--gray-line);
  background: var(--gray-bg);
  transition: all .26s cubic-bezier(.34, 1, .64, 1);
  cursor: default;
}

.wf:hover {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: var(--sh-blue);
  transform: translateX(5px)
}

.wf-ico {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  background: var(--blue-soft);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all .26s
}

.wf:hover .wf-ico {
  background: var(--blue-mid);
  color: #fff
}

.wf h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px
}

.wf p {
  font-size: 15px;
  color: #242424;
  line-height: 1.5;
  font-family: var(--font-ui)
}

.btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #073785;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--sh-blue);
  transition: all .26s cubic-bezier(.34, 1.2, .64, 1);
  width: fit-content;
}

.btn-prim i {
  transition: transform .2s
}

.btn-prim:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(37, 99, 235, .34)
}

.btn-prim:hover i {
  transform: translateX(4px)
}

/* ════ MONTFORT ════ */
#montfort {
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0
}

#montfort::before {
  content: '';
  position: absolute;
  right: -12%;
  top: -22%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .12) 0%, transparent 65%);
  pointer-events: none
}

.montfort-bg-text {
  position: absolute;
  bottom: -.5rem;
  left: -1rem;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 800;
  color: rgba(255, 255, 255, .022);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap
}

.mf-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4.5rem;
  align-items: center
}

.mf-img {
  position: relative
}

.mf-img-main {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .42);
  display: block;
  transition: transform .52s
}

.mf-img:hover .mf-img-main {
  transform: scale(1.02) rotate(.3deg)
}

.mf-anchor {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--amber);
  box-shadow: var(--sh-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ink);
  transition: transform .26s
}

.mf-img:hover .mf-anchor {
  transform: rotate(9deg) scale(1.07)
}

.mf-content .sec-label {
  color: var(--amber)
}

.mf-content .sec-title {
  color: #fff
}

.mf-desc {
  font-size: 17px;
  color: #fff;
  line-height: 1.78;
  font-family: var(--font-ui);
  margin: 1.1rem 0 1.8rem
}

.mf-points {
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.mp {
  display: flex;
  gap: .95rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  transition: all .26s;
  cursor: default;
}

.mp:hover {
  background: rgba(37, 99, 235, .11);
  border-color: rgba(37, 99, 235, .26);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, .18), var(--sh-blue)
}

.mp-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 3px 12px rgba(37, 99, 235, .26);
  transition: transform .26s
}

.mp:hover .mp-ico {
  transform: scale(1.08) rotate(-5deg)
}

.mp h4 {
  font-size: 17px !important;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 3px;
  font-family: var(--font-ui)
}

.mp h4 a {
  font-size: 17px !important;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 3px;
  font-family: var(--font-ui);
  margin-top: 5px;
}

.mp p {
  font-size: 15px;
  color: rgb(255 255 255 / 90%);
  font-family: var(--font-ui);
  line-height: 1.52
}

/* ════ AIMS ════ */
#aims {
  background: var(--gray-bg);
  padding: 5rem 0
}

.aims-hd {
  text-align: center;
  margin-bottom: 3.2rem
}

.aims-hd p {
  max-width: 580px;
  margin: .9rem auto 0;
  font-size: 17px;
  color: #262626;
  line-height: 1.72
}

.aims-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem
}

.aims-col {
  position: relative
}

.aims-col::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-mid), var(--amber), var(--blue-mid));
  border-radius: 2px
}

.aim {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.3rem;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .48s, transform .48s cubic-bezier(.16, 1, .3, 1)
}

.aim.in {
  opacity: 1;
  transform: none
}

.aim-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px
}

.aim-dot {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
  flex-shrink: 0;
  margin-top: 17px;
  transition: all .26s
}

.aim:hover .aim-dot {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, .16)
}

.aim-card {
  flex: 1;
  /* background: var(--white); */
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  border: 1.5px solid var(--gray-line);
  transition: all .28s cubic-bezier(.34, 1, .64, 1);
  cursor: default
}

.aim-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--sh-blue);
  transform: translateX(6px)
}

.aim-ch {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .55rem
}

.aim-ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition: transform .26s
}

.aim-card:hover .aim-ico {
  transform: scale(1.08) rotate(-5deg)
}

.aim-card h3 {
  font-family: var(--font-cond);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .15px;
  color: #fff;
}

.aim-card p {
  font-size: 15px;
  color: #000 !important;
  line-height: 1.62;
  font-family: var(--font-ui)
}

/* ════ NEWS ════ */
#news {
  background: var(--white);
  overflow: hidden;
  padding: 5rem 0
}

.news-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.3rem
}

.news-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-mid);
  text-decoration: none;
  font-family: var(--font-ui);
  padding: 8px 17px;
  border-radius: 50px;
  border: 1.5px solid var(--blue-soft);
  background: var(--blue-soft);
  transition: all .2s
}

.news-all:hover {
  background: var(--blue-mid);
  color: #fff;
  border-color: var(--blue-mid)
}

.news-all i {
  transition: transform .2s
}

.news-all:hover i {
  transform: translateX(4px)
}

.news-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.3rem
}

.news-main {
  display: flex;
  flex-direction: column;
  gap: 1.3rem
}

.ncard {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  cursor: pointer
}

.ncard img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .52s cubic-bezier(.25, .46, .45, .94)
}

.ncard:hover img {
  transform: scale(1.06)
}

.ncard.big img {
  height: 550px
}

.ncard.sm img {
  height: 170px
}

.nover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 26, 46, .9) 0%, rgba(12, 26, 46, .16) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
}

.ncat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--amber);
  color: var(--ink);
  padding: 4px 11px;
  border-radius: 50px;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
  width: fit-content
}

.ntxt {
  transform: translateY(9px);
  transition: transform .28s cubic-bezier(.16, 1, .3, 1)
}

.ncard:hover .ntxt {
  transform: translateY(0)
}

.ntxt h3 {
  font-family: var(--font-display);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px
}

.ncard.big .ntxt h3 {
  font-size: 21px
}

.ncard.sm .ntxt h3 {
  font-size: 15px
}

.ntxt p {
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.5;
  font-family: var(--font-ui)
}

.ncard.sm .ntxt p {
  display: none
}

.nread {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  font-family: var(--font-cond);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .25s .07s
}

.ncard:hover .nread {
  opacity: 1
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 1.3rem
}

/* ════ GALLERY ════ */
#gallery {
  background: var(--ink);
  padding: 5rem 0 5.5rem
}

#gallery .sec-label {
  color: var(--amber)
}

#gallery .sec-title {
  color: #fff
}

.gal-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.2rem
}

.gal-hd p {
  max-width: 420px;
  font-size: 17px;
  color: #fff;
  font-family: var(--font-ui);
  line-height: 1.62
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px
}

.gi {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--ink-mid)
}

.gi:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3
}

.gi:nth-child(4) {
  grid-column: 4;
  grid-row: 1/3
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .52s cubic-bezier(.25, .46, .45, .94);
  min-height: 150px
}

.gi:nth-child(1) img,
.gi:nth-child(4) img {
  min-height: 300px
}

.gi:hover img {
  transform: scale(1.07)
}

.gi-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 70%) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .28s;
  display: flex;
  align-items: flex-end;
  padding: .9rem
}

.gi:hover .gi-over {
  opacity: 1
}

.gi-over span {
  font-family: var(--font-cond);
  font-size: 20.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .4px
}

/* ════ FOOTER ════ */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .52);
  position: relative;
  margin-top: 50px;
  font-family: var(--font-ui);
  overflow-x: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(6deg, #0c1a2e, #ffc25b, #0c1a2e);
}

.ftr-body {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.8rem
}

.fb-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 1.1rem;
  text-decoration: none
}

.fb-logo .logo-box {
  background: linear-gradient(135deg, #ffffff, #003074);
}

.fb-logo h1 {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px
}

.fb-logo p {
  font-size: 10px;
  color: rgb(255 255 255);
  letter-spacing: .4px
}

.fb-desc {
  font-size: 15px;
  line-height: 1.72;
  color: #fff;
  font-family: var(--font-ui);
  margin-bottom: 1.4rem;
  max-width: 248px
}

.socials i {
  color: #fff;
}

.socials {
  display: flex;
  gap: 8px
}

.soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .42);
  text-decoration: none;
  transition: all .2s
}

.soc:hover {
  background: var(--blue-mid);
  color: #fff;
  border-color: var(--blue-mid);
  transform: translateY(-3px)
}

.fc h4 {
  font-family: var(--font-cond) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 1.1rem !important;
  letter-spacing: .3px !important;
  padding-bottom: .6rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.fc ul li a {
  position: relative;
  padding-left: 20px !important;
  display: inline-block;
  transition: 0.3s;
  color: #fff !important;
  text-decoration: none;
  font-size: 15px;
}

.fc ul li a::before {
  content: "->";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-size: 13px;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
  font-family: var(--font-ui);
}

.fc ul li a:hover::before {
  transform: translateX(6px);
  color: #ee940e;
}

.fc ul li a:hover {
  color: #f59e0b;
}

/* .fc ul a:hover::before {
  width: 20px;
  background: var(--amber)
} */

.ci {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.ci-row {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.ci-row i {
  color: var(--amber);
  margin-top: 6px;
  font-size: 12.5px;
  flex-shrink: 0
}

.ci-row p {
  font-size: 15px;
  color: #fff;
  font-family: var(--font-ui);
  line-height: 1.5
}

.ftr-bot {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 1.3rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media(max-width:767px) {
  .ftr-bot {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.ftr-bot p {
  font-size: 15px;
  color: #fff;
  font-family: var(--font-ui)
}

.reg-chip {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 5px;
  padding: 4px 11px;
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .4px
}

/* ════ RESPONSIVE ════ */
@media(max-width:768px) {

  .logo-box,
  .logo-box img {
    width: 50px !important;
  }
.nl:hover, .nl.active {
    color: #000;
    /* background: rgba(219, 234, 254, .45); */
}
.nl {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 4px;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: color .2s, background .2s;
    position: relative;
    white-space: nowrap;
}
.logo-style{
  margin-top: -15px !important;
  margin-bottom: -15px !important;
}
  .hdr-inner {
    max-width: 1240px;
    margin: 0 !important;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    background-color: #fff;
  }

  .logo-info h1 {
    font-family: var(--font-cond);
    font-size: 15px !important;
    font-weight: 700;
    color: #073785;
    letter-spacing: .2px;
    line-height: 1.2;
    display: inline-grid;
  }

  .logo-info p {
    font-size: 12px !important;
    color: #4f5d72;
    font-weight: 500;
    letter-spacing: .4px;
    text-align: left !important;
  }
}

/* ════ RESPONSIVE ════ */
@media(max-width:1100px) {
  #hero {
    flex-direction: column
  }

  .hero-panel {
    width: 100%;
    padding: 3rem 2.5rem
  }

  .mf-layout {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .mf-img {
    max-width: 340px
  }

  .aims-grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .news-layout {
    grid-template-columns: 1fr
  }

  .news-side {
    flex-direction: row;
    flex-wrap: wrap
  }

  .news-side .ncard {
    flex: 1;
    min-width: 200px
  }

  .gal-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .gi:nth-child(1) {
    grid-column: 1/3
  }

  .gi:nth-child(4) {
    grid-column: 3;
    grid-row: 1
  }

  .ftr-body {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }
}

@media(max-width:820px) {
  .hdr-inner {
    padding: 0 1.25rem
  }

  nav {
    display: none
  }

  nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-line);
    padding: .9rem 1.25rem 1.2rem;
    box-shadow: var(--sh-lg);
    z-index: 999;
  }

  nav.open .ni {
    width: 100%
  }

  nav.open .nl {
    width: 100%;
    border-radius: 7px
  }

  nav.open .drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--gray-bg);
    margin-top: 3px
  }

  .nav-toggle {
    display: flex
  }

  .hero-panel {
    display: none
  }

  #hero {
    /* padding-top: 66px */
  }

  .hero-slider {
    min-height: calc(100vh - 66px)
  }

  section {
    padding: 3.5rem 0
  }

  .container {
    padding: 0 1.25rem
  }

  .sec-title {
    font-size: 26px
  }

  .welcome-grid {
    grid-template-columns: 1fr
  }

  .w-img-side {
    min-height: 300px
  }

  .w-content {
    padding: 2.2rem 1.5rem
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gi:nth-child(1) {
    grid-column: 1/-1
  }

  .gi:nth-child(4) {
    grid-column: 1;
    grid-row: auto
  }

  .ftr-body {
    grid-template-columns: 1fr;
    gap: 1.7rem;
    padding: 2.8rem 1.25rem 1.7rem
  }

  .ftr-bot {
    padding: 1.1rem 1.25rem;
    flex-direction: column;
    gap: 7px;
    text-align: center
  }

  .mf-layout {
    grid-template-columns: 1fr
  }
}

.wave-divider {
  line-height: 0;
  margin-top: -1px;
  /* reduce gap */
  background: #0c1a2e;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100px;
  /* little more than before */
}

/* 🔥 IMPORTANT FIX */
.wave-divider path {
  transform: translateY(1px);
  /* push down slightly */
}

.subpage #welcome {
  padding-top: 0
}

.subpage {
  margin: 50px 50px 0px 50px;
}

.subpage .w-content {
  padding: 0px 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subpage .body-text {
  font-size: 17px;
  color: #001a40;
  line-height: 27px;
  font-family: var(--font-ui);
  margin-bottom: 1rem;
}

* ── FILTER TABS ────────────────────────────────────────── */ #gallery-section {
  padding: 4.5rem 0 6rem
}

.gal-header {
  text-align: center;
  margin-bottom: 3rem
}

.gal-header .sec-label {
  justify-content: center
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 2rem
}

.ftab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-line);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-muted);
  cursor: pointer;
  transition: all .24s;
  font-family: var(--font-ui)
}

.ftab:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  background: var(--blue-soft)
}

.ftab.active {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: #fff;
  box-shadow: 0 4px 14px rgba(7, 55, 133, .26)
}

/* ── GALLERY GRID ───────────────────────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.gi {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--gray-bg);
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .52s cubic-bezier(.25, .46, .45, .94);
  min-height: 180px;
}

/* featured items */
.gi.featured {
  grid-column: span 2;
  grid-row: span 2
}

.gi.featured img {
  min-height: 380px
}

.gi:hover img {
  transform: scale(1.07)
}

.gi-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .28s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.gi:hover .gi-over {
  opacity: 1
}

.gi-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px
}

.gi-over span {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px
}

.gi-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transition: opacity .28s, transform .28s;
  transform: scale(.8)
}

.gi:hover .gi-zoom {
  opacity: 1;
  transform: scale(1)
}

/* hidden state for filter */
.gi.hidden {
  display: none
}

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s;
  pointer-events: none;
  padding: 1.5rem;
}

.lightbox.open {
  background: rgba(5, 10, 20, .92);
  pointer-events: auto
}

.lb-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #0c1a2e;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
  transform: scale(.9) translateY(20px);
  opacity: 0;
  transition: transform .38s cubic-bezier(.16, 1, .3, 1), opacity .38s;
}

.lightbox.open .lb-inner {
  transform: scale(1) translateY(0);
  opacity: 1
}

.lb-img-wrap {
  position: relative;
  background: #000;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.lb-img-wrap img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  transition: opacity .28s
}

.lb-img-wrap img.transitioning {
  opacity: 0
}

.lb-info {
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.lb-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff
}

.lb-counter {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  font-weight: 500
}

.lb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}

.lb-close:hover {
  background: rgba(255, 255, 255, .22);
  transform: scale(1.1)
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s, transform .22s;
  z-index: 2;
}

.lb-arrow:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-50%) scale(1.08)
}

.lb-arrow.prev {
  left: 14px
}

.lb-arrow.next {
  right: 14px
}

.lb-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--amber));
  transition: width .32s ease
}

/* ── LOAD MORE ──────────────────────────────────────────── */
.gal-footer {
  text-align: center;
  margin-top: 3rem
}

.btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-mid);
  color: #fff;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all .24s;
  box-shadow: 0 4px 16px rgba(7, 55, 133, .26);
  border: none;
  cursor: pointer;
  font-family: var(--font-ui)
}

.btn-prim:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(7, 55, 133, .34)
}

a {
  color: rgb(248 193 101);
  text-decoration: none !important;
}

.common-btn {
    padding: 5px !important;
    background: #1e3a8a;
    color: #fff;
    border-radius: 10px;
}
.common-btn:hover {
    padding: 5px !important;
    background: #fff;
    color: #000;
    border-radius: 10px;
}
.e-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #007bff;
  /* primary color */
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid #007bff;
}

/* Hover effect */
.e-primary-btn:hover {
  background-color: #fff;
  color: #007bff;
  border-color: #007bff;
}

/* White hover variant */
.is-hover-white:hover {
  background-color: #fff;
  color: #007bff;
}

/* Icon styling */
.e-primary-btn.has-icon::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Icon move on hover */
.e-primary-btn.has-icon:hover::after {
  transform: translateX(5px);
}

/* h4 {
  font-size: 28px !important;
  color: #073785 !important;
} */

.news-meta-item {
  margin-top: -25px !important;
  margin-bottom: 25px !important;
}

.ftr-body a {
  color: #fff;
}

.table-responsive {
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.custom-table th {
  background: #007bff;
  color: #fff;
  padding: 10px;
  text-align: left;
}

.custom-table td {
  padding: 10px;
  border-bottom: 1px solid #000;
}

.custom-table tr:hover {
  background: #f5f5f5;
}

.custom-table a {
  color: #007bff;
  text-decoration: none;
}

.custom-table a:hover {
  text-decoration: underline;
}

.footer h4 {
  margin-top: -5px;
  margin-left: -12px;
}

.subpage p img {
  text-align: center !important;
}

.w-img-main-one {
  width: 100%;
  /* height: 250%; */
  object-fit: cover;
  display: block;
  transition: transform 7s ease;
}

.w-img-side-one::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  /* background: linear-gradient(to bottom, var(--blue-mid), var(--amber)); */
  z-index: 5
}

.w-content-one {
  padding: 0.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-who-we-are {
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-mid) 100%);
  overflow: hidden;
  padding: 0;
  padding-top: 50px;
  margin-top: 50px;
}

/* SECTION LABEL */
.sec-label-one {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: .75rem;
}

.sec-label-one::before {
  content: '';
  width: 24px;
  height: 2.5px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0
}

.sec-title-one {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.4px;
  padding-bottom: 10px;
}

.sec-title-one span {
  color: var(--blue-mid)
}

.sec-title-one em {
  font-style: italic;
  color: #fff;
}

.body-text-one {
  font-size: 17px;
  color: #fff;
  line-height: 27px;
  font-family: var(--font-ui);
  margin-bottom: 1rem
}

.wf-one h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  margin-top: 7px;
}

.wf-one {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .3rem 1.1rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--gray-line);
  background: var(--gray-bg);
  transition: all .26s cubic-bezier(.34, 1, .64, 1);
  cursor: default;
}

.w-features-one {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: .8rem 0
}

.mp-one h4 {
  font-size: 17px !important;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 3px;
  font-family: var(--font-ui);
  margin-top: 5px;
}

.w-img-side-one {
  display: flex;
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center (optional) */
}

.w-img-main-one {
  max-width: 100%;
  height: auto;
  display: block;
}

.quote-style-one {
  /* font-style: italic; */
  font-size: 16px;
  line-height: 1.8;
  padding-left: 20px;
  border-left: 4px solid #f4b400;
  /* gold accent */
  color: #ddd;
}
p img {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.hp-sub {
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-style{
  /* list-style: disc; */
  padding-left: 3px;
  color: #fff;
  font-size: 20px;
  display: block;
}
.list-style li{
  /* list-style: disc; */
  /* padding-left: 20px; */
  color: #fff;
  padding-top: 10px;
  display: block;
}
.list-style li a {
    margin-top: -30px;
    /* list-style: disc; */
    padding-left: 30px;
    color: #fff;
    /* padding-top: 10px; */
    display: flex;
}
.list-style li a:hover {
    /* list-style: disc; */
    padding-left: 28px;
    color: #f59e0b !important;
    /* padding-top: 10px; */
}
.subpage h4{
  font-size: 14px !important;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 3px;
  font-family: var(--font-ui);
}
.subpage p{
  color: #fff !important;
}
body.custom-bg,
.graduate-admission ul li
{
  color: #fff !important;
}
body.custom-bg,
.graduate-admission
{
   background-color: #0c1a2e;
   margin: 0 !important;
   padding: 40px 0;
}
body.custom-bg,
.graduate-admission p img
{
  text-align: center !important;
}

body.custom-bg,
.subpage
{
   background-color: #0c1a2e;
   margin: 0 !important;
   padding: 40px 0;
}
body.custom-bg,
.graduate-admission h3{
  color: #fff !important;
}

.logo-style{
  margin-top: 8px;
  margin-bottom: 8px;
}
.ftr-bot a{
  color: rgb(248 193 101);
}
.footer-logo img{
  width: 50%;
}

/* default hide */
.drop {
  display: none;
}

/* desktop hover */
@media (min-width: 992px) {
  .ni:hover .drop {
    display: block;
  }
}

/* mobile toggle */
@media (max-width: 991px) {
  .ni.open .drop {
    display: block;
  }
}
@media (max-width: 768px) {

.w-content-one {
    padding: 0rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sec-label-one {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-cond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: .75rem;
    margin-top: 20px;
}
.subpage {
    margin: 0px 0px 0px 0px;
}
.subpage h4 {
    font-size: 17px !important;
    font-weight: 600;
    color: #073785 !important;
    margin-bottom: 3px;
    font-family: var(--font-ui);
    margin-top: 20px !important;
}
}
.ftr-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.8rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.5rem 2rem 4rem;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Tablet */
@media (max-width: 992px) {
  .ftr-body {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ftr-body {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1rem 1.5rem;
    overflow-x: hidden;
  }
}

@media (max-width: 576px) {
  .ftr-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
}
.hero-area{
  min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    padding-top: 0;
    background: var(--ink);
    padding-bottom: 20px;
    z-index: 1;
    margin-top: 50px;
}
hr {
    margin: 1rem 0;
    color: #fff;
    border: 1;
    border-top: var(--bs-border-width) solid;
    opacity: 1;
}

tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 1;
    background: #0456a8 !important;
}
.ci-row-one p {
    font-size: 15px;
    color: #fff;
    font-family: var(--font-ui);
    line-height: 1.5;
    margin-top: -25px;
}
.fb-color{
    color: rgb(248 193 101)
}
.hp-title-one {
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -.4px;
    margin-bottom: .9rem;
    margin-top: 13px;
}
.menu-item {
    background: #1f2f46;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-item h4 {
    margin: 0;
    font-size: 16px;
}

.menu-item p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #b0c4de;
}

.menu-item:hover {
    background: #2d4263;
}

/* ACTIVE BUTTON */
.menu-item.active { 
    border: 1px solid #4da3ff;
}

.content-box {
    color: #fff;
}

/* RIGHT SIDE */
.certificate-right {
    /*width: 70%;*/
    /*margin-left: 22rem;*/
    /*margin-top: -12rem;*/
}
.back-btn-wrapper{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}

.go-back-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:#0b1d39;
    color:#f59e0b;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s ease;
}

.go-back-btn:hover{
    background:#16345f;
    color:#fff;
}

.go-back-btn i{
    font-size:18px;
}

.certificate-layout{
    gap:30px;
    align-items:flex-start;
}

.certificate-layout .certificate-left{
    width:200px;
    flex-shrink:0;
}

.certificate-layout .certificate-right{
    flex:1;
}
.back-btn{
    display:inline-block;
    padding:8px 16px;
    border:1px solid #333;
    border-radius:4px;
    text-decoration:none;
    color:#CA7122;
    font-size:14px;
    transition:0.3s;
}

.gallery-title-wrapper {
        height: 80px; /* 3 lines text pidikira alavuku fixed height */
        display: flex;
        align-items: flex-end; /* Text ah keela irunthu align panrathala, 2 lines text keela erangi vanthudum */
        justify-content: center;
        margin-bottom: 10px;
    }
    .gallery-title {
        font-size: 16px; /* Unga design font size */
        margin: 0 !important;
        font-weight: bold;
    }