@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

:root {
  --gold: #d4900a;
  --gold-l: #f5a623;
  --navy: #0a1e5e;
  --navy-m: #1a3080;
  --navy-l: #2d4faa;
  --cream: #fff8f0;
  --txt: #1c1c2e;
  --txt-l: #6b7280;
  --accent: #c0392b;
  --sbg: #f5f0e8;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--txt);
  overflow-x: hidden;
}
body.bw-mode {
  filter: grayscale(100%);
}
body.odia-mode {
  font-family: serif;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: Arial, Helvetica, sans-serif;
}

/* ══ TOP ACCESSIBILITY BAR ══ */
#topbar {
  /* background: transparent; */
  background: var(--navy);
  padding: 5px 0;
  /* border-bottom: 2px solid var(--gold); */
  position: sticky;
  top: 0;
  z-index: 2100;
  width: 100%;
}
#topbar.scrolled {
    background: rgba(10, 30, 94, 0.96) !important;
    backdrop-filter: blur(12px);
}
.tb-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px;
}
.tb-left {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.tb-lbl {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 2px;
}
.tb-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.tb-btn:hover,
.tb-btn.on {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.tb-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}
.bw-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.bw-btn:hover,
.bw-btn.on {
  background: #333;
  border-color: #555;
}
.tb-right {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  white-space: nowrap;
}
.tb-right span {
  color: var(--gold-l);
  font-weight: 700;
}

/* ══ MAIN NAVBAR — TRANSPARENT ══ */
#mainNav {
  position: sticky;
  top: 35px;
  z-index: 2000;
  background: transparent;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
/* sticky compensation: topbar is sticky too so mainNav sticks below it */
#mainNav.scrolled {
  background: rgba(10, 30, 94, 0.96) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: stretch;
  min-height: 60px;
  /* background: linear-gradient(
    180deg,
    rgba(10, 30, 94, 0.55) 0%,
    rgba(10, 30, 94, 0.1) 100%
  ); */
  transition: background 0.4s;
}
#mainNav.scrolled .nav-inner {
  background: transparent;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
  flex-shrink: 0;
}
.b1 {
  color: var(--gold-l);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
}
.b2 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}
.nav-links-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 8px;
  flex-wrap: wrap;
  gap: 2px;
}
.nav-links-wrap a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 10px !important;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links-wrap a:hover, .nav-links-wrap a.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-l) !important;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 0px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.nav-login {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-login:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 144, 10, 0.5);
}
.nav-reg {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-reg:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.nav-mlogo {
  height: 80px;
  width: auto;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  opacity: 1;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-mlogo:hover {
  opacity: 1;
}
.nav-toggler {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: max-content;
  margin: auto 10px auto auto;
}
.nav-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
#navMobile {
  display: none;
  flex-direction: column;
  background: rgba(10, 30, 94, 0.97);
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#navMobile.open {
  display: flex;
}
#navMobile a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  padding: 10px 8px;
  border-radius: 6px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
#navMobile a:hover {
  color: var(--gold-l);
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 991px) {
  .nav-links-wrap,
  .nav-right {
    display: none;
  }
  .nav-toggler {
    display: flex;
  }
}
@media (max-width: 575px) {
  .tb-right {
    display: none !important;
  }
}

/* ══ HERO SECTION ══ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: -155px;
}
/* Hero sits below sticky topbar + sticky navbar naturally */

.hs {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.hs.active {
  opacity: 1;
  z-index: 2;
}
.hsbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateY(70px) scale(1.06);
  opacity: 0;
  transition:
    transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.9s;
}
.hs.active .hsbg {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.hso {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(10, 30, 94, 0.82) 0%,
    rgba(10, 30, 94, 0.5) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* WOW vertical entrance */
.hc {
  position: relative;
  z-index: 3;
  padding: 0 5%;
  /* max-width: 700px; */
}
.hc .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(90px);
  opacity: 0;
  transition: all 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hc h1 {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 16px 0 14px;
  transform: translateY(90px);
  opacity: 0;
  transition: all 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.13s;
}
.hc h1 .g {
  color: var(--gold-l);
}
.hc p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.88rem, 1.8vw, 1.02rem);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
  transform: translateY(90px);
  opacity: 0;
  transition: all 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.26s;
}
.hc .hbtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  transform: translateY(90px);
  opacity: 0;
  transition: all 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.38s;
}
.hs.active .badge-pill,
.hs.active h1,
.hs.active p,
.hs.active .hbtns {
  transform: translateY(0);
  opacity: 1;
}

.btn-gp {
  background: var(--gold);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-gp:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 144, 10, 0.5);
  color: var(--navy);
}

.btn-gp-white {
  background: #ffffff;
  color: #4b4b4b;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-gp-white:hover {
  transform: translateY(-2px);
}

.btn-go {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-go:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Side dot nav */
.hero-dots {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hd {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.hd.on {
  background: var(--gold);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.4);
}
/* Bottom arrows */
.hero-arrows {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  gap: 8px;
}
.harr {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}
.harr:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
/* Progress */
.hprog {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--gold);
  z-index: 5;
  border-radius: 0 2px 2px 0;
  transition: width linear;
}
/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.scroll-hint span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.sm {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.sm::after {
  content: "";
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: sd 1.6s infinite;
}
@keyframes sd {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ══ QUICK BAR ══ */
.qbar {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #0022FF7C;
  padding: 18px 0;
  border-bottom: 4px solid var(--gold);
  height: 150px;
  border-radius: 8px 8px 0px 0px;
}
.qli {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 7px;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.25s;
    width: 235px !important;
}
.qli::before{
    position: absolute;
    content: "";
    height: 130px;
    width: 1px;
    background-color: var(--cream);
    right: -5px;
}

.qli:last-child::before {
    display: none;
}

.qli:hover {
  /* background: rgba(255, 255, 255, 0.07); */
  transform: translateY(-4px);
  color: var(--gold-l);
}
.qicon {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 0rem; */
  transition: background 0.2s;
}
.qli:hover .qicon {
  color: var(--navy);
}
.qlbl {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
    text-align: center;
    display: initial;
}

/* ══ SECTIONS COMMON ══ */
.slbl {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.shead {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
}
.shead .g {
  color: var(--gold);
}
.ssub {
  color: var(--txt-l);
  max-width: 580px;
  margin: 10px auto 0;
  line-height: 1.75;
}

/* ══ WELCOME ══ */
.welcome-sec {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.welcome-sec .container{
    position: relative;
    z-index: 3;
}

.welcome-sec::before{
    content: "";
    position: absolute;
    background: url('../image/background/pattern_bg.jpg') center / cover no-repeat;
    opacity: 0.05;
    z-index: 2;
    height: 100vh;
    width: 100vw;
    top: 0;
}

/* circle design */
.cird_1{
    position: absolute;
    height: 300px;
    width: 300px;
    border-radius: 150px;
    background-color: #fff45963;
    top: -65px;
    left: -235px;
    z-index: 3;
}
.cird_2{
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: #3157ff9a;
    bottom: 45px;
    left: 30px;
    z-index: 3;
}
.cird_3{
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    background-color: #1d3fdbd0;
    bottom: 15px;
    left: 15px;
    z-index: 3;
}

.cird_4{
    position: absolute;
    height: 300px;
    width: 300px;
    border-radius: 150px;
    background-color: #6459ff63;
    top: -155px;
    right: -235px;
    z-index: 3;
}
.cird_5{
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: #1d40db7a;
    top: 50%;
    transform: translateY(-50%);
    right: -35px;
    z-index: 3;
}

.welcome-txt {
  color: var(--txt-l);
  line-height: 1.85;
  font-size: 1rem;
}

/* ══ STATS ══ */
.stats-sec {
  background: linear-gradient(0deg, var(--navy-m) 0%, var(--navy-l) 100%);
  padding: 50px 0;
  position: relative;
}

.pattern_1::before {
    position: absolute;
    content: "";
    height: 40px;
    width: 100%;
    background: url(../image/hr_line_pat.jpg) center / cover, no-repeat;
    top: 0;
}
.pattern_1::after {
    position: absolute;
    content: "";
    height: 40px;
    width: 100%;
    background: url(../image/hr_line_pat.jpg) center / cover, no-repeat;
    bottom: 0;
}

.scard {
  text-align: center;
  padding: 20px 10px;
}
.scard + .scard {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.snum {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: var(--gold-l);
  font-weight: 900;
  line-height: 1;
}
.slb {
  color: rgb(255 255 255 / 85%);
  font-size: 0.82rem;
  margin-top: 5px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .scard + .scard {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* ══ MCAPS ══ */
.mcaps-sec {
  background: var(--sbg);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.mcaps-sec .container{
    position: relative;
    z-index: 4;
}

.cird_abt_1{
    position: absolute;
    height: 300px;
    width: 300px;
    border-radius: 150px;
    background-color: #f1c03c50;
    top: 65px;
    left: -205px;
    z-index: 3;
}
.cird_abt_2{
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: #3157ff9a;
    bottom: 145px;
    left: 30px;
    z-index: 3;
}
.cird_abt_3{
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    background-color: #1d3fdbd0;
    bottom: 15px;
    left: 15px;
    z-index: 3;
}

.cird_abt_4{
    position: absolute;
    height: 300px;
    width: 300px;
    border-radius: 150px;
    background-color: #6459ffbe;
    top: 0px;
    right: -235px;
    z-index: 3;
}
.cird_abt_5{
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: #1d40db;
    top: 33%;
    transform: translateY(-50%);
    right: 95px;
    z-index: 3;
}


.mg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  position: relative;
  z-index: 12;
}
.wr{
  position: relative;
  z-index: 11;
}

.wr::after{
    position: absolute;
    content: "";
    height: 200px;
    width: 200px;
    border-radius: 110px;
    background-color: #0061F5;
    left: 0;
    top: 0;
    z-index: 10;
}

.p1{
    clip-path: polygon(0 35%, 100% 0, 100% 100%, 0% 100%);
}

.p2{
    clip-path: polygon(0 0, 100% 35%, 100% 100%, 0% 100%);
}
.mi {
  overflow: hidden;
}
.mi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mi:hover img {
  transform: scale(1.05);
}
.mi.tall {
  grid-row: span 2;
  height: 380px;
}
.mi.sh {
  height: 235px;
}
.mi.sh.p1 {
    height: 235px;
    width: 200px;
    margin-left: auto;
}



@media (max-width: 576px) {
  .mg {
    grid-template-columns: 1fr;
  }
  .mi.tall {
    height: 200px;
    grid-row: span 1;
  }
  .mi.sh {
    height: 160px;
  }
}

/* ══ NEJ ══ */
/* .nej-sec {
  padding: 60px 0;
  background: #fff;
} */
.njcard {
  border: 2px solid #b7b7b7;
  border-radius: 16px;
  padding: 36px 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  height: 100%;
  background-color: #ffffff;
}

.njcard:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(212, 144, 10, 0.15);
}
.nj-icon {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 12px;
}
.njcard h5 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
}

/* ══ STORIES ══ */
.stories-sec {
  /* background: var(--sbg); */
  padding: 10px 0 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.stories-sec .container{
    position:relative;
    z-index: 3;
    content: "";
 }

.stories-sec::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: url('../image/background/pattern_bg1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.07;
}

.ss_slider{
    position: relative;
    /* margin: 0 120px; */
    /* overflow: unset; */
}

.swiper-button-next, .swiper-button-prev {
    height: 30px;
    width: 30px;
}

.ss_slider .swiper-button-next {
    border-radius: 50%;
    border: 1px solid gray;
    background: var(--navy);
    color: var(--cream);
}

.ss_slider .swiper-button-prev {
    border-radius: 50%;
    border: 1px solid gray;
    background: var(--navy);
    color: var(--cream);
}

.ss_slider .swiper-slide{
    padding: 0;
}

.legend_card{
    border-radius: 20px 20px 50px 50px;
    /* border: 1px solid #1424ff49; */
    overflow: hidden;
    height: 350px;
    padding: 20px;
    position: relative;
    z-index: 1;
    width: 340px;
    margin: auto;
    background: #ffffff;
    filter: drop-shadow(1px 8px 5px var(--navy-l));
}

.legend_card::before{
    content: "";
    position: absolute;
    height: 200px;
    width: 200px;
    border-radius: 120px;
    background-color: #e0b800;
    opacity: 0.8;
    left: 50%;
    transform: translateX(-50%);
    top: -100px;
    z-index: 2;
}

.lc_img{
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.lc_img img{
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.lc_det{
    height: auto;
    position: relative;
    z-index: 3;
}
.lc_det .lc_name{
    font-size: 25px;
    color: var(--navy);
    font-weight: 400;
}

.lc_det .lc_deg{
    color: var(--navy);
}
.lc_det .lc_msg{
    color: var(--navy);
    font-size: 17px;
}
/* ══ GALLERY SLIDER ══ */
.gal-sec {
  padding: 40px 0px;
  background: #FFF0D6;
}



/* 
.gallery_slider .swiper-slide:hover img {
  transform: scale(1.06);
}
.gallery_slider .swiper-slide img{
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
} */

.gal-sec .owl-stage {
  margin: 15px 0;
  display: flex;
  display: -webkit-flex;
}
.gal-sec .item {
  margin: 0 15px 60px;
  width: 320px;
  height: 400px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.gal-sec .item.active {
  width: 500px;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}
.gal-sec .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}
.gal-sec .item-desc {
  padding: 0 24px 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.gal-sec .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}
.gal-sec .item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}
.gal-sec .item.active .item-desc p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.gal-sec .owl-theme.custom-carousel .owl-dots {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}
/******** Middle section CSS End *******/


/* ══ SLIDER CONTROLS ══ */
.sctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.sarr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.sarr:hover {
  background: var(--navy);
  color: #fff;
}
.sdots {
  display: flex;
  gap: 8px;
}
.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.25s;
}
.sdot.on {
  background: var(--gold);
  transform: scale(1.5);
}

/* ══ REGISTER CTA ══ */
.reg-sec {
  background: linear-gradient(135deg, var(--navy) 0%, #2040b0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.reg-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(212, 144, 10, 0.08) 0%,
      transparent 50%
    );
}
.reg-sec h2 {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.reg-sec > div p {
  color: rgba(255, 255, 255, 0.72);
}
.rbtn {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  border: none;
  padding: 14px 42px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.rbtn:hover {
  background: var(--gold-l);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 144, 10, 0.5);
}
.sbtn {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
  white-space: nowrap;
}
.sbtn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ══ FOOTER ══ */
footer {
 background-image: url('../image/footer.png');
 background-size: contain;
 padding: 60px 0 26px;
 background-repeat: no-repeat;
 background-color: #001b84;
}

.footer-sec{
  background-color: #001565;
}
.ft-logo img {
    width: 200px;
}
footer p.fp {
  color: rgb(255 255 255);
  font-size: 0.84rem;
  line-height: 1.7;
}
footer h6 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  margin-bottom: 20px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  margin-bottom: 8px;
}
footer ul li a {
  color: rgb(255 255 255);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}
footer ul li a:hover {
  color: var(--gold-l);
}
.fcp {
  color: rgb(255 255 255);
  font-size: 0.83rem;
  line-height: 1.75;
}
.soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}
.soc:hover {
  background: var(--gold);
  color: var(--navy);
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}
.fbot p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.76rem;
  margin: 0;
}
.vbadge {
  background: rgba(212, 144, 10, 0.15);
  color: var(--gold-l);
  border: 1px solid rgba(212, 144, 10, 0.3);
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 600;
}

/* ══ SCROLL ANIMATIONS ══ */
.wa {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.wa.in {
  opacity: 1;
  transform: translateY(0);
}
.wl {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.wl.in {
  opacity: 1;
  transform: translateX(0);
}
.wr {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.wr.in {
  opacity: 1;
  transform: translateX(0);
}
.wz {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.wz.in {
  opacity: 1;
  transform: scale(1);
}
.d1 {
  transition-delay: 0.1s !important;
}
.d2 {
  transition-delay: 0.2s !important;
}
.d3 {
  transition-delay: 0.3s !important;
}
.d4 {
  transition-delay: 0.4s !important;
}

/* Swiper_slider starts */

.swiper {
  width: 100%;
  padding: 40px 0;
}

.swiper-slide {
  text-align: center;
  padding: 40px;
  font-size: 20px;
  border-radius: 10px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 15px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    font-weight: 700;
}

/* Swiper_slider ends */

/* ══ MEMBERS SLIDER ══ */
.mem-sec {
  background: #ffffff;
  padding: 60px 0 80px;
}
.team3d-carousel-x9 {
    position: relative;
    width: 100%;
    height: 480px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    position: absolute;
    width: 260px;
    height: 350px;
    transition: all 0.8s ease;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.center {
    transform: translateX(0) scale(1.1);
    z-index: 5;
}

.slide.left-1 {
    transform: translateX(-300px) rotateY(25deg) scale(0.9);
    z-index: 4;
}

.slide.left-2 {
    transform: translateX(-550px) rotateY(35deg) scale(0.8);
    z-index: 3;
}

.slide.right-1 {
    transform: translateX(300px) rotateY(-25deg) scale(0.9);
    z-index: 4;
}

.slide.right-2 {
    transform: translateX(550px) rotateY(-35deg) scale(0.8);
    z-index: 3;
}

.buttons {
    position: absolute;
    bottom: -35px;
    display: flex;
    gap: 20px;
}

.buttons button {
    padding: 10px 15px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: #f5a623;
    color: white;
    font-weight: bold;
}


.regi-box-blue {
    background-color: #5537FF;
    width: 100%;
    height: 300px;
    padding: 20px;
    border-radius: 20px;
    position: relative;
}
.regi-box-blue::before {
    content: "";
    background-image: url(../image/student.png);
    position: absolute;
    left: -25px;
    bottom: 0px;
    width: 40%;
    height: 440px;
    background-size: contain;
    background-repeat: no-repeat;
}
.nav-links-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links-wrap ul li {
    list-style: none;
}
