/* Fonts header.php er <link> diye head e load hoy — @import (druto na) shoriye deya holo */

/* ==== Theme brand color (admin settings theke override hoy) ==== */
:root {
  --lx-primary: #2E63E7;    /* main brand */
  --lx-primary-l: #4F8AF9;  /* lighter */
  --lx-primary-xl: #7FB0FF; /* extra light */
  --lx-primary-d: #1E4FCB;  /* darker (hover) */
}


.lx-topbar {
  font-family: 'Hind Siliguri', sans-serif;
  background: linear-gradient(90deg, #0A1B3D 0%, #12308F 55%, var(--lx-primary) 100%);
  color: #E8EFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 11px 16px;
  font-size: 15.5px;
  letter-spacing: .2px
}

.lx-topbar .lx-hot {
  background: linear-gradient(135deg, var(--lx-primary-l), var(--lx-primary-xl));
  color: #0A1B3D;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase
}

.lx-topbar b {
  color: #fff;
  font-weight: 600
}

.lx-topbar .lx-timer {
  display: flex;
  gap: 6px;
  font-weight: 600
}

.lx-topbar .lx-timer span {
  background: rgba(255, 255, 255, .14);
  padding: 3px 9px;
  border-radius: 5px;
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: center
}

.lx-topbar a.lx-tbtn {
  background: #fff;
  color: #12308F;
  text-decoration: none;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 14.5px;
  transition: .28s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18)
}

.lx-topbar a.lx-tbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25)
}

.lx-topbar .lx-sup {
  opacity: .9
}

@media(max-width:767px) {
  .lx-topbar {
    gap: 10px;
    font-size: 14px
  }

  .lx-topbar .lx-sup {
    display: none
  }
}



.lx-header {
  --nv: #0A1B3D;
  --bl: var(--lx-primary);
  --txt: #122036;
  --mut: #5A6B87;
  font-family: 'Hind Siliguri', sans-serif;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #E3EAF7;
  transition: box-shadow .3s
}

.lx-header.lx-scrolled {
  box-shadow: 0 8px 30px rgba(10, 27, 61, .1)
}

.lx-hwrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 24px
}

.lx-logo {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 27px;
  font-weight: 800;
  color: var(--nv);
  text-decoration: none;
  letter-spacing: -.3px;
  flex-shrink: 0
}

.lx-logo span {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.lx-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 8px
}

.lx-nav a {
  color: var(--txt);
  text-decoration: none;
  font-size: 16.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0
}

.lx-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--lx-primary), var(--lx-primary-xl));
  border-radius: 2px;
  transition: width .3s
}

.lx-nav a:hover::after {
  width: 100%
}

.lx-drop {
  position: relative
}

.lx-drop>a::before {
  content: '▾';
  margin-left: 5px;
  font-size: 12px;
  color: var(--mut)
}

.lx-dmenu {
  position: absolute;
  top: calc(100% + 14px);
  left: -12px;
  background: #fff;
  min-width: 268px;
  border: 1px solid #E7EDF9;
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(10, 27, 61, .16);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s, transform .22s, visibility .22s
}

/* upore choto pointer arrow */
.lx-dmenu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 26px;
  width: 13px;
  height: 13px;
  background: #fff;
  border-left: 1px solid #E7EDF9;
  border-top: 1px solid #E7EDF9;
  transform: rotate(45deg);
  border-radius: 3px 0 0 0
}

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

.lx-dmenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 11px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 500;
  color: var(--txt);
  transition: background .18s, color .18s
}

.lx-dmenu a i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #EDF3FF;
  color: var(--bl);
  border-radius: 10px;
  font-size: 17px;
  transition: background .18s, color .18s, transform .18s
}

.lx-dmenu a:hover {
  background: #F4F7FE;
  color: var(--nv)
}

.lx-dmenu a:hover i {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  color: #fff;
  transform: scale(1.06)
}

/* Sesh item ("সকল কোর্স") — upore choto divider */
.lx-dmenu a:last-child {
  margin-top: 6px;
  padding-top: 13px;
  border-top: 1px solid #EDF2FB;
  border-radius: 0 0 11px 11px;
  font-weight: 700;
  color: var(--bl)
}

.lx-dmenu a::after {
  display: none
}

.lx-search {
  flex: 1;
  max-width: 310px;
  display: flex;
  align-items: center;
  background: #F1F5FD;
  border: 1px solid #E3EAF7;
  border-radius: 10px;
  padding: 10px 15px;
  gap: 9px;
  transition: .25s
}

.lx-search:focus-within {
  border-color: var(--bl);
  box-shadow: 0 0 0 3px rgba(46, 99, 231, .12)
}

.lx-search input {
  border: 0;
  background: none;
  outline: 0;
  width: 100%;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--txt)
}

.lx-hicons {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto
}

.lx-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--nv);
  text-decoration: none;
  transition: .25s
}

.lx-icon:hover {
  background: #EDF3FF;
  color: var(--bl)
}

.lx-icon svg {
  width: 21px;
  height: 21px
}

.lx-badge {
  position: absolute;
  top: 4px;
  right: 3px;
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: grid;
  place-items: center
}

.lx-hbtn {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  transition: .28s;
  white-space: nowrap
}

.lx-hbtn.lx-ghost {
  color: var(--nv);
  border: 1.5px solid #C9D8F2
}

.lx-hbtn.lx-ghost:hover {
  border-color: var(--bl);
  color: var(--bl);
  background: #F3F7FF
}

.lx-hbtn.lx-solid {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  color: #fff;
  box-shadow: 0 8px 20px rgba(46, 99, 231, .32)
}

.lx-hbtn.lx-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(46, 99, 231, .42)
}

.lx-burger {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--nv);
  cursor: pointer
}

@media(max-width:1024px) {

  .lx-nav,
  .lx-search {
    display: none
  }

  .lx-burger {
    display: block;
    margin-left: auto
  }

  .lx-hicons {
    margin-left: 0
  }

  .lx-header.lx-open .lx-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 22px;
    gap: 16px;
    border-bottom: 1px solid #E3EAF7;
    box-shadow: 0 24px 44px rgba(10, 27, 61, .12)
  }

  .lx-dmenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    min-width: 0;
    padding: 6px 0 0 4px;
    display: none
  }

  .lx-dmenu::before {
    display: none
  }

  .lx-dmenu a i {
    width: 32px;
    height: 32px;
    font-size: 15px
  }

  .lx-drop:hover .lx-dmenu {
    display: block
  }

  .lx-hbtn.lx-ghost {
    display: none
  }
}

/* ===== SMALL MOBILE FIX (480px) ===== */
@media(max-width:480px) {
  .lx-hwrap {
    padding: 10px 12px;
    gap: 8px
  }

  .lx-hwrap>* {
    min-width: 0
  }

  .lx-logo {
    font-size: 21px
  }

  .lx-icon {
    width: 36px;
    height: 36px
  }

  .lx-icon svg {
    width: 19px;
    height: 19px
  }

  .lx-hbtn.lx-solid {
    padding: 9px 12px;
    font-size: 14px;
    border-radius: 9px;
    box-shadow: 0 5px 12px rgba(46, 99, 231, .28)
  }

  .lx-burger {
    font-size: 25px;
    padding: 0 2px
  }
}

/* ===== EXTRA SMALL MOBILE FIX (320px - 375px) ===== */
@media(max-width:375px) {
  .lx-hwrap {
    padding: 8px 10px;
    gap: 5px
  }

  .lx-logo {
    font-size: 18px;
    letter-spacing: 0
  }

  .lx-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px
  }

  .lx-icon svg {
    width: 17px;
    height: 17px
  }

  .lx-badge {
    min-width: 15px;
    height: 15px;
    font-size: 9.5px;
    top: 2px;
    right: 1px
  }

  /* Login button: choto screen e shudhu "লগইন" dekhabe */
  .lx-hbtn.lx-solid {
    font-size: 0;
    padding: 8px 12px;
    line-height: 1
  }

  .lx-hbtn.lx-solid::after {
    content: 'লগইন';
    font-size: 13.5px;
    font-weight: 700
  }

  .lx-burger {
    font-size: 23px;
    padding: 0
  }
}



.lx-hero {
  font-family: 'Hind Siliguri', sans-serif;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 90px;
  color: #fff;
  background:
    radial-gradient(1000px 620px at 82% -10%, rgba(79, 138, 249, .42), transparent 62%),
    radial-gradient(760px 520px at -8% 110%, rgba(46, 99, 231, .32), transparent 60%),
    radial-gradient(520px 380px at 55% 118%, rgba(127, 176, 255, .18), transparent 65%),
    linear-gradient(135deg, #060F2C 0%, #0A1B3D 46%, #122A5C 100%)
}

.lx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none
}

.lx-hero-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative
}

.lx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(90deg, rgba(79, 138, 249, .18), rgba(127, 176, 255, .1));
  border: 1px solid rgba(127, 176, 255, .35);
  color: #BAD3FF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .8px;
  padding: 9px 18px;
  border-radius: 32px;
  margin-bottom: 26px
}

.lx-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lx-primary-xl);
  font-style: normal;
  box-shadow: 0 0 12px var(--lx-primary-xl);
  animation: lxPulse 2s infinite
}

@keyframes lxPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

.lx-hero h1 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 56px;
  line-height: 1.24;
  font-weight: 800;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: -.5px
}

.lx-hero h1 .lx-grad {
  background: linear-gradient(92deg, var(--lx-primary-xl) 0%, var(--lx-primary-l) 55%, #9CC2FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.lx-hero p.lx-sub {
  font-size: 20px;
  line-height: 1.8;
  color: #B9C7E4;
  margin: 0 0 36px;
  max-width: 540px
}

.lx-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px
}

.lx-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 12px;
  font-size: 17.5px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s
}

.lx-btn.lx-primary {
  background: linear-gradient(135deg, var(--lx-primary) 0%, var(--lx-primary-l) 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(46, 99, 231, .5)
}

.lx-btn.lx-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(46, 99, 231, .6)
}

.lx-btn.lx-outline {
  border: 1.5px solid rgba(255, 255, 255, .32);
  color: #fff;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(6px)
}

.lx-btn.lx-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--lx-primary-xl)
}

.lx-hstats {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 30px
}

.lx-hstats div {
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, .14)
}

.lx-hstats div:first-child {
  padding-left: 0
}

.lx-hstats div:last-child {
  border: 0
}

.lx-hstats b {
  display: block;
  font-family: 'Noto Serif Bengali', serif;
  font-size: 29px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #BAD3FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.lx-hstats span {
  font-size: 15px;
  color: #8FA3CB
}

.lx-hero-img {
  position: relative;
  z-index: 1
}

/* Soft outer glow */
.lx-hero-img::before {
  content: '';
  position: absolute;
  inset: -34px -18px -14px 6px;
  border-radius: 44px;
  background: radial-gradient(58% 58% at 68% 32%, rgba(79, 138, 249, .55), transparent 70%);
  filter: blur(48px);
  z-index: 0
}

/* Peche offset depth-layer (stacked card feel) */
.lx-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(24px, 26px);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(79, 138, 249, .16), rgba(127, 176, 255, .04));
  border: 1px solid rgba(127, 176, 255, .18);
  z-index: 0
}

/* Gradient-ring frame */
.lx-hero-frame {
  position: relative;
  z-index: 2;
  padding: 10px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(127, 176, 255, .55), rgba(46, 99, 231, .12) 42%, rgba(255, 255, 255, .05));
  box-shadow: 0 40px 90px rgba(3, 10, 30, .55), inset 0 1px 0 rgba(255, 255, 255, .18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px)
}

.lx-hero-frame img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10)
}

/* ---- Hero right-side content: social proof + pill ---- */
/* Hero highlights — chobir niche, image er soman width e center kora (border baire jabe na) */
.lx-hfeats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 26px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16)
}

.lx-hfeats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #C7D6F2;
  white-space: nowrap;
  padding: 3px 16px;
  border-right: 1px solid rgba(255, 255, 255, .15)
}

.lx-hfeats span:last-child {
  border-right: 0
}

.lx-hfeats i {
  color: var(--lx-primary-xl);
  font-size: 16px;
  flex-shrink: 0
}

@keyframes lxFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* reveal animation */
.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }

  .lx-float,
  .lx-eyebrow i {
    animation: none
  }
}

@media(max-width:1024px) {
  .lx-hero-in {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .lx-hero h1 {
    font-size: 43px
  }

  /* Mobile e offset depth-layer choto — beshi peek na kore */
  .lx-hero-img::after {
    transform: translate(14px, 16px)
  }
}

@media(max-width:600px) {
  .lx-hero {
    padding: 60px 16px
  }

  .lx-hero h1 {
    font-size: 33px
  }

  .lx-hero p.lx-sub {
    font-size: 17.5px
  }

  .lx-hstats div {
    padding: 0 18px 16px 0;
    border: 0
  }

  .lx-btn {
    width: 100%;
    justify-content: center
  }

  .lx-hfeats {
    margin-top: 20px;
    padding-top: 18px;
    row-gap: 8px
  }

  .lx-hfeats span {
    font-size: 13px;
    padding: 3px 14px
  }
}



.lx-trust {
  font-family: 'Hind Siliguri', sans-serif;
  padding: 52px 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FE 100%);
  border-bottom: 1px solid #E7EEFA
}

.lx-trust-in {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center
}

.lx-trust p {
  font-size: 14.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7A8AA8;
  margin: 0 0 28px;
  font-weight: 600
}

.lx-tlogos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 54px;
  flex-wrap: wrap
}

.lx-tlogo {
  font-size: 23px;
  font-weight: 700;
  color: #AAB9D4;
  letter-spacing: .5px;
  transition: .3s;
  cursor: default
}

.lx-tlogo:hover {
  color: #12308F;
  transform: translateY(-3px)
}

.lx-tlogo img {
  height: 36px;
  filter: grayscale(1);
  opacity: .7;
  transition: .3s
}

.lx-tlogo img:hover {
  filter: none;
  opacity: 1
}

.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media(max-width:600px) {
  .lx-tlogos {
    gap: 28px
  }

  .lx-tlogo {
    font-size: 18px
  }
}



.lx-cats {
  --nv: #0A1B3D;
  --bl: var(--lx-primary);
  --mut: #5A6B87;
  font-family: 'Hind Siliguri', sans-serif;
  padding: 96px 20px;
  background: linear-gradient(180deg, #F4F7FE 0%, #EDF3FF 100%)
}

.lx-cats-in {
  max-width: 1280px;
  margin: 0 auto
}

.lx-shead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px
}

.lx-shead .lx-tag {
  display: inline-block;
  background: linear-gradient(90deg, #E4EDFF, #EFF5FF);
  border: 1px solid #CFDEFB;
  color: var(--bl);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px
}

.lx-shead h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--nv);
  margin: 18px 0 16px;
  line-height: 1.3
}

.lx-shead p {
  color: var(--mut);
  font-size: 18px;
  line-height: 1.75;
  margin: 0
}

.lx-cgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.lx-ccard {
  background: #fff;
  border: 1px solid #EAF0FB;
  border-radius: 18px;
  padding: 30px 26px 26px;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.22, .61, .36, 1), box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(18, 48, 143, .04)
}

.lx-ccard::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .35s;
  background: radial-gradient(130% 110% at 0 0, rgba(46, 99, 231, .06), transparent 58%)
}

.lx-ccard::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lx-primary), var(--lx-primary-xl));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}

.lx-ccard:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(18, 48, 143, .13);
  border-color: #D9E4FA
}

.lx-ccard:hover::before {
  opacity: 1
}

.lx-ccard:hover::after {
  transform: scaleX(1)
}

.lx-cic {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 18px;
  position: relative;
  transition: transform .35s, background .35s, box-shadow .35s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 18px rgba(46, 99, 231, .12)
}

.lx-ccard:hover .lx-cic {
  transform: translateY(-2px) scale(1.04)
}

/* ---- Icon tile — category menu (.lx-dmenu a i) er moto ek style ---- */
.lx-cic {
  background: #DCE8FF;
  color: var(--lx-primary)
}

.lx-ccard:hover .lx-cic {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  box-shadow: 0 12px 26px rgba(46, 99, 231, .30);
  color: #fff
}

.lx-ccard h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--nv);
  margin: 0 0 6px;
  position: relative
}

.lx-ccard span {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #3D4E6B;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F1F5FD;
  padding: 7px 14px;
  border-radius: 100px
}

.lx-ccard span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lx-primary);
  box-shadow: 0 0 0 3px rgba(46, 99, 231, .14);
  flex-shrink: 0
}

.lx-ccard .lx-arr {
  position: absolute;
  right: 20px;
  bottom: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #EEF3FF;
  color: var(--bl);
  font-size: 15px;
  opacity: 0;
  transform: translateX(-6px);
  transition: .35s
}

.lx-ccard:hover .lx-arr {
  opacity: 1;
  transform: translateX(0);
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  color: #fff
}

.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media(max-width:1024px) {
  .lx-cgrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .lx-shead h2 {
    font-size: 34px
  }
}

@media(max-width:560px) {
  .lx-cgrid {
    grid-template-columns: 1fr
  }

  .lx-shead h2 {
    font-size: 28px
  }

  .lx-cats {
    padding: 68px 16px
  }
}



.lx-courses {
  --nv: #0A1B3D;
  --bl: var(--lx-primary);
  --mut: #5A6B87;
  font-family: 'Hind Siliguri', sans-serif;
  background: #fff;
  padding: 96px 20px
}

.lx-courses-in {
  max-width: 1280px;
  margin: 0 auto
}

.lx-chead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap
}

.lx-chead .lx-tag {
  display: inline-block;
  background: linear-gradient(90deg, #E4EDFF, #EFF5FF);
  border: 1px solid #CFDEFB;
  color: var(--bl);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px
}

.lx-chead h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--nv);
  margin: 16px 0 0;
  line-height: 1.3
}

.lx-viewall {
  color: var(--bl);
  font-weight: 700;
  text-decoration: none;
  font-size: 16.5px;
  border-bottom: 2.5px solid;
  border-image: linear-gradient(90deg, var(--lx-primary), var(--lx-primary-xl)) 1;
  padding-bottom: 4px;
  transition: .25s
}

.lx-viewall:hover {
  color: #12308F
}

.lx-cogrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.lx-co {
  background: #fff;
  border: 1px solid #E3EAF7;
  border-radius: 18px;
  overflow: hidden;
  transition: .35s;
  position: relative
}

.lx-co:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(18, 48, 143, .16);
  border-color: #CFDEFB
}

.lx-cothumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #EDF3FF
}

.lx-cothumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s
}

.lx-co:hover .lx-cothumb img {
  transform: scale(1.07)
}

.lx-cobadges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  z-index: 2
}

.lx-cb {
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 5px;
  letter-spacing: .5px
}

.lx-cb.lx-sale {
  background: linear-gradient(135deg, #E7413A, #F06A4E);
  color: #fff
}

.lx-cb.lx-best {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  color: #fff
}

.lx-cb.lx-new {
  background: #0A1B3D;
  color: #fff
}

.lx-wish {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 17px;
  box-shadow: 0 8px 18px rgba(3, 10, 30, .2);
  transition: .25s;
  color: #E7413A
}

.lx-wish:hover {
  transform: scale(1.14)
}

.lx-quick {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  background: linear-gradient(135deg, rgba(10, 27, 61, .94), rgba(18, 48, 143, .94));
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition: .32s
}

.lx-co:hover .lx-quick {
  opacity: 1;
  transform: translateY(0)
}

.lx-cobody {
  padding: 22px 22px 24px
}

.lx-cocat {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--bl);
  letter-spacing: 1px;
  text-transform: uppercase
}

.lx-cobody h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--nv);
  margin: 9px 0 11px;
  line-height: 1.45
}

.lx-cobody h3 a {
  color: inherit;
  text-decoration: none;
  transition: .22s
}

.lx-cobody h3 a:hover {
  color: var(--bl)
}

.lx-cometa {
  display: flex;
  gap: 15px;
  font-size: 14.5px;
  color: var(--mut);
  margin-bottom: 14px;
  flex-wrap: wrap
}

.lx-corating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 10px;
  font-size: 13.5px;
  color: var(--mut)
}

.lx-corating .lx-cstars {
  color: #F59E0B;
  letter-spacing: 1px;
  font-size: 14px
}

.lx-corating b {
  color: var(--nv);
  font-weight: 700
}

.lx-coinst {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px
}

.lx-coinst-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0
}

.lx-coinst-txt small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--bl);
  opacity: .85
}

.lx-coinst-txt span {
  font-size: 15px;
  font-weight: 700;
  color: var(--nv);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.lx-coavatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(10, 27, 61, .18)
}

.lx-coavatar-ph {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  line-height: 1
}

.lx-cofoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #EDF2FB;
  padding-top: 16px;
  margin-top: 16px;
  gap: 10px
}

.lx-coprice b {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 23px;
  color: var(--nv)
}

.lx-coprice s {
  color: #9AA9C4;
  font-size: 15px;
  margin-left: 8px
}

.lx-cart-btn {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  color: #fff;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: .28s;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(46, 99, 231, .28)
}

.lx-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(46, 99, 231, .4)
}

.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media(max-width:1200px) {
  .lx-cogrid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:1024px) {
  .lx-cogrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .lx-chead h2 {
    font-size: 34px
  }
}

@media(max-width:620px) {
  .lx-cogrid {
    grid-template-columns: 1fr
  }

  .lx-courses {
    padding: 68px 16px
  }

  .lx-chead h2 {
    font-size: 28px
  }
}



.lx-why {
  font-family: 'Hind Siliguri', sans-serif;
  padding: 96px 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 480px at 8% 0%, rgba(79, 138, 249, .22), transparent 60%),
    radial-gradient(600px 420px at 100% 100%, rgba(46, 99, 231, .2), transparent 60%),
    linear-gradient(135deg, #060F2C 0%, #0A1B3D 50%, #122A5C 100%)
}

.lx-why-in {
  max-width: 1280px;
  margin: 0 auto;
  position: relative
}

.lx-why .lx-shead {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 58px
}

.lx-why .lx-tag {
  display: inline-block;
  background: rgba(79, 138, 249, .14);
  border: 1px solid rgba(127, 176, 255, .35);
  color: #BAD3FF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px
}

.lx-why h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin: 18px 0 16px;
  line-height: 1.3
}

.lx-why .lx-shead p {
  color: #A9BBDE;
  font-size: 18px;
  line-height: 1.75;
  margin: 0
}

.lx-why .bi {
  color: #fff;
}

.lx-wgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.lx-wbox {
  background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  padding: 30px 24px;
  backdrop-filter: blur(8px);
  transition: .35s
}

.lx-wbox:hover {
  background: linear-gradient(160deg, rgba(79, 138, 249, .2), rgba(46, 99, 231, .08));
  border-color: rgba(127, 176, 255, .5);
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(3, 10, 30, .4)
}

.lx-wic {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(79, 138, 249, .28), rgba(127, 176, 255, .12));
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px
}

.lx-wbox h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px
}

.lx-wbox p {
  color: #A9BBDE;
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0
}

.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media(max-width:1024px) {
  .lx-wgrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .lx-why h2 {
    font-size: 34px
  }
}

@media(max-width:560px) {
  .lx-wgrid {
    grid-template-columns: 1fr
  }

  .lx-why {
    padding: 68px 16px
  }

  .lx-why h2 {
    font-size: 28px
  }
}



.lx-steps {
  --nv: #0A1B3D;
  --bl: var(--lx-primary);
  --mut: #5A6B87;
  font-family: 'Hind Siliguri', sans-serif;
  background: #fff;
  padding: 96px 20px
}

.lx-steps .bi {
  color: var(--lx-primary);
}



.lx-steps-in {
  max-width: 1280px;
  margin: 0 auto
}

.lx-steps .lx-shead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 62px
}

.lx-steps .lx-tag {
  display: inline-block;
  background: linear-gradient(90deg, #E4EDFF, #EFF5FF);
  border: 1px solid #CFDEFB;
  color: var(--bl);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px
}

.lx-steps h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--nv);
  margin: 18px 0 0;
  line-height: 1.3
}

.lx-sgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative
}

.lx-sgrid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #BFD4FA 20%, #BFD4FA 80%, transparent)
}

.lx-step {
  text-align: center;
  padding: 0 20px;
  position: relative
}

.lx-snum {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(160deg, #F0F6FF, #E4EDFF);
  border: 2px solid #D6E3FB;
  display: grid;
  place-items: center;
  font-size: 32px;
  position: relative;
  transition: .35s
}

.lx-step:hover .lx-snum {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  border-color: var(--lx-primary-l);
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(46, 99, 231, .35)
}

.lx-step:hover .bi {
  color: #fff;
}

.lx-snum::after {
  content: attr(data-n);
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A1B3D, #122A5C);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  display: grid;
  place-items: center
}

.lx-step h3 {
  font-size: 19.5px;
  font-weight: 700;
  color: var(--nv);
  margin: 0 0 9px
}

.lx-step p {
  font-size: 15.5px;
  color: var(--mut);
  line-height: 1.7;
  margin: 0
}

.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media(max-width:900px) {
  .lx-sgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0
  }

  .lx-sgrid::before {
    display: none
  }

  .lx-steps h2 {
    font-size: 34px
  }
}

@media(max-width:560px) {
  .lx-sgrid {
    grid-template-columns: 1fr
  }

  .lx-steps {
    padding: 68px 16px
  }

  .lx-steps h2 {
    font-size: 28px
  }
}



.lx-inst {
  --nv: #0A1B3D;
  --bl: var(--lx-primary);
  --mut: #5A6B87;
  font-family: 'Hind Siliguri', sans-serif;
  padding: 96px 20px;
  background: linear-gradient(180deg, #F4F7FE 0%, #FFFFFF 100%)
}

.lx-inst-in {
  max-width: 1280px;
  margin: 0 auto
}

.lx-inst .lx-shead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px
}

.lx-inst .lx-tag {
  display: inline-block;
  background: linear-gradient(90deg, #E4EDFF, #EFF5FF);
  border: 1px solid #CFDEFB;
  color: var(--bl);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px
}

.lx-inst h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--nv);
  margin: 18px 0 0;
  line-height: 1.3
}

.lx-igrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px
}

.lx-icard {
  position: relative;
  background: #fff;
  border: 1px solid #E7EDF9;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22, .61, .36, 1), box-shadow .35s, border-color .35s;
  box-shadow: 0 2px 10px rgba(18, 48, 143, .05)
}

.lx-icard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 3;
  background: linear-gradient(90deg, var(--lx-primary), var(--lx-primary-xl));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}

.lx-icard:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(18, 48, 143, .18);
  border-color: #CFDEFB
}

.lx-icard:hover::before {
  transform: scaleX(1)
}

.lx-iphoto {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #EDF3FF
}

.lx-iphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s
}

.lx-iphoto::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(10, 27, 61, .4));
  opacity: .5;
  transition: opacity .35s;
  pointer-events: none
}

.lx-icard:hover .lx-iphoto img {
  transform: scale(1.06)
}

.lx-icard:hover .lx-iphoto::after {
  opacity: .82
}

.lx-icourse {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(4px);
  color: var(--lx-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(10, 27, 61, .14)
}

.lx-ibody {
  padding: 20px 20px 24px;
  text-align: center
}

.lx-ibody h3 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--nv);
  margin: 0 0 9px;
  line-height: 1.35
}

.lx-ibody .lx-prof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--lx-primary);
  background: #EDF3FF;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: .2px
}

.lx-ibody .lx-prof::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lx-primary)
}

.lx-ibio {
  font-size: 14px;
  color: var(--mut);
  line-height: 1.6;
  margin: 14px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.lx-icontact {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #EDF2FB
}

.lx-iline {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--lx-primary);
  background: #F1F5FD;
  text-decoration: none;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s
}

.lx-iline svg {
  flex-shrink: 0
}

.lx-iline:hover {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(46, 99, 231, .3)
}

.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media(max-width:1024px) {
  .lx-igrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .lx-inst h2 {
    font-size: 34px
  }
}

@media(max-width:560px) {
  .lx-igrid {
    grid-template-columns: 1fr
  }

  .lx-inst {
    padding: 68px 16px
  }

  .lx-inst h2 {
    font-size: 28px
  }
}



.lx-rev {
  --nv: #0A1B3D;
  --bl: var(--lx-primary);
  --mut: #5A6B87;
  font-family: 'Hind Siliguri', sans-serif;
  background: #fff;
  padding: 96px 20px
}

.lx-rev-in {
  max-width: 940px;
  margin: 0 auto;
  text-align: center
}

.lx-rev .lx-tag {
  display: inline-block;
  background: linear-gradient(90deg, #E4EDFF, #EFF5FF);
  border: 1px solid #CFDEFB;
  color: var(--bl);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px
}

.lx-rev h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--nv);
  margin: 18px 0 48px;
  line-height: 1.3
}

.lx-slider {
  position: relative;
  overflow: hidden
}

.lx-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1)
}

.lx-slide {
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box
}

.lx-rcard {
  background: linear-gradient(160deg, #F4F7FE, #EDF3FF);
  border: 1px solid #E3EAF7;
  border-radius: 20px;
  padding: 48px 52px;
  position: relative
}

.lx-rcard::before {
  content: '“';
  position: absolute;
  top: 14px;
  left: 30px;
  font-family: 'Noto Serif Bengali', serif;
  font-size: 90px;
  line-height: 1;
  color: rgba(46, 99, 231, .14)
}

.lx-rstars {
  color: #F59E0B;
  font-size: 21px;
  letter-spacing: 3px;
  margin-bottom: 20px
}

.lx-rtext {
  font-size: 20px;
  line-height: 1.85;
  color: #22334F;
  margin: 0 0 30px;
  font-weight: 500
}

.lx-ruser {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px
}

.lx-ruser img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2.5px var(--lx-primary-l)
}

.lx-ruser div {
  text-align: left
}

.lx-ruser b {
  display: block;
  color: var(--nv);
  font-size: 17.5px
}

.lx-ruser span {
  font-size: 14.5px;
  color: var(--mut)
}

.lx-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 32px
}

.lx-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD9F3;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: .3s
}

.lx-dot.lx-on2 {
  background: linear-gradient(90deg, var(--lx-primary), var(--lx-primary-l));
  width: 30px;
  border-radius: 6px
}

.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media(max-width:600px) {
  .lx-rcard {
    padding: 36px 24px
  }

  .lx-rtext {
    font-size: 17px
  }

  .lx-rev h2 {
    font-size: 28px
  }

  .lx-rev {
    padding: 68px 16px
  }
}



.lx-stats {
  font-family: 'Hind Siliguri', sans-serif;
  padding: 76px 20px;
  background:
    radial-gradient(700px 380px at 92% 100%, rgba(79, 138, 249, .24), transparent 60%),
    radial-gradient(500px 320px at 5% 0%, rgba(46, 99, 231, .2), transparent 60%),
    linear-gradient(120deg, #060F2C 0%, #0A1B3D 55%, #12308F 100%)
}

.lx-stats-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  text-align: center
}

.lx-stat b {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 46px;
  font-weight: 800;
  display: block;
  line-height: 1.1;
  background: linear-gradient(90deg, #FFFFFF, #BAD3FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.lx-stat b i {
  font-style: normal;
  -webkit-text-fill-color: var(--lx-primary-xl)
}

.lx-stat span {
  color: #A9BBDE;
  font-size: 16px;
  display: block;
  margin-top: 9px
}

.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media(max-width:1024px) {
  .lx-stats-in {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 16px
  }
}

@media(max-width:600px) {
  .lx-stats-in {
    grid-template-columns: repeat(2, 1fr)
  }

  .lx-stat b {
    font-size: 34px
  }
}



.lx-faq {
  --nv: #0A1B3D;
  --bl: var(--lx-primary);
  --mut: #5A6B87;
  font-family: 'Hind Siliguri', sans-serif;
  padding: 96px 20px;
  background: linear-gradient(180deg, #F4F7FE 0%, #EDF3FF 100%)
}

.lx-faq-in {
  max-width: 860px;
  margin: 0 auto
}

.lx-faq .lx-shead {
  text-align: center;
  margin-bottom: 50px
}

.lx-faq .lx-tag {
  display: inline-block;
  background: linear-gradient(90deg, #E4EDFF, #EFF5FF);
  border: 1px solid #CFDEFB;
  color: var(--bl);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px
}

.lx-faq h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--nv);
  margin: 18px 0 0;
  line-height: 1.3
}

.lx-qa {
  background: #fff;
  border: 1px solid #E3EAF7;
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: .3s
}

.lx-qa.lx-open {
  box-shadow: 0 16px 38px rgba(18, 48, 143, .11);
  border-color: #BFD4FA
}

.lx-q {
  width: 100%;
  background: none;
  border: 0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 18px;
  font-weight: 700;
  color: var(--nv);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.lx-q i {
  font-style: normal;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #E4EDFF, #F0F6FF);
  color: var(--bl);
  display: grid;
  place-items: center;
  font-size: 17px;
  transition: .3s
}

.lx-qa.lx-open .lx-q i {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  color: #fff;
  transform: rotate(45deg)
}

.lx-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.lx-a p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--mut)
}

.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media(max-width:600px) {
  .lx-faq h2 {
    font-size: 28px
  }

  .lx-faq {
    padding: 68px 16px
  }

  .lx-q {
    font-size: 16.5px;
    padding: 19px 20px
  }
}



.lx-news {
  font-family: 'Hind Siliguri', sans-serif;
  background: #fff;
  padding: 86px 20px
}

.lx-news-in {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 26px;
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(560px 340px at 100% 0%, rgba(79, 138, 249, .32), transparent 60%),
    radial-gradient(420px 300px at 0% 100%, rgba(46, 99, 231, .26), transparent 60%),
    linear-gradient(135deg, #060F2C 0%, #0A1B3D 50%, #12308F 100%)
}

.lx-news-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  position: relative
}

.lx-news h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.38
}

.lx-news p {
  color: #A9BBDE;
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 28px
}

.lx-nform {
  display: flex;
  gap: 11px
}

.lx-nform input {
  flex: 1;
  padding: 17px 20px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font-family: inherit;
  font-size: 16.5px;
  outline: 0;
  transition: .25s
}

.lx-nform input::placeholder {
  color: #8FA3CB
}

.lx-nform input:focus {
  border-color: var(--lx-primary-xl);
  box-shadow: 0 0 0 3px rgba(127, 176, 255, .2)
}

.lx-nform button {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  color: #fff;
  border: 0;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 700;
  padding: 17px 28px;
  border-radius: 11px;
  cursor: pointer;
  transition: .28s;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(46, 99, 231, .45)
}

.lx-nform button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(46, 99, 231, .55)
}

.lx-nnote {
  font-size: 14px;
  color: #7E92BC;
  margin-top: 14px
}

.lx-gitems {
  display: grid;
  gap: 15px
}

.lx-gitem {
  display: flex;
  gap: 15px;
  align-items: center;
  border-radius: 14px;
  padding: 17px 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  transition: .3s
}

.lx-gitem:hover {
  border-color: rgba(127, 176, 255, .45);
  transform: translateX(5px)
}

.lx-gic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(79, 138, 249, .3), rgba(127, 176, 255, .12));
  display: grid;
  place-items: center
}

.lx-gitem b {
  color: #fff;
  font-size: 16.5px;
  display: block
}

.lx-gitem span {
  color: #A9BBDE;
  font-size: 14.5px
}

.lxr {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1)
}

.lxr.lx-on {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .lxr {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media(max-width:900px) {
  .lx-news-grid {
    grid-template-columns: 1fr
  }

  .lx-news-in {
    padding: 46px 30px
  }
}

@media(max-width:560px) {
  .lx-nform {
    flex-direction: column
  }

  .lx-news h2 {
    font-size: 26px
  }

  .lx-news {
    padding: 60px 16px
  }
}



.lx-footer {
  font-family: 'Hind Siliguri', sans-serif;
  color: #A9BBDE;
  padding: 76px 20px 0;
  background:
    radial-gradient(700px 400px at 88% 0%, rgba(79, 138, 249, .16), transparent 60%),
    linear-gradient(180deg, #081536 0%, #060F2C 100%)
}

.lx-f-in {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center
}

.lx-flogo {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  text-decoration: none
}

.lx-flogo span {
  background: linear-gradient(135deg, var(--lx-primary-l), var(--lx-primary-xl));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.lx-fabout {
  font-size: 16.5px;
  line-height: 1.85;
  margin: 20px auto 30px;
  max-width: 560px
}

.lx-fsocial {
  display: flex;
  gap: 11px;
  justify-content: center;
  margin-bottom: 38px
}

.lx-fsocial a {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: .28s
}

.lx-fsocial a:hover {
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(46, 99, 231, .4)
}

.lx-fcontact {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  font-size: 15.5px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .09)
}

.lx-fcontact div {
  display: flex;
  align-items: center;
  gap: 9px
}

.lx-fcontact i {
  font-style: normal;
  color: var(--lx-primary-xl)
}

.lx-fbar {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap
}

.lx-fpay {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center
}

.lx-fpay span {
  background: #fff;
  color: #0A1B3D;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 6px
}

.lx-fsec {
  display: flex;
  gap: 16px;
  font-size: 14px
}

.lx-fsec b {
  color: #C4D2EE;
  font-weight: 600
}

.lx-fcopy {
  font-size: 14.5px;
  padding: 20px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, .09)
}

.lx-fcopy a {
  color: var(--lx-primary-xl);
  text-decoration: none
}

.lx-flinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  padding: 0 0 26px;
  font-size: 14px
}

.lx-flinks a {
  color: #A9BBDE;
  text-decoration: none;
  transition: color .2s
}

.lx-flinks a:hover {
  color: #fff
}

@media(max-width:600px) {
  .lx-footer {
    padding: 58px 16px 0
  }

  .lx-fcontact {
    gap: 14px;
    flex-direction: column;
    align-items: center
  }

  .lx-fbar {
    justify-content: center
  }
}

/* ===== PAGE HERO (about/contact/courses) ===== */
.lx-phero {
  font-family: 'Hind Siliguri', sans-serif;
  text-align: center;
  padding: 80px 20px 70px;
  color: #fff;
  background: radial-gradient(900px 520px at 80% -10%, rgba(79, 138, 249, .4), transparent 62%),
    radial-gradient(680px 460px at -5% 110%, rgba(46, 99, 231, .3), transparent 60%),
    linear-gradient(135deg, #060F2C 0%, #0A1B3D 46%, #122A5C 100%)
}

.lx-phero-in {
  max-width: 760px;
  margin: 0 auto
}

.lx-phero h1 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.28;
  margin: 0 0 16px;
  color: #fff
}

.lx-phero p {
  font-size: 18.5px;
  line-height: 1.8;
  color: #B9C7E4;
  margin: 0
}

@media(max-width:600px) {
  .lx-phero {
    padding: 54px 16px 48px
  }

  .lx-phero h1 {
    font-size: 30px
  }

  .lx-phero p {
    font-size: 16px
  }
}

/* ===== ABOUT ===== */
.lx-about {
  font-family: 'Hind Siliguri', sans-serif;
  background: #fff;
  padding: 90px 20px
}

.lx-about-in {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center
}

.lx-about-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(10, 27, 61, .2)
}

.lx-about .lx-tag {
  display: inline-block;
  background: linear-gradient(90deg, #E4EDFF, #EFF5FF);
  border: 1px solid #CFDEFB;
  color: var(--lx-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px
}

.lx-about h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 33px;
  font-weight: 800;
  color: #0A1B3D;
  margin: 18px 0 16px;
  line-height: 1.35
}

.lx-about p {
  color: #5A6B87;
  font-size: 17px;
  line-height: 1.85;
  margin: 0 0 16px
}

.lx-about-stats {
  display: flex;
  border-top: 1px solid #E3EAF7;
  padding-top: 22px;
  margin-top: 8px
}

.lx-about-stats div {
  padding: 0 26px;
  border-right: 1px solid #E3EAF7
}

.lx-about-stats div:first-child {
  padding-left: 0
}

.lx-about-stats div:last-child {
  border: 0
}

.lx-about-stats b {
  display: block;
  font-family: 'Noto Serif Bengali', serif;
  font-size: 25px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--lx-primary), var(--lx-primary-l));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.lx-about-stats span {
  font-size: 14.5px;
  color: #5A6B87
}

@media(max-width:900px) {
  .lx-about-in {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .lx-about h2 {
    font-size: 27px
  }

  .lx-about {
    padding: 64px 16px
  }
}

/* ===== MISSION ===== */
.lx-mission {
  font-family: 'Hind Siliguri', sans-serif;
  padding: 0 20px 90px;
  background: #fff
}

.lx-mission-in {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.lx-mcard {
  background: linear-gradient(160deg, #F4F7FE, #EDF3FF);
  border: 1px solid #E3EAF7;
  border-radius: 16px;
  padding: 32px 26px;
  transition: .35s
}

.lx-mcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(18, 48, 143, .13);
  border-color: #CFDEFB
}

.lx-mic {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
  color: #fff
}

.lx-mcard h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0A1B3D;
  margin: 0 0 10px
}

.lx-mcard p {
  color: #5A6B87;
  font-size: 16px;
  line-height: 1.75;
  margin: 0
}

@media(max-width:900px) {
  .lx-mission-in {
    grid-template-columns: 1fr
  }

  .lx-mission {
    padding-bottom: 64px
  }
}

/* ===== CONTACT ===== */
.lx-contact {
  font-family: 'Hind Siliguri', sans-serif;
  background: linear-gradient(180deg, #F4F7FE 0%, #fff 100%);
  padding: 90px 20px
}

.lx-contact-in {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start
}

.lx-cinfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.lx-cibox {
  background: #fff;
  border: 1px solid #E3EAF7;
  border-radius: 16px;
  padding: 26px 22px;
  transition: .35s
}

.lx-cibox:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(18, 48, 143, .12);
  border-color: #CFDEFB
}

.lx-cibox h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: #0A1B3D;
  margin: 0 0 7px
}

.lx-cibox p {
  color: #5A6B87;
  font-size: 15px;
  line-height: 1.7;
  margin: 0
}

.lx-cibox small {
  color: #8FA3CB;
  font-size: 13px
}

.lx-cform {
  background: #fff;
  border: 1px solid #E3EAF7;
  border-radius: 20px;
  padding: 40px 38px;
  box-shadow: 0 24px 56px rgba(18, 48, 143, .09)
}

.lx-cform h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 26px;
  font-weight: 800;
  color: #0A1B3D;
  margin: 0 0 22px
}

.lx-cform input,
.lx-cform textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 16px;
  color: #122036;
  background: #F4F7FE;
  border: 1px solid #E3EAF7;
  border-radius: 11px;
  padding: 15px 17px;
  margin-bottom: 15px;
  outline: 0;
  transition: .25s;
  resize: vertical
}

.lx-cform input:focus,
.lx-cform textarea:focus {
  border-color: var(--lx-primary);
  box-shadow: 0 0 0 3px rgba(46, 99, 231, .12);
  background: #fff
}

.lx-frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px
}

.lx-cform .lx-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  justify-content: center;
  font-size: 17px
}

.lx-cok {
  background: linear-gradient(90deg, #E8F8EE, #F0FBF4);
  border: 1px solid #BEE8CD;
  color: #1E7E43;
  border-radius: 12px;
  padding: 22px;
  font-size: 17px;
  font-weight: 600;
  text-align: center
}

.lx-cerr {
  background: #FFF3F1;
  border: 1px solid #F5C6C0;
  color: #C0392B;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  margin-bottom: 16px
}

@media(max-width:900px) {
  .lx-contact-in {
    grid-template-columns: 1fr
  }

  .lx-contact {
    padding: 64px 16px
  }

  .lx-cform {
    padding: 28px 22px
  }
}

@media(max-width:560px) {
  .lx-frow {
    grid-template-columns: 1fr
  }

  .lx-cinfo {
    grid-template-columns: 1fr
  }
}

/* ===== wish anchor ===== */
a.lx-wish {
  text-decoration: none;
  line-height: 1
}

a.lx-wish.lx-wished {
  color: #E7413A;
  background: #FFE9E7
}

/* ===== NO-JS SAFETY ===== */
body:not(.lx-js) .lxr {
  opacity: 1 !important;
  transform: none !important
}

/* ===== BACKEND (Bootstrap) PAGE COLOR SYNC =====
   Bhitorer page gulo (course details, dashboard, login...) Bootstrap e —
   ei override diye segulo o amader blue palette e chole ashbe */
:root {
  --primary: #0A1B3D !important;
  --primary-dark: #060F2C !important;
  --primary-light: #12308F !important;
  --accent: var(--lx-primary) !important;
  --accent-hover: #1E4FD1 !important
}


/* ===== DYNAMIC LOGO IMAGE ===== */
.lx-logo-img {
  max-height: 46px;
  max-width: 190px;
  display: block;
  object-fit: contain
}

@media(max-width:960px) {
  .lx-logo-img {
    max-height: 38px;
    max-width: 150px
  }
}

.lx-flogo-img {
  max-height: 52px;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1)
}

/* ===== SALE BADGE + OLD PRICE ===== */
.lx-cb.lx-sale {
  background: linear-gradient(90deg, #E7413A, #F2703A);
  color: #fff
}

.lx-coprice s {
  color: #9AA9C7;
  font-size: 14.5px;
  font-weight: 500;
  margin-left: 8px
}

/* ===== BACK TO TOP ===== */
.lx-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-l));
  box-shadow: 0 10px 26px rgba(46, 99, 231, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 999
}

.lx-top.lx-top-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.lx-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(46, 99, 231, .5)
}

@media(max-width:600px) {
  .lx-top {
    right: 14px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    font-size: 19px
  }
}


/* ===== ONLINE / OFFLINE TYPE BADGE ===== */
.lx-cb.lx-type-on {
  background: rgba(46, 99, 231, .92);
  color: #fff
}

.lx-cb.lx-type-off {
  background: rgba(242, 112, 58, .95);
  color: #fff
}

/* ================================================================
   Eyebrow / section badges — background nei, niche partial mota border
   ================================================================ */
.lx-eyebrow,
.lx-shead .lx-tag,
.lx-chead .lx-tag,
.lx-why .lx-tag,
.lx-steps .lx-tag,
.lx-inst .lx-tag,
.lx-rev .lx-tag,
.lx-faq .lx-tag,
.lx-about .lx-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .2px;
  text-transform: none;
  background: none;
  border: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: 0 0 11px;
  border-radius: 0;
  line-height: 1.3;
}

/* Niche partial mota border (underline accent) */
.lx-eyebrow::after,
.lx-shead .lx-tag::after,
.lx-chead .lx-tag::after,
.lx-why .lx-tag::after,
.lx-steps .lx-tag::after,
.lx-inst .lx-tag::after,
.lx-rev .lx-tag::after,
.lx-faq .lx-tag::after,
.lx-about .lx-tag::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 4px;
  border-radius: 4px;
}

/* Light-background sections — dark blue text + brand underline */
.lx-shead .lx-tag,
.lx-chead .lx-tag,
.lx-steps .lx-tag,
.lx-inst .lx-tag,
.lx-rev .lx-tag,
.lx-faq .lx-tag,
.lx-about .lx-tag {
  color: #23439E;
}

.lx-shead .lx-tag::after,
.lx-chead .lx-tag::after,
.lx-steps .lx-tag::after,
.lx-inst .lx-tag::after,
.lx-rev .lx-tag::after,
.lx-faq .lx-tag::after,
.lx-about .lx-tag::after {
  background: linear-gradient(90deg, var(--lx-primary), var(--lx-primary-xl));
}

/* Dark-background sections (hero eyebrow + why-us) — light text + glowing underline */
.lx-eyebrow,
.lx-why .lx-tag {
  color: #DCE8FF;
}

.lx-eyebrow::after,
.lx-why .lx-tag::after {
  background: linear-gradient(90deg, var(--lx-primary-xl), #B9D3FF);
  box-shadow: 0 0 12px rgba(127, 176, 255, .55);
}

/* Section heading badge gula majhe thake — tader underline o majkhane */
.lx-shead .lx-tag::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Icon/dot je badge e ache (hero eyebrow er dot) — bad */
.lx-eyebrow i {
  display: none;
}