*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
  max-width: 100%;
  height: auto;
}
@font-face {
    font-family: poppins;
    src: url(../font/poppins.ttf);
}
@font-face {
    font-family: hindsiligur;
    src: url(../font/hindsiligur.ttf);
}
:root{
    --main-color: #090027;
    --container: 1180px;
    --nav-height: 82px;
    --nav-surface: rgba(255, 255, 255, 0.9);
    --nav-border: rgba(29, 79, 191, 0.16);
    --nav-text: #223d72;
    --bg-deep: #07152d;
    --bg-deeper: #020b18;
    --bg-glow: #260497;
    --bg-glow-soft: rgba(84, 150, 255, 0.12);
    --bg-aurora-1: rgba(61, 112, 214, 0.12);
    --bg-aurora-2: rgba(22, 74, 170, 0.1);
    --bg-aurora-3: rgba(82, 148, 228, 0.08);
}
html{
  min-height: 100%;
}
body{
  min-height: 100vh;
  position: relative;
  font-family: hindsiligur;
  background:
    radial-gradient(circle at top left, rgba(46, 102, 212, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(17, 66, 160, 0.1), transparent 26%),
    linear-gradient(135deg, #010611 0%, var(--bg-deeper) 22%, var(--bg-deep) 58%, #0a1d3f 100%);
  color: #eef4ff;
  overflow-x: hidden;
}
body.about-modal-open {
  overflow: hidden;
}
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(108, 177, 255, 0.9) rgba(6, 12, 39, 0.88);
}
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(4, 8, 31, 0.96), rgba(8, 19, 54, 0.94));
  border-left: 1px solid rgba(135, 194, 255, 0.08);
}
body::-webkit-scrollbar-thumb {
  background:
    linear-gradient(180deg, rgba(133, 199, 255, 0.95), rgba(45, 101, 255, 0.82));
  border-radius: 999px;
  border: 2px solid rgba(5, 12, 35, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 0 16px rgba(88, 151, 255, 0.18);
}
body::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(167, 219, 255, 0.98), rgba(64, 126, 255, 0.9));
}
body::-webkit-scrollbar-corner {
  background: rgba(4, 8, 31, 0.96);
}
body.custom-cursor-enabled,
body.custom-cursor-enabled a,
body.custom-cursor-enabled button,
body.custom-cursor-enabled input,
body.custom-cursor-enabled textarea,
body.custom-cursor-enabled select,
body.custom-cursor-enabled label {
  cursor: none;
}
.main_body{
  position: relative;
  z-index: 0;
  min-height: 100vh;
}
.cursor-dot,
.cursor-ring,
.cursor-aura{
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition:
    opacity 0.25s ease,
    width 0.28s ease,
    height 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease,
    opacity 0.28s ease;
}
.cursor-dot{
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #8ec5ff);
  box-shadow:
    0 0 14px rgba(115, 185, 255, 0.7),
    0 0 28px rgba(64, 139, 255, 0.35);
}
.cursor-ring{
  width: 42px;
  height: 42px;
  margin-left: -21px;
  margin-top: -21px;
  border-radius: 50%;
  border: 1px solid rgba(152, 205, 255, 0.75);
  background: radial-gradient(circle, rgba(129, 193, 255, 0.14), rgba(129, 193, 255, 0.02) 62%, transparent 70%);
  box-shadow:
    inset 0 0 18px rgba(143, 204, 255, 0.12),
    0 0 24px rgba(56, 133, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform-origin: center;
}
.cursor-ring::before{
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0) 0deg,
    rgba(165, 214, 255, 0.95) 52deg,
    rgba(70, 143, 255, 0.28) 140deg,
    rgba(255, 255, 255, 0) 220deg,
    rgba(165, 214, 255, 0.9) 320deg,
    rgba(255, 255, 255, 0) 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 61%);
  mask: radial-gradient(circle, transparent 58%, #000 61%);
  animation: cursorOrbit 3.6s linear infinite;
}
.cursor-aura{
  width: 96px;
  height: 96px;
  margin-left: -48px;
  margin-top: -48px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(92, 173, 255, 0.16), rgba(92, 173, 255, 0.04) 44%, transparent 72%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.1), rgba(91, 156, 255, 0.02) 48%, rgba(255, 255, 255, 0.08));
  filter: blur(10px);
  opacity: 0;
  mix-blend-mode: screen;
  transform-origin: center;
}
.cursor-dot.is-visible,
.cursor-ring.is-visible,
.cursor-aura.is-visible{
  opacity: 1;
}
.cursor-dot.is-hovering{
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  background: linear-gradient(135deg, #ffffff, #4ea1ff);
  box-shadow:
    0 0 18px rgba(135, 201, 255, 0.85),
    0 0 34px rgba(64, 139, 255, 0.42);
}
.cursor-ring.is-hovering{
  width: 62px;
  height: 62px;
  margin-left: -31px;
  margin-top: -31px;
  border-color: rgba(184, 224, 255, 0.95);
  background: radial-gradient(circle, rgba(120, 188, 255, 0.18), rgba(120, 188, 255, 0.05) 64%, transparent 74%);
  box-shadow:
    inset 0 0 22px rgba(143, 204, 255, 0.18),
    0 0 36px rgba(56, 133, 255, 0.24);
}
.cursor-aura.is-hovering{
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 50%, rgba(120, 196, 255, 0.22), rgba(120, 196, 255, 0.06) 44%, transparent 74%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.16), rgba(91, 156, 255, 0.04) 48%, rgba(255, 255, 255, 0.12));
  filter: blur(12px);
}
.cursor-dot.is-pressed{
  transform: scale(0.82);
}
.cursor-ring.is-pressed{
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -17px;
}
.cursor-aura.is-pressed{
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
  opacity: 0.2;
}
body::before,
body::after{
  content: "";
  position: fixed;
  inset: auto;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(26px);
  opacity: 0.9;
}
body::before{
  top: -12rem;
  left: -10rem;
  background:
    radial-gradient(circle, var(--bg-glow) 0%, var(--bg-glow-soft) 32%, rgba(0, 0, 0, 0) 68%);
  animation: blueGlowFloat 16s ease-in-out infinite alternate;
}
body::after{
  right: -12rem;
  bottom: -14rem;
  background:
    radial-gradient(circle, rgba(24, 103, 255, 0.26) 0%, rgba(47, 132, 255, 0.1) 36%, rgba(0, 0, 0, 0) 70%);
  animation: blueGlowDrift 22s ease-in-out infinite alternate;
}
.main_body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, var(--bg-aurora-1), transparent 24%),
    radial-gradient(circle at 78% 22%, var(--bg-aurora-2), transparent 26%),
    radial-gradient(circle at 52% 72%, var(--bg-aurora-3), transparent 24%),
    linear-gradient(rgba(110, 170, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 170, 255, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    auto,
    88px 88px,
    88px 88px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 96%);
  -webkit-mask-image: radial-gradient(circle at center, black 48%, transparent 96%);
  animation: auroraShift 20s ease-in-out infinite alternate;
}
.main_body::after{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(103, 173, 255, 0.09) 49%, transparent 56%),
    linear-gradient(90deg, transparent 0 22%, rgba(72, 145, 255, 0.06) 22.15%, transparent 22.4%, transparent 71%, rgba(72, 145, 255, 0.04) 71.15%, transparent 71.4%),
    radial-gradient(circle at 50% 50%, rgba(91, 156, 255, 0.08), transparent 58%);
  opacity: 0.42;
  mix-blend-mode: screen;
  animation: glassSweep 16s ease-in-out infinite;
}
a{
  color: inherit;
  text-decoration: none;
}
.container{
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}
/* hero section start */
.hero-section {
  position: relative;
  padding: 9.2rem 0 4.8rem;
  overflow: clip;
}
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}
.hero-section::before {
  top: 8%;
  left: -6%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(109, 177, 255, 0.16), rgba(109, 177, 255, 0.03) 58%, transparent 72%);
  animation: heroGlowPulse 7s ease-in-out infinite;
}
.hero-section::after {
  right: -4%;
  bottom: 6%;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(86, 153, 255, 0.14), rgba(86, 153, 255, 0.02) 60%, transparent 72%);
  animation: heroGlowPulseAlt 9s ease-in-out infinite;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 1;
  animation: heroContentRise 0.9s ease both;
}
.hero-copy::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: -1.25rem;
  width: 7rem;
  height: 7rem;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(111, 180, 255, 0.18), rgba(111, 180, 255, 0.02) 68%, transparent 75%);
  filter: blur(8px);
  z-index: -1;
}
.hero-copy::after {
  content: "";
  position: absolute;
  left: 1rem;
  top: 5.4rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(143, 205, 255, 0.05) 62%, transparent 76%);
  filter: blur(10px);
  z-index: -1;
  animation: heroSoftBlink 6s ease-in-out infinite;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.68rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(154, 209, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(109, 177, 255, 0.07));
  color: #e8f4ff;
  font-family: hindsiligur;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 34px rgba(5, 18, 46, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: heroBadgeFloat 5s ease-in-out infinite;
}
.hero-copy h1 {
  margin-top: 1.45rem;
  font-family: hindsiligur;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.18;
  color: #f6fbff;
  text-shadow: 0 8px 20px rgba(4, 16, 42, 0.18);
}
.hero-copy p {
  margin-top: 1.35rem;
  max-width: 58ch;
  font-family: hindsiligur;
  font-size: 1.08rem;
  line-height: 1.95;
  color: rgba(229, 239, 255, 0.82);
}
.hero-copy p strong {
  color: #ffffff;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 1rem 1.65rem;
  border-radius: 20px;
  border: 1px solid transparent;
  font-family: hindsiligur;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.hero-btn:hover {
  transform: translateY(-2px);
}
.hero-btn-primary:hover {
  box-shadow: 0 24px 44px rgba(7, 22, 53, 0.28);
}
.hero-btn-secondary:hover {
  border-color: rgba(181, 220, 255, 0.34);
  box-shadow: 0 18px 32px rgba(4, 16, 42, 0.18);
}
.hero-btn-primary {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(205, 231, 255, 0.86));
  color: #0e2856;
  box-shadow: 0 20px 38px rgba(7, 22, 53, 0.24);
}
.hero-btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(95, 153, 242, 0.08));
  color: #f3f9ff;
  border-color: rgba(151, 205, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.2rem;
}
.hero-highlight-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.15rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(110, 174, 255, 0.08));
  border: 1px solid rgba(145, 199, 255, 0.16);
  box-shadow: 0 22px 40px rgba(4, 14, 37, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.hero-highlight-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -30%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 221, 255, 0.18), transparent 66%);
  opacity: 0.7;
  filter: blur(12px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.hero-highlight-card:hover {
  transform: perspective(1100px) rotateX(9deg) rotateY(-10deg) translateY(-8px);
  border-color: rgba(186, 223, 255, 0.28);
  box-shadow: 0 30px 52px rgba(4, 14, 37, 0.3);
}
.hero-highlight-card:hover::before {
  transform: translate3d(1.2rem, 0.8rem, 0);
  opacity: 1;
}
.hero-highlight-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(177, 216, 255, 0.76));
  color: #113269;
  font-size: 1.25rem;
  box-shadow: 0 14px 28px rgba(8, 25, 56, 0.16);
  flex-shrink: 0;
}
.hero-highlight-card h3 {
  font-family: hindsiligur;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #f6fbff;
}
.hero-highlight-card p {
  margin-top: 0.35rem;
  font-size: 0.98rem;
  line-height: 1.75;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.05rem;
  margin-top: 2.2rem;
}
.hero-stats div {
  min-width: 150px;
  padding: 1.05rem 1.15rem;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(89, 153, 246, 0.05));
  border: 1px solid rgba(132, 191, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 30px rgba(4, 14, 37, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.hero-stats div:hover {
  transform: perspective(900px) rotateX(10deg) translateY(-6px);
  border-color: rgba(181, 220, 255, 0.28);
  box-shadow: 0 24px 42px rgba(4, 14, 37, 0.22);
}
.hero-stats strong {
  display: block;
  font-family: hindsiligur;
  font-size: 1.75rem;
  color: #ffffff;
}
.hero-stats span {
  display: block;
  margin-top: 0.35rem;
  font-family: hindsiligur;
  color: rgba(228, 239, 255, 0.76);
}
.hero-visual {
  position: relative;
  perspective: 1800px;
}
.hero-visual-shell {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(148, 202, 255, 0.14);
  box-shadow: inset 0 0 40px rgba(76, 141, 255, 0.06);
}
.hero-orbit-one {
  width: 420px;
  height: 420px;
  animation: heroOrbit 16s linear infinite;
}
.hero-orbit-two {
  width: 520px;
  height: 520px;
  border-style: dashed;
  border-color: rgba(148, 202, 255, 0.08);
  animation: heroOrbitReverse 22s linear infinite;
}
.hero-dashboard {
  position: relative;
  width: min(100%, 500px);
  padding: 1.45rem;
  border-radius: 32px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.14), rgba(103, 160, 255, 0.08));
  border: 1px solid rgba(163, 211, 255, 0.18);
  box-shadow:
    0 30px 60px rgba(5, 16, 42, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  transform-style: preserve-3d;
  animation: dashboardFloat 6s ease-in-out infinite;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}
.hero-dashboard:hover {
  transform: rotateX(10deg) rotateY(-12deg) translateY(-8px);
  border-color: rgba(193, 231, 255, 0.28);
  box-shadow:
    0 42px 80px rgba(5, 16, 42, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 201, 255, 0.26), transparent 68%);
  filter: blur(8px);
}
.hero-dashboard::after {
  content: "";
  position: absolute;
  inset: 14% -30% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 166, 255, 0.22), transparent 70%);
  filter: blur(12px);
}
.dashboard-topbar,
.dashboard-main-card,
.dashboard-bottom {
  position: relative;
  z-index: 1;
}
.dashboard-topbar {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.dashboard-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
}
.dashboard-main-card {
  position: relative;
  margin-top: 1rem;
  padding: 1.6rem;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(213, 232, 255, 0.86));
  color: #102a58;
  box-shadow: 0 18px 32px rgba(7, 21, 51, 0.18);
  transform: translateZ(34px);
  overflow: hidden;
}
.dashboard-main-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 30%, rgba(255, 255, 255, 0.32) 45%, transparent 60%);
  transform: translateX(-130%);
  animation: dashboardShine 5.5s ease-in-out infinite;
}
.dashboard-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(12, 43, 89, 0.08);
  color: #14386f;
  font-family: hindsiligur;
  font-size: 0.92rem;
  font-weight: 700;
}
.dashboard-main-card h2 {
  margin-top: 1rem;
  font-family: hindsiligur;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.15;
}
.dashboard-main-card p {
  margin-top: 0.8rem;
  font-family: hindsiligur;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(16, 42, 88, 0.82);
}
.course-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.course-chip-wrap span {
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: rgba(12, 43, 89, 0.08);
  border: 1px solid rgba(33, 84, 160, 0.1);
  font-family: hindsiligur;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}
.course-chip-wrap span:hover {
  transform: translateY(-3px);
  background: rgba(12, 43, 89, 0.12);
}
.dashboard-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.dashboard-mini-card {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(166, 214, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateZ(22px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.dashboard-mini-card:hover {
  transform: translateZ(30px) translateY(-6px);
  border-color: rgba(188, 226, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 24px 40px rgba(4, 14, 37, 0.2);
}
.dashboard-mini-card.accent {
  background: linear-gradient(160deg, rgba(33, 85, 164, 0.32), rgba(255, 255, 255, 0.1));
}
.mini-label {
  display: inline-block;
  font-family: hindsiligur;
  font-size: 0.88rem;
  color: rgba(223, 237, 255, 0.76);
}
.dashboard-mini-card strong {
  display: block;
  margin-top: 0.5rem;
  font-family: hindsiligur;
  font-size: 1.14rem;
  line-height: 1.4;
  color: #ffffff;
}
.dashboard-mini-card p {
  margin-top: 0.45rem;
  font-family: hindsiligur;
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(226, 239, 255, 0.78);
}
/* hero section end */
/* course section start */
.course-section {
  position: relative;
  padding: 4.8rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}
.course-section::after {
  content: "";
  position: absolute;
  inset: 14% auto auto 8%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(110, 177, 255, 0.18), rgba(110, 177, 255, 0.05) 54%, transparent 74%),
    radial-gradient(circle at 35% 35%, rgba(194, 229, 255, 0.18), transparent 26%);
  filter: blur(20px);
  pointer-events: none;
  animation: courseGlowDrift 8s ease-in-out infinite;
}
.course-section .container::before {
  content: "";
  position: absolute;
  inset: 2rem 1rem auto auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(161, 214, 255, 0.14), rgba(161, 214, 255, 0.03) 58%, transparent 74%),
    radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.12), transparent 24%);
  filter: blur(18px);
  pointer-events: none;
  animation: courseGlowPulse 6.5s ease-in-out infinite;
}
.course-section .container::after {
  content: "";
  position: absolute;
  inset: 1.4rem 0.8rem 0.8rem;
  border-radius: 34px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(134, 198, 255, 0.1), transparent 0 18%),
    radial-gradient(circle at 82% 18%, rgba(164, 218, 255, 0.08), transparent 0 16%),
    radial-gradient(circle at 50% 78%, rgba(96, 164, 255, 0.08), transparent 0 20%),
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.06) 32%, transparent 46%),
    linear-gradient(rgba(120, 181, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 181, 255, 0.035) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    auto,
    180% 180%,
    72px 72px,
    72px 72px;
  background-position:
    center,
    center,
    center,
    -120% 0,
    center,
    center;
  mix-blend-mode: screen;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.82));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.82));
  animation: courseSurfaceSweep 18s linear infinite, courseGridPulse 12s ease-in-out infinite alternate;
}
.course-section::before {
  content: "";
  position: absolute;
  inset: 8% 4% 0;
  border-radius: 40px;
  background:
    linear-gradient(160deg, rgba(5, 15, 36, 0.94), rgba(8, 28, 62, 0.88) 48%, rgba(9, 36, 77, 0.84)),
    radial-gradient(circle at top right, rgba(140, 203, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(84, 154, 255, 0.14), transparent 30%),
    radial-gradient(circle at 52% 18%, rgba(188, 228, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%);
  border: 1px solid rgba(128, 188, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -18px 36px rgba(5, 16, 36, 0.26),
    0 30px 70px rgba(2, 8, 22, 0.28);
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 140% 140%, 100% 100%;
  animation: coursePanelFlow 14s ease-in-out infinite alternate;
}
.course-section .container {
  position: relative;
  z-index: 1;
}
.course-section-head {
  max-width: 720px;
  margin-bottom: 2.4rem;
  padding-left: 10px;
  padding-right: 10px;
  /* padding-top: 47px; */
}
.course-section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(155, 208, 255, 0.16);
  color: #d8ecff;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(4, 16, 40, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 10px;
}
.course-section-head h2 {
  margin-top: 3rem;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 400;
  color: #f6fbff;
  padding-left: 10px;
  padding-right: 10px;
}
.course-section-head p {
  margin-top: 1rem;
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(224, 237, 255, 0.76);
  padding-left: 10px;
  padding-right: 10px;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding-left: 10px;
  padding-right: 10px;
}
.course-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 28px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(94, 155, 247, 0.07)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(146, 198, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 40px rgba(3, 11, 28, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: courseCardFloatIn 0.7s ease both;
  animation-delay: calc(var(--card-index, 0) * 0.08s);
}
.course-card:nth-child(1) { --card-index: 0; }
.course-card:nth-child(2) { --card-index: 1; }
.course-card:nth-child(3) { --card-index: 2; }
.course-card:nth-child(4) { --card-index: 3; }
.course-card:nth-child(5) { --card-index: 4; }
.course-card:nth-child(6) { --card-index: 5; }
.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 26%, rgba(255, 255, 255, 0.18) 45%, transparent 62%);
  transform: translateX(-135%);
  opacity: 0;
}
.course-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 177, 255, 0.14), transparent 72%);
  filter: blur(12px);
  opacity: 0.65;
  pointer-events: none;
}
.course-card:hover {
  transform: perspective(1200px) rotateX(8deg) rotateY(-7deg) translateY(-10px);
  border-color: rgba(180, 223, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 54px rgba(3, 11, 28, 0.3),
    0 0 28px rgba(88, 143, 255, 0.08);
}
.course-card:hover::before {
  opacity: 1;
  animation: courseCardShine 0.9s ease forwards;
}
.course-card.featured {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.16), rgba(103, 163, 255, 0.1)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(184, 224, 255, 0.22);
}
.course-card-glow {
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 177, 255, 0.26), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}
.course-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(170, 214, 255, 0.16);
  color: #d9edff;
  font-size: 0.9rem;
}
.course-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 0.9rem;
  padding: 1rem;
  gap: 0.85rem;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(189, 227, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 30px rgba(3, 11, 28, 0.18);
}
.course-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 48%, rgba(255, 255, 255, 0.08));
}
.course-banner i,
.course-banner span {
  position: relative;
  z-index: 1;
}
.course-banner i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.35rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.course-banner span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(5, 17, 40, 0.34);
  color: #f4faff;
  font-size: 0.92rem;
  text-align: center;
  max-width: 100%;
  overflow-wrap: anywhere;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.course-banner-web {
  background:
    radial-gradient(circle at top right, rgba(118, 188, 255, 0.3), transparent 30%),
    linear-gradient(145deg, #133a75, #0b2148 55%, #07162f);
}
.course-banner-dev {
  background:
    radial-gradient(circle at top right, rgba(138, 202, 255, 0.24), transparent 32%),
    linear-gradient(145deg, #0d315d, #143e74 54%, #09182f);
}
.course-banner-graphics {
  background:
    radial-gradient(circle at top right, rgba(173, 131, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #202d70, #2c2572 54%, #111536);
}
.course-banner-video {
  background:
    radial-gradient(circle at top right, rgba(255, 118, 176, 0.2), transparent 34%),
    linear-gradient(145deg, #4a2056, #2d255e 54%, #121734);
}
.course-banner-marketing {
  background:
    radial-gradient(circle at top right, rgba(255, 179, 124, 0.24), transparent 34%),
    linear-gradient(145deg, #563821, #63401f 54%, #241814);
}
.course-banner-career {
  background:
    radial-gradient(circle at top right, rgba(112, 227, 255, 0.22), transparent 34%),
    linear-gradient(145deg, #0d4b53, #14385b 54%, #09182f);
}
.course-card h3 {
  margin-top: 1rem;
  font-size: 1.45rem;
  line-height: 1.28;
  font-weight: 400;
  color: #ffffff;
  overflow-wrap: anywhere;
}
.course-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 1.2rem;
  padding: 0.8rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(174, 216, 255, 0.18);
  color: #f4f9ff;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  margin-top: auto;
}
.course-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(199, 229, 255, 0.28);
}
@media(max-width:1300px){
  .course-section-head {
    padding-left: 40px;
    padding-right: 40px;
}
.course-grid {
    padding-left: 40px;
    padding-right: 40px;
}
}
@media(max-width: 1250px){
  .course-section-head {
    padding-top: 38px;
}
}
@media(max-width: 420px){
  .course-section-head {
    margin-top: -33px !important;
}
}
/* why choose us section start */
.why-choose-section {
  position: relative;
  padding: 4.8rem 0 5.2rem;
  overflow: hidden;
}
.why-choose-section::before,
.why-choose-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.why-choose-section::before {
  top: 1rem;
  left: 0;
  width: min(32vw, 320px);
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 191, 255, 0.26), transparent);
  opacity: 0.75;
}
.why-choose-section::after {
  right: 0;
  bottom: 1rem;
  width: min(26vw, 260px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 191, 255, 0.22));
  opacity: 0.68;
}
.why-choose-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 1.4rem;
  padding: 0.7rem 0;
  border-radius: 30px;
  background: transparent;
  border: 0;
  box-shadow: none;
  isolation: isolate;
  perspective: 1400px;
}
.why-choose-shell::before,
.why-choose-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.why-choose-shell::before {
  inset: 0;
  border-radius: 30px;
  border: 1px solid rgba(145, 201, 255, 0.08);
  background: linear-gradient(rgba(120, 183, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 183, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.4;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent);
}
.why-choose-shell::after {
  top: 10%;
  right: 6%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 186, 255, 0.08), transparent 74%);
  filter: blur(20px);
  animation: whyShellGlow 14s ease-in-out infinite;
}
.why-choose-copy,
.why-choose-grid {
  position: relative;
  z-index: 1;
}
.why-choose-copy {
  padding: 1.2rem 1.3rem 1.15rem 0.25rem;
  animation: whyFadeRise 0.85s ease both;
}
.why-choose-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(166, 217, 255, 0.14);
  color: #eef7ff;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.why-choose-copy h2 {
  position: relative;
  margin-top: 1.1rem;
  font-size: 22px;
  line-height: 1.24;
  font-weight: 500;
  color: #f8fbff;
  text-shadow: 0 10px 26px rgba(6, 16, 34, 0.1);
}
.why-choose-copy h2::after {
  content: "";
  display: block;
  width: clamp(84px, 12vw, 120px);
  height: 2px;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 210, 255, 0.92), rgba(143, 210, 255, 0.12));
  animation: whyLineGlow 4.8s ease-in-out infinite;
}
.why-choose-copy p {
  margin-top: 1.15rem;
  max-width: 52ch;
  color: rgba(226, 238, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.85;
}
.why-choose-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}
.why-highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.95rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(160, 212, 255, 0.14);
  color: #f3f9ff;
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 28px rgba(3, 10, 26, 0.1);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  animation: whyFadeRise 0.75s ease both;
  animation-delay: calc(var(--why-chip-index, 0) * 0.06s);
  transform-style: preserve-3d;
}
.why-highlight-chip:nth-child(1) { --why-chip-index: 1; }
.why-highlight-chip:nth-child(2) { --why-chip-index: 2; }
.why-highlight-chip:nth-child(3) { --why-chip-index: 3; }
.why-highlight-chip i {
  flex: 0 0 auto;
  color: #89d0ff;
  font-size: 0.95rem;
}
.why-highlight-chip span {
  line-height: 1.4;
}
.why-highlight-chip:hover {
  transform: translate3d(0, -6px, 0) rotateX(8deg) rotateY(-8deg);
  border-color: rgba(174, 221, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 30px rgba(3, 10, 26, 0.16),
    0 0 20px rgba(104, 178, 255, 0.08);
}
.why-choose-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 0.9rem;
  margin-top: 0.15rem;
}
.why-metric-card {
  position: relative;
  padding: 0.95rem 0.95rem 0.9rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(95, 153, 246, 0.045)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(155, 206, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(3, 10, 26, 0.12);
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  animation: whyMetricRise 0.85s ease both;
  animation-delay: calc(var(--why-metric-index, 0) * 0.1s);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}
.why-metric-card:nth-child(1) { --why-metric-index: 1; }
.why-metric-card:nth-child(2) { --why-metric-index: 2; }
.why-metric-card:nth-child(3) { --why-metric-index: 3; }
.why-metric-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -55% auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 194, 255, 0.12), transparent 68%);
}
.why-metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0 28%, rgba(255, 255, 255, 0.15) 44%, transparent 62%);
  transform: translateX(-135%);
  opacity: 0;
}
.why-metric-card:hover {
  transform: translate3d(0, -10px, 0) rotateX(10deg) rotateY(-8deg);
  border-color: rgba(173, 220, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 22px 34px rgba(3, 10, 26, 0.16),
    0 0 22px rgba(104, 178, 255, 0.08);
}
.why-metric-card:hover::before {
  opacity: 1;
  animation: whyCardShine 0.85s ease forwards;
}
.why-metric-card strong {
  display: block;
  font-size: 1.22rem;
  font-weight: 600;
  color: #ffffff;
}
.why-metric-card span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(221, 238, 255, 0.72);
  line-height: 1.55;
  font-size: 0.88rem;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.why-card {
  position: relative;
  min-height: 0;
  padding: 1.2rem 1.15rem;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(92, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(3, 10, 26, 0.14);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  animation:
    whyCardFloatIn 0.75s ease both,
    whyCardTiltFloat 8s ease-in-out infinite;
  animation-delay:
    calc(var(--why-index, 0) * 0.08s),
    calc(var(--why-index, 0) * 0.25s);
  transform-style: preserve-3d;
  will-change: transform;
}
.why-card:nth-child(1) { --why-index: 0; }
.why-card:nth-child(2) { --why-index: 1; }
.why-card:nth-child(3) { --why-index: 2; }
.why-card:nth-child(4) { --why-index: 3; }
.why-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(132, 200, 255, 0.92), rgba(132, 200, 255, 0.18));
  opacity: 0.75;
}
.why-card::after {
  content: "";
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 183, 255, 0.1), transparent 72%);
  filter: blur(10px);
}
.why-card-body {
  min-width: 0;
  transform: translateZ(16px);
}
.why-card:hover {
  transform: translate3d(0, -12px, 0) rotateX(10deg) rotateY(-10deg);
  border-color: rgba(181, 222, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(92, 152, 245, 0.065)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 40px rgba(3, 10, 26, 0.18),
    0 0 24px rgba(97, 166, 255, 0.08);
}
.why-card:hover .why-card-icon {
  transform: translate3d(0, -6px, 18px) scale(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 22px rgba(97, 166, 255, 0.18);
}
.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(16, 42, 100, 0.88), rgba(28, 99, 228, 0.28)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 48%);
  border: 1px solid rgba(175, 220, 255, 0.16);
  color: #eff8ff;
  font-size: 1.15rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 14px rgba(97, 166, 255, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform: translateZ(22px);
}
.why-card h3 {
  margin-top: 0.1rem;
  font-size: 1.12rem;
  line-height: 1.28;
  font-weight: 500;
  color: #ffffff;
}
.why-card p {
  margin-top: 0.45rem;
  color: rgba(225, 238, 255, 0.74);
  line-height: 1.66;
  font-size: 0.92rem;
}
/* why choose us section end */
/* roadmap section start */
.roadmap-section {
  position: relative;
  padding: 4.9rem 0 5.2rem;
  overflow: hidden;
}
.roadmap-section::before,
.roadmap-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.roadmap-section::before {
  inset: 8% auto auto -2%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 178, 255, 0.14), transparent 72%);
  filter: blur(24px);
  animation: roadmapGlowFloat 10s ease-in-out infinite;
}
.roadmap-section::after {
  inset: auto 2% 8% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 213, 255, 0.12), transparent 72%);
  filter: blur(24px);
  animation: roadmapGlowFloatAlt 12s ease-in-out infinite;
}
.roadmap-shell {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(7, 18, 42, 0.9), rgba(8, 28, 62, 0.84) 50%, rgba(8, 35, 78, 0.8)),
    radial-gradient(circle at top right, rgba(148, 210, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(91, 159, 255, 0.1), transparent 24%);
  border: 1px solid rgba(142, 198, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 26px 56px rgba(2, 8, 22, 0.24);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  isolation: isolate;
  perspective: 1500px;
}
.roadmap-shell::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border-radius: 28px;
  background:
    linear-gradient(rgba(120, 183, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 183, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
  pointer-events: none;
}
.roadmap-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: linear-gradient(120deg, transparent 0 20%, rgba(255, 255, 255, 0.05) 34%, transparent 50%);
  background-size: 200% 100%;
  background-position: -130% 0;
  opacity: 0.5;
  pointer-events: none;
  animation: roadmapPanelSweep 14s linear infinite;
}
.roadmap-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
  animation: whyFadeRise 0.85s ease both;
}
.roadmap-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.05rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(162, 214, 255, 0.18);
  color: #e6f5ff;
  font-size: 0.92rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 24px rgba(2, 10, 28, 0.1);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  position: relative;
  overflow: hidden;
  animation: roadmapKickerPulse 3.8s ease-in-out infinite;
}
.roadmap-kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 30%, rgba(255, 255, 255, 0.18) 46%, transparent 64%);
  transform: translateX(-135%);
  opacity: 0.7;
  animation: whyCardShine 4.8s ease-in-out infinite;
}
.roadmap-head h2 {
  margin-top: 1rem;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 500;
  color: #f7fbff;
}
.roadmap-head p {
  margin: 1rem auto 0;
  max-width: 64ch;
  font-size: 1rem;
  line-height: 1.86;
  color: rgba(223, 237, 255, 0.78);
}
.roadmap-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.roadmap-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 64px;
  height: 2px;
  background: linear-gradient(90deg, rgba(121, 188, 255, 0.15), rgba(162, 217, 255, 0.55), rgba(121, 188, 255, 0.15));
  pointer-events: none;
}
.roadmap-track::after {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 233, 255, 0.95), rgba(112, 185, 255, 0.45) 45%, transparent 72%);
  filter: blur(1px);
  box-shadow: 0 0 18px rgba(112, 185, 255, 0.34);
  pointer-events: none;
  animation: roadmapLineRun 7s linear infinite;
}
.roadmap-step {
  position: relative;
  min-width: 0;
  padding: 1.15rem 1rem 1rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(92, 152, 245, 0.06)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(149, 201, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 18px 32px rgba(3, 10, 26, 0.18);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  text-align: center;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  animation:
    roadmapStepRise 0.8s ease both,
    roadmapStepFloat 7s ease-in-out infinite;
  animation-delay:
    calc(var(--roadmap-index, 0) * 0.08s),
    calc(var(--roadmap-index, 0) * 0.22s);
  will-change: transform;
}
.roadmap-step:nth-child(1) { --roadmap-index: 0; }
.roadmap-step:nth-child(2) { --roadmap-index: 1; }
.roadmap-step:nth-child(3) { --roadmap-index: 2; }
.roadmap-step:nth-child(4) { --roadmap-index: 3; }
.roadmap-step:nth-child(5) { --roadmap-index: 4; }
.roadmap-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0 30%, rgba(255, 255, 255, 0.15) 46%, transparent 64%);
  transform: translateX(-135%);
  opacity: 0;
}
.roadmap-step::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 188, 255, 0.16), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}
.roadmap-step:hover {
  transform: translate3d(0, -14px, 0) rotateX(12deg) rotateY(-10deg) scale(1.02);
  border-color: rgba(182, 224, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(92, 152, 245, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 46px rgba(3, 10, 26, 0.22),
    0 0 26px rgba(99, 170, 255, 0.1);
}
.roadmap-step:hover::before {
  opacity: 1;
  animation: whyCardShine 0.85s ease forwards;
}
.roadmap-step-no {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(172, 219, 255, 0.16);
  color: #eaf6ff;
  font-size: 0.96rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(12px);
  animation: roadmapBadgePulse 2.8s ease-in-out infinite;
}
.roadmap-step-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(17, 45, 110, 0.94), rgba(33, 111, 255, 0.34)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 48%);
  border: 1px solid rgba(176, 221, 255, 0.18);
  color: #eff9ff;
  font-size: 1.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 18px rgba(97, 166, 255, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform: translateZ(22px);
  animation: roadmapIconBob 3.6s ease-in-out infinite;
}
.roadmap-step:hover .roadmap-step-icon {
  transform: translate3d(0, -6px, 16px) scale(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 24px rgba(97, 166, 255, 0.18);
}
.roadmap-step h3 {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-size: 1.16rem;
  line-height: 1.35;
  font-weight: 500;
  color: #ffffff;
  transform: translateZ(16px);
}
.roadmap-step p {
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.74;
  color: rgba(224, 238, 255, 0.76);
  transform: translateZ(14px);
}
/* roadmap section end */
/* final cta section start */
.final-cta-section {
  position: relative;
  padding: 4.8rem 0 5.4rem;
  overflow: hidden;
}
.final-cta-section::before,
.final-cta-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.final-cta-section::before {
  inset: 8% auto auto 3%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 184, 255, 0.2), transparent 72%);
  filter: blur(34px);
  animation: finalCtaGlowFloat 12s ease-in-out infinite;
}
.final-cta-section::after {
  inset: auto 3% 8% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 221, 255, 0.18), transparent 72%);
  filter: blur(30px);
  animation: finalCtaGlowFloatAlt 14s ease-in-out infinite;
}
.final-cta-shell {
  position: relative;
  z-index: 1;
  padding: 3.15rem 1.6rem 2.4rem;
  border-radius: 40px;
  text-align: center;
  background:
    linear-gradient(155deg, rgba(7, 19, 45, 0.92), rgba(8, 30, 66, 0.88) 48%, rgba(8, 44, 96, 0.82)),
    radial-gradient(circle at top left, rgba(149, 212, 255, 0.18), transparent 26%),
    radial-gradient(circle at bottom right, rgba(91, 159, 255, 0.14), transparent 24%);
  border: 1px solid rgba(145, 202, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -20px 38px rgba(3, 10, 28, 0.18),
    0 30px 64px rgba(2, 8, 22, 0.26);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  overflow: hidden;
  isolation: isolate;
  perspective: 1400px;
}
.final-cta-shell::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%, rgba(129, 195, 255, 0.08)),
    linear-gradient(rgba(120, 183, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 183, 255, 0.03) 1px, transparent 1px);
  background-size:
    auto,
    72px 72px,
    72px 72px;
  opacity: 0.42;
  pointer-events: none;
}
.final-cta-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 20%, rgba(255, 255, 255, 0.08) 34%, transparent 50%);
  background-size: 200% 100%;
  background-position: -130% 0;
  opacity: 0.55;
  pointer-events: none;
  animation: finalCtaPanelSweep 12s linear infinite;
}
.final-cta-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(164, 215, 255, 0.16);
  color: #e8f6ff;
  font-size: 0.92rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 24px rgba(2, 10, 28, 0.1);
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  overflow: hidden;
}
.final-cta-kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.18) 46%, transparent 64%);
  transform: translateX(-135%);
  opacity: 0.7;
  animation: whyCardShine 4.6s ease-in-out infinite;
}
.final-cta-orbit,
.final-cta-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.final-cta-orbit {
  border-radius: 50%;
  border: 1px solid rgba(150, 214, 255, 0.12);
}
.final-cta-orbit-one {
  width: 320px;
  height: 320px;
  top: -110px;
  right: -40px;
  animation: finalCtaOrbit 16s linear infinite;
}
.final-cta-orbit-two {
  width: 240px;
  height: 240px;
  bottom: -80px;
  left: -10px;
  animation: finalCtaOrbitReverse 18s linear infinite;
}
.final-cta-glow {
  border-radius: 50%;
  filter: blur(18px);
}
.final-cta-glow-left {
  width: 170px;
  height: 170px;
  top: 16%;
  left: 7%;
  background: radial-gradient(circle, rgba(132, 200, 255, 0.14), transparent 72%);
  animation: finalCtaPulse 6.5s ease-in-out infinite;
}
.final-cta-glow-right {
  width: 180px;
  height: 180px;
  right: 8%;
  bottom: 14%;
  background: radial-gradient(circle, rgba(96, 164, 255, 0.14), transparent 72%);
  animation: finalCtaPulseAlt 7.2s ease-in-out infinite;
}
.final-cta-shell h2 {
  position: relative;
  z-index: 1;
  margin-top: 1.15rem;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 500;
  color: #f8fbff;
  text-shadow: 0 18px 36px rgba(4, 12, 30, 0.16);
}
.final-cta-shell p {
  position: relative;
  z-index: 1;
  max-width: 56ch;
  margin: 1.05rem auto 0;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(224, 238, 255, 0.78);
}
.final-cta-points {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.final-cta-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(170, 220, 255, 0.14);
  color: #eef8ff;
  font-size: 0.92rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(3, 10, 26, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: finalCtaChipFloat 7s ease-in-out infinite;
  animation-delay: calc(var(--cta-chip-index, 0) * 0.16s);
}
.final-cta-points span:nth-child(1) { --cta-chip-index: 0; }
.final-cta-points span:nth-child(2) { --cta-chip-index: 1; }
.final-cta-points span:nth-child(3) { --cta-chip-index: 2; }
.final-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.9rem;
}
.final-cta-btn {
  min-width: 170px;
  min-height: 56px;
  padding: 0.95rem 1.45rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  transform-style: preserve-3d;
}
.final-cta-btn.primary {
  background:
    linear-gradient(145deg, rgba(20, 63, 154, 0.98), rgba(33, 120, 255, 0.56)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(183, 226, 255, 0.22);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 32px rgba(7, 22, 54, 0.24),
    0 0 24px rgba(94, 167, 255, 0.16);
}
.final-cta-btn.secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(164, 215, 255, 0.16);
  color: #ecf7ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 28px rgba(3, 10, 26, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.final-cta-btn:hover {
  transform: translate3d(0, -8px, 0) rotateX(8deg) scale(1.03);
}
.final-cta-btn.primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 24px 38px rgba(7, 22, 54, 0.28),
    0 0 26px rgba(94, 167, 255, 0.2);
}
.final-cta-btn.secondary:hover {
  border-color: rgba(182, 224, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 32px rgba(3, 10, 26, 0.16),
    0 0 22px rgba(106, 178, 255, 0.1);
}
.final-cta-mini {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  width: min(100%, 620px);
  margin: 1.9rem auto 0;
}
.final-cta-mini-card {
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(93, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(164, 215, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 30px rgba(3, 10, 26, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: finalCtaMiniFloat 7.5s ease-in-out infinite;
  animation-delay: calc(var(--cta-mini-index, 0) * 0.18s);
}
.final-cta-mini-card:nth-child(1) { --cta-mini-index: 0; }
.final-cta-mini-card:nth-child(2) { --cta-mini-index: 1; }
.final-cta-mini-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.final-cta-mini-card span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.62;
  color: rgba(224, 238, 255, 0.75);
}
/* final cta section end */
/* faq section start */
.faq-section {
  position: relative;
  padding: 4.8rem 0 5rem;
  overflow: hidden;
}
.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.faq-section::before {
  inset: 10% auto auto 4%;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 185, 255, 0.14), transparent 72%);
  filter: blur(24px);
  animation: roadmapGlowFloat 11s ease-in-out infinite;
}
.faq-section::after {
  inset: auto 5% 8% auto;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 218, 255, 0.12), transparent 72%);
  filter: blur(24px);
  animation: roadmapGlowFloatAlt 13s ease-in-out infinite;
}
.faq-shell {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  border-radius: 34px;
  isolation: isolate;
  perspective: 1400px;
}
.faq-shell::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border-radius: 28px;
  background-size: 72px 72px;
  opacity: 0.45;
  pointer-events: none;
}
.faq-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background-size: 200% 100%;
  background-position: -130% 0;
  opacity: 0.5;
  pointer-events: none;
  animation: roadmapPanelSweep 14s linear infinite;
}
.faq-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 2.2rem;
  text-align: center;
  animation: whyFadeRise 0.85s ease both;
}
.faq-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.05rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(162, 214, 255, 0.16);
  color: #e8f5ff;
  font-size: 0.92rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 24px rgba(2, 10, 28, 0.1);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  position: relative;
  overflow: hidden;
  animation: roadmapKickerPulse 3.8s ease-in-out infinite;
}
.faq-kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 30%, rgba(255, 255, 255, 0.18) 46%, transparent 64%);
  transform: translateX(-135%);
  opacity: 0.7;
  animation: whyCardShine 4.8s ease-in-out infinite;
}
.faq-head h2 {
  margin-top: 1rem;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 500;
  color: #f7fbff;
}
.faq-head p {
  max-width: 60ch;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.84;
  color: rgba(223, 237, 255, 0.78);
}
.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.faq-grid::before {
  content: "";
  position: absolute;
  inset: -8% auto auto 10%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 203, 255, 0.12), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  animation: roadmapGlowFloat 9s ease-in-out infinite;
}
.faq-card {
  position: relative;
  min-width: 0;
  padding: 1.2rem 1.1rem 1.05rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(92, 152, 245, 0.06)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(149, 201, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 32px rgba(3, 10, 26, 0.18);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  animation:
    roadmapStepRise 0.8s ease both,
    faqCardFloat 7s ease-in-out infinite;
  animation-delay:
    calc(var(--faq-index, 0) * 0.08s),
    calc(var(--faq-index, 0) * 0.22s);
  transform-style: preserve-3d;
  will-change: transform;
}
.faq-card:nth-child(1) { --faq-index: 0; }
.faq-card:nth-child(2) { --faq-index: 1; }
.faq-card:nth-child(3) { --faq-index: 2; }
.faq-card:nth-child(4) { --faq-index: 3; }
.faq-card:nth-child(5) { --faq-index: 4; }
.faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0 28%, rgba(255, 255, 255, 0.16) 44%, transparent 62%);
  transform: translateX(-135%);
  opacity: 0;
}
.faq-card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 188, 255, 0.14), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}
.faq-card:hover {
  transform: translate3d(0, -12px, 0) rotateX(11deg) rotateY(-9deg) scale(1.02);
  border-color: rgba(182, 224, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(92, 152, 245, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 26px 42px rgba(3, 10, 26, 0.2),
    0 0 24px rgba(99, 170, 255, 0.1);
}
.faq-card:hover::before {
  opacity: 1;
  animation: whyCardShine 0.85s ease forwards;
}
.faq-card-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transform: translateZ(16px);
}
.faq-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background:
    linear-gradient(145deg, rgba(17, 45, 110, 0.94), rgba(33, 111, 255, 0.34)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 48%);
  border: 1px solid rgba(176, 221, 255, 0.18);
  color: #eff9ff;
  font-size: 1.12rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 18px rgba(97, 166, 255, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform: translateZ(22px);
  animation: roadmapIconBob 3.6s ease-in-out infinite;
}
.faq-card:hover .faq-icon {
  transform: translate3d(0, -6px, 16px) scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 22px rgba(97, 166, 255, 0.18);
}
.faq-card h3 {
  font-size: 1.12rem;
  line-height: 1.34;
  font-weight: 500;
  color: #ffffff;
  transform: translateZ(14px);
}
.faq-card p {
  margin-top: 0.95rem;
  font-size: 0.95rem;
  line-height: 1.76;
  color: rgba(224, 238, 255, 0.76);
  transform: translateZ(12px);
}
.faq-card:last-child {
  grid-column: 1 / -1;
}
/* faq section end */
/* footer section start */
.site-footer {
  position: relative;
  padding: 4.8rem 0 2rem;
  overflow: hidden;
}
.site-footer .container {
  width: min(100% - 1rem, 1380px);
}
.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.site-footer::before {
  inset: 10% auto auto 4%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 188, 255, 0.16), transparent 72%);
  filter: blur(28px);
  animation: finalCtaGlowFloat 12s ease-in-out infinite;
}
.site-footer::after {
  inset: auto 4% 14% auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 220, 255, 0.14), transparent 72%);
  filter: blur(28px);
  animation: finalCtaGlowFloatAlt 14s ease-in-out infinite;
}
.footer-shell {
  position: relative;
  z-index: 1;
  padding: 1.7rem 1.3rem 1rem;
  border-radius: 38px;
  background:
    linear-gradient(160deg, rgba(4, 14, 34, 0.98), rgba(6, 24, 56, 0.94) 50%, rgba(7, 32, 72, 0.9)),
    radial-gradient(circle at top left, rgba(149, 212, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(91, 159, 255, 0.12), transparent 26%);
  border: 1px solid rgba(145, 202, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(2, 8, 22, 0.24);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  overflow: hidden;
  isolation: isolate;
}
.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border-radius: 31px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 36%, rgba(129, 195, 255, 0.08)),
    linear-gradient(rgba(120, 183, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 183, 255, 0.03) 1px, transparent 1px);
  background-size:
    auto,
    72px 72px,
    72px 72px;
  opacity: 0.42;
  pointer-events: none;
}
.footer-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 20%, rgba(255, 255, 255, 0.07) 34%, transparent 50%);
  background-size: 200% 100%;
  background-position: -130% 0;
  opacity: 0.5;
  pointer-events: none;
  animation: finalCtaPanelSweep 14s linear infinite;
}
.footer-cta-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem 1.35rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(92, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 32px rgba(3, 10, 26, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}
.footer-cta-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(119, 189, 255, 0.08) 0, transparent 26%, transparent 74%, rgba(119, 189, 255, 0.08) 100%),
    linear-gradient(rgba(120, 183, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 183, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: 0.42;
  pointer-events: none;
}
.footer-cta-copy,
.footer-card {
  position: relative;
  z-index: 1;
}
.footer-cta-copy h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.18;
  color: #f8fbff;
}
.footer-cta-copy p {
  margin-top: 0.75rem;
  max-width: 60ch;
  color: rgba(224, 238, 255, 0.76);
  line-height: 1.78;
}
.footer-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.footer-cta-btn {
  min-width: 168px;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.footer-cta-btn:hover {
  transform: translate3d(0, -5px, 0);
}
.footer-cta-btn-outline {
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(173, 220, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.footer-cta-btn-solid {
  color: #f6fbff;
  background: linear-gradient(145deg, rgba(21, 67, 155, 0.95), rgba(44, 122, 255, 0.72));
  border: 1px solid rgba(178, 225, 255, 0.18);
  box-shadow:
    0 16px 28px rgba(5, 18, 48, 0.24),
    0 0 24px rgba(67, 140, 255, 0.18);
}
.footer-main-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.92fr) minmax(0, 0.96fr);
  gap: 1rem;
  margin-top: 1rem;
}
.footer-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100%;
  padding: 1.25rem 1.08rem 1.08rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(92, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 32px rgba(3, 10, 26, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
}
.footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(164, 219, 255, 0.12), transparent 18%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), transparent 40%, rgba(136, 202, 255, 0.05));
  opacity: 0.95;
  pointer-events: none;
}
.footer-card::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0), rgba(127, 198, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.28;
  animation: footerOrbSpin 12s linear infinite;
  pointer-events: none;
}
.footer-card:hover {
  transform: translate3d(0, -8px, 0) rotateX(7deg) rotateY(-7deg);
  border-color: rgba(182, 224, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 40px rgba(3, 10, 26, 0.18),
    0 0 22px rgba(99, 170, 255, 0.08);
}
.footer-logo {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: inline-flex;
}
.footer-logo img {
  width: clamp(170px, 18vw, 240px);
  height: auto;
  object-fit: contain;
}
.footer-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(164, 215, 255, 0.16);
  color: #e8f6ff;
  font-size: 0.9rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 24px rgba(2, 10, 28, 0.1);
}
.footer-brand-copy {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(224, 238, 255, 0.78);
}
.footer-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.footer-stats span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.92rem;
  border-radius: 18px;
  color: rgba(236, 247, 255, 0.82);
  font-size: 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(87, 147, 255, 0.07)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(173, 220, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 22px rgba(2, 8, 24, 0.12);
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}
.footer-social-link {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(17, 45, 110, 0.94), rgba(33, 111, 255, 0.34)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 48%);
  border: 1px solid rgba(176, 221, 255, 0.18);
  color: #eff9ff;
  font-size: 1.08rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 18px rgba(97, 166, 255, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}
.footer-social-link:hover {
  transform: translate3d(0, -6px, 0) rotateX(8deg) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 24px rgba(97, 166, 255, 0.18);
}
.footer-mini-panel {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(165, 214, 255, 0.1);
}
.footer-mini-panel h3,
.footer-links-card h3,
.footer-contact-card h3 {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.45rem;
  font-weight: 600;
  color: #ffffff;
}
.footer-mini-panel p {
  position: relative;
  z-index: 1;
  margin-top: 0.7rem;
  color: rgba(224, 238, 255, 0.75);
  line-height: 1.82;
}
.footer-card-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 1rem;
  color: #cfeeff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}
.footer-menu-links {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem 1rem;
  margin-top: 1rem;
}
.footer-menu-links a,
.footer-contact-item span,
.footer-dev-box p {
  display: block;
  color: rgba(224, 238, 255, 0.76);
  line-height: 1.65;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-menu-links a:hover,
.footer-link-action:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.footer-link-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
.footer-link-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  text-decoration: none;
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(173, 220, 255, 0.12);
}
.footer-contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.78rem;
  margin-top: 1rem;
}
.footer-contact-item,
.footer-live-box,
.footer-dev-box {
  position: relative;
  z-index: 1;
  padding: 0.92rem 0.92rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(168, 216, 255, 0.11);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-contact-item strong,
.footer-dev-box strong {
  flex: 0 0 78px;
  color: #eaf6ff;
}
.footer-contact-item span,
.footer-dev-box p {
  flex: 1 1 auto;
  color: rgba(224, 238, 255, 0.75);
  line-height: 1.7;
}
.footer-live-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.95rem;
}
.footer-live-box span {
  color: rgba(220, 236, 255, 0.78);
}
#live-footer-clock {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 0;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(125, 196, 255, 0.2);
}
#live-footer-date {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0.6rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(224, 238, 255, 0.74);
}
.footer-dev-box {
  margin-top: 0.85rem;
}
.footer-dev-box p + p {
  margin-top: 0.7rem;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(160, 212, 255, 0.12);
}
.footer-bottom p,
.footer-bottom span {
  color: rgba(219, 235, 255, 0.7);
  font-size: 0.92rem;
}
@keyframes footerOrbSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* footer section end */
.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.25rem;
  width: 62px;
  height: 62px;
  border: 0;
  padding: 0;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(6, 14, 58, 0.94), rgba(2, 8, 28, 0.94)),
    radial-gradient(circle at 30% 30%, rgba(110, 183, 255, 0.22), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 34px rgba(2, 7, 28, 0.42),
    0 0 22px rgba(72, 142, 255, 0.18);
  color: #f4f9ff;
  cursor: pointer;
  z-index: 980;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.92);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease,
    visibility 0.28s ease;
  isolation: isolate;
  overflow: hidden;
  will-change: transform, opacity;
}
.back-to-top::before,
.back-to-top::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.back-to-top::before {
  inset: 1px;
  border-radius: 23px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.01) 42%, rgba(80, 152, 255, 0.14)),
    radial-gradient(circle at 24% 22%, rgba(150, 219, 255, 0.18), transparent 16%),
    linear-gradient(rgba(123, 183, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 183, 255, 0.08) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    12px 12px,
    12px 12px;
  opacity: 0.86;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 1));
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 1));
}
.back-to-top::after {
  inset: -35%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0) 0deg,
    rgba(137, 198, 255, 0.18) 65deg,
    rgba(70, 134, 255, 0.06) 150deg,
    rgba(255, 255, 255, 0) 240deg,
    rgba(151, 214, 255, 0.16) 320deg,
    rgba(255, 255, 255, 0) 360deg
  );
  opacity: 0.62;
  animation: backToTopOrbit 6s linear infinite;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  animation: backToTopReveal 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.back-to-top:hover {
  transform: translate3d(0, -5px, 0) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 36px rgba(2, 7, 28, 0.5),
    0 0 28px rgba(96, 167, 255, 0.24);
}
.back-to-top:active {
  transform: translate3d(0, -1px, 0) scale(0.97);
}
.back-to-top-core {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(23, 42, 139, 0.94), rgba(16, 116, 255, 0.46)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.18), transparent 45%);
  border: 1px solid rgba(170, 220, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 18px rgba(86, 157, 255, 0.16);
  animation: backToTopPulse 2.8s ease-in-out infinite;
}
.back-to-top-core i {
  font-size: 1rem;
  text-shadow: 0 0 14px rgba(153, 213, 255, 0.42);
  animation: backToTopArrowLift 1.8s ease-in-out infinite;
}
.floating-whatsapp {
  position: fixed;
  left: 1.2rem;
  bottom: 1rem;
  width: 62px;
  height: 62px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(5, 49, 28, 0.96), rgba(1, 28, 16, 0.94)),
    radial-gradient(circle at 30% 30%, rgba(92, 255, 166, 0.18), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 34px rgba(1, 20, 11, 0.38),
    0 0 22px rgba(57, 211, 127, 0.18);
  z-index: 980;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.floating-whatsapp::before,
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.floating-whatsapp::before {
  inset: 1px;
  border-radius: 23px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 42%, rgba(72, 231, 145, 0.12)),
    linear-gradient(rgba(116, 255, 185, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 255, 185, 0.06) 1px, transparent 1px);
  background-size:
    auto,
    12px 12px,
    12px 12px;
  opacity: 0.86;
}
.floating-whatsapp::after {
  inset: -35%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0) 0deg,
    rgba(150, 255, 204, 0.16) 70deg,
    rgba(70, 235, 143, 0.04) 150deg,
    rgba(255, 255, 255, 0) 240deg,
    rgba(145, 255, 194, 0.14) 320deg,
    rgba(255, 255, 255, 0) 360deg
  );
  opacity: 0.58;
  animation: backToTopOrbit 7s linear infinite reverse;
}
.floating-whatsapp:hover {
  transform: translate3d(0, -5px, 0) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 36px rgba(1, 22, 12, 0.46),
    0 0 28px rgba(67, 224, 136, 0.26);
}
.floating-whatsapp-core {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(12, 165, 78, 0.94), rgba(21, 214, 108, 0.58)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 45%);
  border: 1px solid rgba(186, 255, 217, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 18px rgba(72, 231, 145, 0.16);
  animation: whatsappPulse 2.8s ease-in-out infinite;
}
.floating-whatsapp-core i {
  font-size: 1.22rem;
  color: #f4fff8;
  text-shadow: 0 0 16px rgba(160, 255, 208, 0.28);
}
/* course section end */
/* navbar section code start  */
.site-header {
  top: 0.75rem;
  left: 0;
  right: 0;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  z-index: 999;
  transition: top 0.28s ease, transform 0.28s ease;
  overflow: visible;
  isolation: isolate;
  position: fixed;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0.1rem 1rem;
  background: #090027;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  box-shadow:
    0 14px 45px rgba(15, 23, 42, 0.08),
    0 0 35px rgba(73, 134, 255, 0.14);
  pointer-events: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0.1rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(214, 221, 235, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  animation: borderPulse 4.8s ease-in-out infinite;
}
.site-header .nav-wrap::before {
  content: "";
  position: absolute;
  inset: 0.45rem 0.35rem;
  border-radius: 18px;
  /* background:
    linear-gradient(135deg, rgba(13, 18, 92, 0.3), rgba(3, 4, 61, 0.08)),
    radial-gradient(circle at 15% 20%, rgba(113, 171, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(53, 117, 255, 0.12), transparent 24%); */
  opacity: 0.9;
  filter: blur(0.5px);
  pointer-events: none;
  z-index: -1;
}
.site-header.scrolled {
  top: 0.35rem;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.25rem;
  border-radius: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.brand img {
  width: auto;
  height: clamp(40px, 4vw, 52px);
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(20, 55, 130, 0.15));
}
.main-nav {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.38rem;
  border-radius: 12px;
  position: relative;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.main-nav a {
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: white;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  font-family: hindsiligur;
  white-space: nowrap;
  overflow: hidden;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 42%, rgba(122, 186, 255, 0.18) 100%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, #7fc4ff, #3a7bff);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.main-nav a:hover,
.main-nav a.active {
  background: linear-gradient(145deg, rgba(12, 36, 80, 0.82), rgba(35, 86, 166, 0.72));
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 8px 18px rgba(8, 24, 56, 0.22),
    0 0 16px rgba(88, 143, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: menuGlassFloat 0.45s ease forwards;
}
.main-nav a:hover::before,
.main-nav a.active::before {
  opacity: 1;
  animation: menuGlassShine 0.75s ease forwards;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.main-nav a.active::after {
  display: none;
}
.main-nav a.nav-cta {
  background: linear-gradient(145deg, rgba(87, 149, 255, 0.28), rgba(10, 29, 96, 0.72));
  color: #eef5ff;
  border: 1px solid rgba(151, 200, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 24px rgba(4, 13, 43, 0.34),
    0 0 20px rgba(96, 162, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.main-nav a.nav-cta:hover,
.main-nav a.nav-cta.active {
  background: linear-gradient(145deg, rgba(124, 186, 255, 0.4), rgba(18, 48, 138, 0.9));
  color: #ffffff;
  border-color: rgba(187, 222, 255, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 12px 28px rgba(5, 18, 56, 0.42),
    0 0 26px rgba(114, 181, 255, 0.24);
}
.main-nav a.nav-cta::after {
  display: none;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 58, 156, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.menu-toggle span {
  width: 23px;
  height: 2px;
  background: #1a3f99;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.active {
  background: linear-gradient(145deg, #1f5dff, #244ca8);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(31, 93, 255, 0.24);
}
.menu-toggle.active span {
  background: #fff;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body.nav-open {
  overflow: hidden;
}
@keyframes blueGlowFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(6vw, 3vh, 0) scale(1.08);
  }
  100% {
    transform: translate3d(10vw, 8vh, 0) scale(0.94);
  }
}
@keyframes borderPulse {
  0% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 0 0 1px rgba(255, 255, 255, 0.5),
      0 0 18px rgba(88, 143, 255, 0.1);
    border-color: rgba(214, 221, 235, 0.95);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      0 0 0 1px rgba(255, 255, 255, 0.72),
      0 0 28px rgba(88, 143, 255, 0.18);
    border-color: rgba(171, 201, 255, 0.95);
  }
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 0 0 1px rgba(255, 255, 255, 0.5),
      0 0 18px rgba(88, 143, 255, 0.1);
    border-color: rgba(214, 221, 235, 0.95);
  }
}
@keyframes blueGlowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-4vw, -5vh, 0) scale(1.05);
  }
  100% {
    transform: translate3d(-10vw, -9vh, 0) scale(0.92);
  }
}
@keyframes gridPulse {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.38;
  }
  50% {
    transform: translate3d(-18px, -14px, 0);
    opacity: 0.52;
  }
  100% {
    transform: translate3d(-36px, -28px, 0);
    opacity: 0.38;
  }
}
@keyframes auroraShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate3d(1.5%, -1.5%, 0) scale(1.04);
    opacity: 0.72;
  }
  100% {
    transform: translate3d(-1.5%, 2%, 0) scale(0.98);
    opacity: 0.52;
  }
}
@keyframes glassSweep {
  0% {
    transform: translate3d(-6%, 0, 0);
    opacity: 0.2;
  }
  50% {
    transform: translate3d(0, -1%, 0);
    opacity: 0.42;
  }
  100% {
    transform: translate3d(6%, 1%, 0);
    opacity: 0.2;
  }
}
@keyframes cursorOrbit {
  0% {
    transform: rotate(0deg);
    opacity: 0.92;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.92;
  }
}
@keyframes menuGlassShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}
@keyframes menuGlassFloat {
  0% {
    transform: translateY(0) scale(0.98);
  }
  70% {
    transform: translateY(-2px) scale(1.01);
  }
  100% {
    transform: translateY(-1px) scale(1);
  }
}
@keyframes heroOrbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes heroOrbitReverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes dashboardFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes heroBadgeFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes heroContentRise {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroGlowPulse {
  0% {
    transform: scale(0.94);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
  100% {
    transform: scale(0.98);
    opacity: 0.55;
  }
}
@keyframes heroGlowPulseAlt {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.75;
  }
  100% {
    transform: scale(0.94);
    opacity: 0.45;
  }
}
@keyframes heroSoftBlink {
  0% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.35;
  }
}
@keyframes dashboardShine {
  0% {
    transform: translateX(-130%);
  }
  50% {
    transform: translateX(130%);
  }
  100% {
    transform: translateX(130%);
  }
}
@keyframes whyGlowFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(14px, -10px, 0) scale(1.08);
    opacity: 0.76;
  }
  100% {
    transform: translate3d(-4px, 8px, 0) scale(0.96);
    opacity: 0.48;
  }
}
@keyframes whyGlowFloatAlt {
  0% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.34;
  }
  50% {
    transform: translate3d(-10px, 8px, 0) scale(1.06);
    opacity: 0.68;
  }
  100% {
    transform: translate3d(8px, -8px, 0) scale(1);
    opacity: 0.42;
  }
}
@keyframes whyShellGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(0.98);
    opacity: 0.48;
  }
}
@keyframes whyFadeRise {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes whyCardFloatIn {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes whyCardShine {
  0% {
    transform: translateX(-135%);
  }
  100% {
    transform: translateX(135%);
  }
}
@keyframes whyLineGlow {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 0 rgba(143, 210, 255, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 18px rgba(143, 210, 255, 0.22);
  }
}
@keyframes whyMetricRise {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes whyCardDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes whyCardTiltFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translate3d(0, -5px, 0) rotateX(2deg) rotateY(-2deg);
  }
}
@keyframes roadmapGlowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(14px, -10px, 0) scale(1.08);
    opacity: 0.78;
  }
}
@keyframes roadmapGlowFloatAlt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.34;
  }
  50% {
    transform: translate3d(-12px, 10px, 0) scale(1.06);
    opacity: 0.7;
  }
}
@keyframes roadmapStepRise {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes roadmapStepFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translate3d(0, -6px, 0) rotateX(2deg) rotateY(-2deg);
  }
}
@keyframes roadmapPanelSweep {
  0% {
    background-position: -130% 0;
  }
  100% {
    background-position: 220% 0;
  }
}
@keyframes roadmapLineRun {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(84vw - 80px));
    opacity: 0;
  }
}
@keyframes roadmapBadgePulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 0 0 rgba(126, 191, 255, 0);
    transform: translateZ(12px) scale(1);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 0 18px rgba(126, 191, 255, 0.14);
    transform: translateZ(12px) scale(1.06);
  }
}
@keyframes roadmapIconBob {
  0%,
  100% {
    transform: translateZ(22px) translateY(0);
  }
  50% {
    transform: translateZ(22px) translateY(-5px);
  }
}
@keyframes roadmapKickerPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 10px 24px rgba(2, 10, 28, 0.1);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 14px 28px rgba(2, 10, 28, 0.12),
      0 0 18px rgba(112, 185, 255, 0.1);
  }
}
@keyframes faqCardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translate3d(0, -5px, 0) rotateX(2deg) rotateY(-2deg);
  }
}
@keyframes finalCtaGlowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.46;
  }
  50% {
    transform: translate3d(16px, -12px, 0) scale(1.12);
    opacity: 0.82;
  }
}
@keyframes finalCtaGlowFloatAlt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.38;
  }
  50% {
    transform: translate3d(-14px, 10px, 0) scale(1.08);
    opacity: 0.76;
  }
}
@keyframes finalCtaPanelSweep {
  0% {
    background-position: -130% 0;
  }
  100% {
    background-position: 220% 0;
  }
}
@keyframes finalCtaOrbit {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.03);
  }
}
@keyframes finalCtaOrbitReverse {
  0% {
    transform: rotate(360deg) scale(0.98);
  }
  100% {
    transform: rotate(0deg) scale(1.02);
  }
}
@keyframes finalCtaPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
@keyframes finalCtaPulseAlt {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(1);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}
@keyframes finalCtaChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes finalCtaMiniFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes courseCardShine {
  0% {
    transform: translateX(-135%);
  }
  100% {
    transform: translateX(135%);
  }
}
@keyframes courseGlowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(18px, -10px, 0) scale(1.08);
    opacity: 0.78;
  }
  100% {
    transform: translate3d(0, 8px, 0) scale(0.96);
    opacity: 0.52;
  }
}
@keyframes courseGlowPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.75;
  }
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
}
@keyframes coursePanelFlow {
  0% {
    background-position: 0 0, 100% 0, 0 100%, 52% 18%, 0 0;
    filter: saturate(1) brightness(1);
  }
  50% {
    background-position: 0 0, 94% 6%, 6% 94%, 48% 22%, 0 0;
    filter: saturate(1.08) brightness(1.04);
  }
  100% {
    background-position: 0 0, 88% 10%, 10% 88%, 54% 14%, 0 0;
    filter: saturate(0.98) brightness(0.98);
  }
}
@keyframes courseSurfaceSweep {
  0% {
    background-position:
      center,
      center,
      center,
      -120% 0,
      center,
      center;
  }
  100% {
    background-position:
      center,
      center,
      center,
      220% 0,
      center,
      center;
  }
}
@keyframes courseGridPulse {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.32;
  }
  50% {
    transform: translate3d(-10px, -8px, 0);
    opacity: 0.56;
  }
  100% {
    transform: translate3d(-18px, -14px, 0);
    opacity: 0.38;
  }
}
@keyframes courseCardFloatIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes backToTopOrbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes backToTopReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.86);
  }
  70% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes backToTopPulse {
  0% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 14px rgba(86, 157, 255, 0.12);
    transform: scale(1);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 0 24px rgba(114, 186, 255, 0.24);
    transform: scale(1.05);
  }
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 14px rgba(86, 157, 255, 0.12);
    transform: scale(1);
  }
}
@keyframes backToTopArrowLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes whatsappPulse {
  0% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 0 14px rgba(72, 231, 145, 0.12);
    transform: scale(1);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.26),
      0 0 26px rgba(112, 255, 178, 0.24);
    transform: scale(1.05);
  }
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 0 14px rgba(72, 231, 145, 0.12);
    transform: scale(1);
  }
}
/* navbar section code end  */
@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 2.2rem;
  }

  .roadmap-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .roadmap-track::before {
    display: none;
  }

  .roadmap-track::after {
    display: none;
  }

  .why-choose-shell {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .why-choose-copy h2 {
    max-width: 100%;
  }

.course-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.main-nav a {
  padding: 0.62rem 0.78rem;
  font-size: 0.92rem;
}
}

/* about page start */
.about-page-section {
  position: relative;
  padding: calc(var(--nav-height) + 2rem) 0 4.8rem;
}
.about-page-shell {
  position: relative;
  display: grid;
  gap: 1.4rem;
}
.about-page-shell::before {
  content: "";
  position: absolute;
  inset: -1rem 0 auto;
  height: 18rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(110, 177, 255, 0.16), transparent 26%),
    radial-gradient(circle at 84% 0%, rgba(85, 146, 255, 0.12), transparent 22%);
  filter: blur(12px);
  z-index: 0;
}
.about-page-shell::after {
  content: "";
  position: absolute;
  inset: auto 6% 8% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 193, 255, 0.16), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.about-hero,
.about-story,
.about-owner,
.about-trainer-card {
  position: relative;
  z-index: 1;
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
}
.about-hero-copy,
.about-mission-grid,
.about-timeline,
.about-founder,
.about-trainer-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(93, 152, 255, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 32px rgba(3, 10, 26, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.about-hero-copy,
.about-mission-grid,
.about-timeline,
.about-founder {
  border-radius: 30px;
  padding: 1.5rem;
  overflow: hidden;
  isolation: isolate;
}
.about-hero-copy::before,
.about-mission-grid::before,
.about-timeline::before,
.about-founder::before,
.about-trainer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(170, 223, 255, 0.14), transparent 18%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(135, 201, 255, 0.05));
}
.about-hero-copy::after,
.about-mission-grid::after,
.about-timeline::after,
.about-founder::after,
.about-trainer-card::after {
  content: "";
  position: absolute;
  inset: -25%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0), rgba(127, 198, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.24;
  animation: footerOrbSpin 14s linear infinite;
  pointer-events: none;
}
.about-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(170, 219, 255, 0.16);
  color: #dff1ff;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
.about-hero-copy h1,
.about-story-head h2,
.about-founder-copy h2 {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: #f8fbff;
  line-height: 1.14;
}
.about-hero-copy h1 {
  font-size: 23px;
}
.about-hero-copy p,
.about-story-head p,
.about-founder-copy p,
.about-panel-card p,
.about-trainer-card p {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: rgba(227, 239, 255, 0.78);
  line-height: 1.84;
}
.about-hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.about-hero-showcase {
  position: relative;
  z-index: 1;
  margin-top: 1.55rem;
  padding: 1rem;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(92, 152, 245, 0.04)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(149, 201, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 26px rgba(3, 10, 26, 0.12);
}
.about-hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(170, 223, 255, 0.14), transparent 18%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(135, 201, 255, 0.05));
  pointer-events: none;
}
.about-hero-showcase::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0), rgba(127, 198, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.18;
  animation: footerOrbSpin 16s linear infinite;
  pointer-events: none;
}
.about-hero-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.about-hero-showcase-card {
  padding: 1rem 0.9rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(92, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: aboutShowcaseFloat 5.6s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.about-hero-showcase-card:nth-child(2) {
  animation-delay: -1.4s;
}
.about-hero-showcase-card:nth-child(3) {
  animation-delay: -2.8s;
}
.about-hero-showcase-card:nth-child(4) {
  animation-delay: -4.2s;
}
.about-hero-showcase-card:hover {
  transform: translate3d(0, -6px, 0) rotateX(6deg);
  border-color: rgba(182, 224, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 32px rgba(3, 10, 26, 0.16),
    0 0 18px rgba(99, 170, 255, 0.08);
}
.about-hero-showcase-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(17, 45, 110, 0.94), rgba(33, 111, 255, 0.34)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 48%);
  border: 1px solid rgba(176, 221, 255, 0.18);
  color: #eff9ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 18px rgba(97, 166, 255, 0.14);
}
.about-hero-showcase-card strong,
.about-hero-showcase-card span {
  position: relative;
  z-index: 1;
  display: block;
}
.about-hero-showcase-card strong {
  margin-top: 0.8rem;
  color: #f8fbff;
  font-size: 0.98rem;
  line-height: 1.45;
}
.about-hero-showcase-card span {
  margin-top: 0.5rem;
  color: rgba(225, 239, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.68;
}
.about-hero-btn {
  min-width: 168px;
  padding: 0.96rem 1.2rem;
  border-radius: 18px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-hero-btn:hover {
  transform: translate3d(0, -5px, 0);
}
.about-hero-btn-solid {
  color: #f6fbff;
  background: linear-gradient(145deg, rgba(22, 69, 162, 0.96), rgba(43, 123, 255, 0.72));
  border: 1px solid rgba(180, 225, 255, 0.18);
  box-shadow:
    0 16px 28px rgba(5, 18, 48, 0.24),
    0 0 24px rgba(67, 140, 255, 0.18);
}
.about-hero-btn-outline {
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(173, 220, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.about-mission-grid {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.about-panel-card,
.about-mini-card,
.about-timeline-card,
.about-founder-meta span {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(92, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.12);
}
.about-panel-card {
  padding: 1.2rem;
}
.about-panel-tag {
  display: inline-flex;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  background: rgba(141, 199, 255, 0.1);
  border: 1px solid rgba(167, 218, 255, 0.14);
  color: #cfeeff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-panel-card h3,
.about-timeline-card h3,
.about-trainer-card h3 {
  margin-top: 0.9rem;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.34;
}
.about-trainer-grid,
.about-timeline-track {
  display: grid;
  gap: 1rem;
}
.about-story-head p {
  max-width: 66ch;
}
.about-timeline-track {
  margin-top: 1.15rem;
}
.about-timeline-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}
.about-timeline-year {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0.8rem;
  border-radius: 22px;
  color: #eef8ff;
  font-weight: 700;
  background:
    linear-gradient(145deg, rgba(17, 45, 110, 0.94), rgba(33, 111, 255, 0.34)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 48%);
  border: 1px solid rgba(176, 221, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 20px rgba(97, 166, 255, 0.12);
}
.about-timeline-card {
  padding: 1.12rem 1.14rem;
}
.about-founder {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
}
.about-founder-visual,
.about-founder-copy {
  position: relative;
  z-index: 1;
}
.about-founder-photo,
.about-trainer-avatar {
  width: 100%;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(12, 39, 96, 0.92), rgba(27, 107, 255, 0.34)),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.16), transparent 44%);
  border: 1px solid rgba(181, 225, 255, 0.18);
  color: #eff9ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 34px rgba(2, 10, 28, 0.18);
}
.about-founder-photo {
  font-size: 4rem;
}
.about-founder-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.about-founder-meta span {
  padding: 0.82rem 1rem;
  color: rgba(232, 242, 255, 0.82);
}
.about-trainer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-trainer-avatar {
  width: 104px;
  min-height: 104px;
  margin-inline: auto;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(17, 45, 110, 0.94), rgba(33, 111, 255, 0.34)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 48%);
  border: 1px solid rgba(176, 221, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 22px rgba(97, 166, 255, 0.16);
}
.about-trainer-avatar span {
  font-size: 2rem;
  font-weight: 700;
  color: #f5fbff;
  letter-spacing: 0.08em;
}
.about-trainer-card,
.about-timeline-card,
.about-panel-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.about-trainer-course {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(141, 199, 255, 0.1);
  border: 1px solid rgba(167, 218, 255, 0.14);
  color: #cfeeff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.about-trainer-card span {
  margin-top: 0.72rem;
  color: rgba(225, 239, 255, 0.72);
  line-height: 1.72;
}
.about-trainers {
  display: grid;
  gap: 1.1rem;
}
.about-trainer-card {
  padding: 1.3rem;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  cursor: pointer;
  appearance: none;
  width: 100%;
  color: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(93, 152, 255, 0.05)),
    rgba(255, 255, 255, 0.025);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.about-panel-card:hover,
.about-timeline-card:hover,
.about-trainer-card:hover {
  transform: translate3d(0, -8px, 0) rotateX(7deg) rotateY(-7deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 40px rgba(3, 10, 26, 0.18),
    0 0 22px rgba(99, 170, 255, 0.08);
}
.about-trainer-card:focus-visible {
  outline: 2px solid rgba(166, 222, 255, 0.92);
  outline-offset: 4px;
}
.about-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.about-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.about-trainer-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.about-trainer-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.about-trainer-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(88, 156, 255, 0.12), transparent 30%),
    rgba(1, 8, 21, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.about-trainer-modal-dialog {
  position: relative;
  width: min(100%, 720px);
  padding: 1.4rem;
  border-radius: 30px;
  background:
    linear-gradient(165deg, rgba(4, 14, 34, 0.98), rgba(6, 24, 56, 0.94) 50%, rgba(7, 32, 72, 0.92)),
    radial-gradient(circle at top left, rgba(149, 212, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(91, 159, 255, 0.12), transparent 26%);
  border: 1px solid rgba(145, 202, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(2, 8, 22, 0.32),
    0 0 30px rgba(97, 166, 255, 0.12);
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(0, 20px, 0) scale(0.96);
  transition: transform 0.32s ease;
}
.about-trainer-modal.is-open .about-trainer-modal-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}
.about-trainer-modal-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(170, 223, 255, 0.14), transparent 18%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(135, 201, 255, 0.05));
  pointer-events: none;
}
.about-trainer-modal-dialog::after {
  content: "";
  position: absolute;
  inset: -25%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0), rgba(127, 198, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.24;
  animation: footerOrbSpin 14s linear infinite;
  pointer-events: none;
}
.about-trainer-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  color: #eff9ff;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(17, 45, 110, 0.94), rgba(33, 111, 255, 0.34)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 48%);
  border: 1px solid rgba(176, 221, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 18px rgba(97, 166, 255, 0.14);
}
.about-trainer-modal-head,
.about-trainer-modal-body {
  position: relative;
  z-index: 1;
}
.about-trainer-modal-head {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}
.about-trainer-modal-icon {
  width: 108px;
  height: 108px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #eff9ff;
  background:
    linear-gradient(145deg, rgba(17, 45, 110, 0.94), rgba(33, 111, 255, 0.34)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 48%);
  border: 1px solid rgba(176, 221, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 22px rgba(97, 166, 255, 0.16);
}
.about-trainer-modal-copy h3 {
  margin-top: 0.9rem;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.about-trainer-modal-role {
  margin-top: 0.6rem;
  color: rgba(215, 235, 255, 0.72);
}
.about-trainer-modal-body {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}
.about-trainer-modal-desc {
  color: rgba(227, 239, 255, 0.8);
  line-height: 1.9;
}
.about-trainer-modal-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.about-trainer-modal-focus span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(92, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
  color: rgba(232, 242, 255, 0.82);
}
.about-trainer-modal-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.about-trainer-modal-social {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  text-decoration: none;
  color: #eef8ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(87, 147, 255, 0.07)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(173, 220, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 22px rgba(2, 8, 24, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.about-trainer-modal-social i {
  color: #92d8ff;
}
.about-trainer-modal-social:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(191, 229, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 30px rgba(2, 8, 24, 0.16),
    0 0 18px rgba(92, 166, 255, 0.12);
}
@keyframes aboutShowcaseFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
/* about page end */

/* all courses page start */
.all-courses-page {
  position: relative;
  padding: calc(var(--nav-height) + 2rem) 0 4.8rem;
}
.all-courses-shell {
  position: relative;
  display: grid;
  gap: 1.3rem;
}
.all-courses-shell::before,
.all-courses-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.all-courses-shell::before {
  inset: -1rem auto auto 4%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 188, 255, 0.16), transparent 72%);
  filter: blur(28px);
  animation: allCoursesGlowFloat 12s ease-in-out infinite;
}
.all-courses-shell::after {
  inset: auto 5% 8% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 220, 255, 0.14), transparent 72%);
  filter: blur(28px);
  animation: allCoursesGlowFloatAlt 14s ease-in-out infinite;
}
.all-courses-hero,
.all-course-card {
  position: relative;
  z-index: 1;
}
.all-courses-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 1.1rem;
}
.all-courses-copy,
.all-courses-hero-panel,
.all-course-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(93, 152, 255, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 32px rgba(3, 10, 26, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.all-courses-copy,
.all-courses-hero-panel {
  border-radius: 30px;
  padding: 1.5rem;
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
}
.all-courses-copy::before,
.all-courses-hero-panel::before,
.all-course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(170, 223, 255, 0.14), transparent 18%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(135, 201, 255, 0.05));
}
.all-courses-copy::after,
.all-courses-hero-panel::after,
.all-course-card::after {
  content: "";
  position: absolute;
  inset: -25%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0), rgba(127, 198, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.24;
  animation: footerOrbSpin 14s linear infinite;
  pointer-events: none;
}
.all-courses-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(170, 219, 255, 0.16);
  color: #dff1ff;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}
.all-courses-kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.18) 46%, transparent 62%);
  transform: translateX(-135%);
  opacity: 0;
  animation: allCoursesShine 6.2s ease-in-out infinite;
}
.all-courses-copy h1 {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: #f8fbff;
  line-height: 1.14;
  font-size: 24px;
}
.all-courses-copy p {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  max-width: 62ch;
  color: rgba(227, 239, 255, 0.78);
  line-height: 1.88;
}
.all-courses-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.all-courses-chips span,
.all-course-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 0.95rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(87, 147, 255, 0.07)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(173, 220, 255, 0.14);
  color: #eef8ff;
  animation: allCoursesChipFloat 5.8s ease-in-out infinite;
}
.all-courses-chips span:nth-child(2) {
  animation-delay: -1.4s;
}
.all-courses-chips span:nth-child(3) {
  animation-delay: -2.8s;
}
.all-courses-chips span:nth-child(4) {
  animation-delay: -4.2s;
}
.all-courses-hero-panel {
  display: grid;
  gap: 1rem;
}
.all-courses-hero-card {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(92, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.12);
  overflow: hidden;
  isolation: isolate;
  animation: allCoursesMiniFloat 5.6s ease-in-out infinite;
}
.all-courses-hero-card:nth-child(2) {
  animation-delay: -1.7s;
}
.all-courses-hero-card:nth-child(3) {
  animation-delay: -3.4s;
}
.all-courses-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 24%, rgba(255, 255, 255, 0.12) 42%, transparent 58%);
  transform: translateX(-135%);
  opacity: 0;
  animation: allCoursesShine 7.2s ease-in-out infinite;
  pointer-events: none;
}
.all-courses-hero-card strong {
  display: block;
  color: #fff;
  font-size: 1.8rem;
}
.all-courses-hero-card span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(225, 239, 255, 0.74);
  line-height: 1.7;
}
.all-courses-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.all-courses-course-grid {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0.1rem;
}
.all-courses-course-grid .course-card {
  animation-duration: 0.82s;
}
.all-courses-course-grid .course-card::after {
  width: 10rem;
  height: 10rem;
  opacity: 0.72;
}
.all-courses-course-grid .course-banner {
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.all-courses-course-grid .course-banner i,
.all-courses-course-grid .course-banner span {
  transition: transform 0.35s ease;
}
.all-courses-course-grid .course-card:hover .course-banner {
  transform: translate3d(0, -4px, 20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 34px rgba(3, 11, 28, 0.22),
    0 0 20px rgba(98, 168, 255, 0.1);
  filter: saturate(1.08);
}
.all-courses-course-grid .course-card:hover .course-banner i {
  transform: translate3d(0, -2px, 14px) scale(1.06);
}
.all-courses-course-grid .course-card:hover .course-banner span {
  transform: translate3d(0, -1px, 12px);
}
.all-courses-course-grid .course-card.featured .course-card-glow {
  animation: allCoursesFeaturedPulse 5.4s ease-in-out infinite;
}
.all-courses-course-grid .course-card h3 {
  text-shadow: 0 0 18px rgba(104, 176, 255, 0.08);
}
.all-courses-course-grid .course-link {
  position: relative;
  overflow: hidden;
}
.all-courses-course-grid .course-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 30%, rgba(255, 255, 255, 0.18) 48%, transparent 64%);
  transform: translateX(-135%);
  opacity: 0;
}
.all-courses-course-grid .course-card:hover .course-link::after {
  opacity: 1;
  animation: allCoursesShine 0.95s ease forwards;
}
.all-courses-course-grid .course-card:nth-child(7) .course-banner::after,
.all-courses-course-grid .course-card:nth-child(8) .course-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(139, 205, 255, 0.22), transparent 30%);
  pointer-events: none;
}
.all-courses-course-grid .course-card:nth-child(7) .course-banner {
  background:
    radial-gradient(circle at top right, rgba(118, 188, 255, 0.28), transparent 30%),
    linear-gradient(145deg, #183f73, #12345c 54%, #0b1831);
}
.all-courses-course-grid .course-card:nth-child(8) .course-banner {
  background:
    radial-gradient(circle at top right, rgba(124, 219, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #0b5460, #18436a 54%, #0b1831);
}
.all-course-card {
  overflow: hidden;
  isolation: isolate;
  padding: 1.25rem 1.05rem 1.05rem;
  border-radius: 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.all-course-card:hover {
  transform: translate3d(0, -8px, 0) rotateX(7deg) rotateY(-7deg);
  border-color: rgba(182, 224, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 40px rgba(3, 10, 26, 0.18),
    0 0 22px rgba(99, 170, 255, 0.08);
}
.all-course-card.featured {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 44px rgba(3, 10, 26, 0.2),
    0 0 28px rgba(100, 172, 255, 0.12);
}
.all-course-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  background: rgba(141, 199, 255, 0.1);
  border: 1px solid rgba(167, 218, 255, 0.14);
  color: #cfeeff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.all-course-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  margin-top: 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #eff9ff;
  border: 1px solid rgba(181, 225, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 34px rgba(2, 10, 28, 0.18);
}
.all-course-icon-web,
.all-course-icon-dev,
.all-course-icon-graphics,
.all-course-icon-video,
.all-course-icon-marketing,
.all-course-icon-career,
.all-course-icon-ui,
.all-course-icon-office {
  background:
    linear-gradient(145deg, rgba(12, 39, 96, 0.92), rgba(27, 107, 255, 0.34)),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.16), transparent 44%);
}
.all-course-card h3,
.all-course-card p,
.all-course-meta,
.all-course-link {
  position: relative;
  z-index: 1;
}
.all-course-card h3 {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.34;
}
.all-course-card p {
  margin-top: 0.85rem;
  color: rgba(225, 239, 255, 0.74);
  line-height: 1.8;
}
.all-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.all-course-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  margin-top: 1.05rem;
  border-radius: 18px;
  text-decoration: none;
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(173, 220, 255, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.all-course-link:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(191, 229, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 30px rgba(2, 8, 24, 0.16),
    0 0 18px rgba(92, 166, 255, 0.12);
}
/* all courses page end */

/* resources page start */
.resources-page {
  position: relative;
  padding: calc(var(--nav-height) + 2rem) 0 4.8rem;
}
.resources-shell {
  position: relative;
  display: grid;
  gap: 1.3rem;
}
.resources-shell::before,
.resources-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.resources-shell::before {
  inset: -1rem auto auto 3%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 188, 255, 0.16), transparent 72%);
  filter: blur(28px);
  animation: allCoursesGlowFloat 12s ease-in-out infinite;
}
.resources-shell::after {
  inset: auto 4% 10% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 220, 255, 0.14), transparent 72%);
  filter: blur(28px);
  animation: allCoursesGlowFloatAlt 14s ease-in-out infinite;
}
.resources-hero,
.resources-toolbar,
.resource-card,
.resources-empty-state {
  position: relative;
  z-index: 1;
}
.resources-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.1rem;
}
.resources-copy,
.resources-search-panel,
.resources-toolbar,
.resource-card,
.resources-empty-state {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(93, 152, 255, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 32px rgba(3, 10, 26, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.resources-copy,
.resources-search-panel,
.resources-toolbar,
.resources-empty-state {
  border-radius: 30px;
  padding: 1.5rem;
  overflow: hidden;
  isolation: isolate;
}
.resources-copy::before,
.resources-search-panel::before,
.resources-toolbar::before,
.resource-card::before,
.resources-empty-state::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(170, 223, 255, 0.14), transparent 18%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(135, 201, 255, 0.05));
}
.resources-copy::after,
.resources-search-panel::after,
.resource-card::after {
  content: "";
  position: absolute;
  inset: -25%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0), rgba(127, 198, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.24;
  animation: footerOrbSpin 14s linear infinite;
  pointer-events: none;
}
.resources-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(170, 219, 255, 0.16);
  color: #dff1ff;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
.resources-copy h1,
.resources-toolbar-copy h2,
.resources-empty-state h3 {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: #f8fbff;
  line-height: 1.14;
}
.resources-copy h1 {
  font-size: 39px;
  letter-spacing: -0.03em;
}
.resources-copy p,
.resources-toolbar p,
.resource-card p,
.resources-empty-state p {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: rgba(227, 239, 255, 0.78);
  line-height: 1.85;
}
.resources-copy p {
  max-width: 62ch;
}
.resources-hero-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.resources-hero-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(92, 152, 245, 0.06)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(173, 220, 255, 0.14);
  color: #eef8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: allCoursesChipFloat 5.6s ease-in-out infinite;
}
.resources-hero-tags span:nth-child(2) {
  animation-delay: -1.2s;
}
.resources-hero-tags span:nth-child(3) {
  animation-delay: -2.4s;
}
.resources-hero-tags span:nth-child(4) {
  animation-delay: -3.6s;
}
.resources-highlight-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.resources-highlight-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 0.95rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(87, 147, 255, 0.07)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(173, 220, 255, 0.14);
  color: #eef8ff;
}
.resources-search-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.resources-search-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 62px;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(92, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
}
.resources-search-box i {
  color: #95dcff;
}
.resource-search-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #f5fbff;
  font: inherit;
}
.resource-search-input::placeholder {
  color: rgba(221, 237, 255, 0.52);
}
.resources-info-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(92, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(149, 201, 255, 0.14);
  overflow: hidden;
}
.resources-info-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.18) 48%, transparent 66%);
  transform: translateX(-135%);
  opacity: 0.55;
  animation: allCoursesShine 5.5s ease-in-out infinite;
  pointer-events: none;
}
.resources-info-strip strong,
.resources-info-strip span {
  position: relative;
  z-index: 1;
}
.resources-info-strip strong {
  color: #f5fbff;
  font-size: 1rem;
}
.resources-info-strip span {
  color: rgba(223, 237, 255, 0.76);
  line-height: 1.6;
  text-align: right;
}
.resources-panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.resources-panel-card {
  position: relative;
  min-height: 116px;
  padding: 1rem;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(93, 152, 255, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 26px rgba(3, 10, 26, 0.14);
  animation: allCoursesMiniFloat 6.8s ease-in-out infinite;
}
.resources-panel-card:nth-child(2) {
  animation-delay: -1.5s;
}
.resources-panel-card:nth-child(3) {
  animation-delay: -3s;
}
.resources-panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(172, 226, 255, 0.18), transparent 22%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 40%);
}
.resources-panel-card strong,
.resources-panel-card span {
  position: relative;
  z-index: 1;
  display: block;
}
.resources-panel-card strong {
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1;
}
.resources-panel-card span {
  margin-top: 0.65rem;
  color: rgba(225, 239, 255, 0.76);
  line-height: 1.6;
}
.resources-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.resources-result-text {
  color: rgba(215, 235, 255, 0.74);
  text-align: right;
}
.resources-groups {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.15rem;
}
.resource-group {
  position: relative;
  padding: 1.2rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(93, 152, 255, 0.05)),
    rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(149, 201, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 32px rgba(3, 10, 26, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
  animation: allCoursesMiniFloat 8s ease-in-out infinite;
}
.resource-group:nth-child(2) {
  animation-delay: -1.8s;
}
.resource-group:nth-child(3) {
  animation-delay: -3.6s;
}
.resource-group:nth-child(4) {
  animation-delay: -5.4s;
}
.resource-group::before,
.resource-group::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.resource-group::before {
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(166, 220, 255, 0.14), transparent 18%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(135, 201, 255, 0.04));
}
.resource-group::after {
  inset: -30%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0), rgba(127, 198, 255, 0.09), rgba(255, 255, 255, 0));
  opacity: 0.28;
  animation: footerOrbSpin 14s linear infinite;
}
.resource-group-head,
.resource-group-list,
.resource-card-copy {
  position: relative;
  z-index: 1;
}
.resource-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.resource-group-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(92, 152, 245, 0.05)),
    rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(149, 201, 255, 0.14);
  color: #d9efff;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.resource-group-head h3 {
  margin-top: 0.6rem;
  color: #f8fbff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}
.resource-group-count {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(173, 220, 255, 0.12);
  color: rgba(225, 239, 255, 0.78);
}
.resource-group-list {
  display: grid;
  gap: 0.8rem;
}
.resource-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  overflow: hidden;
  isolation: isolate;
  padding: 1.1rem 1.1rem 1.05rem;
  border-radius: 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.resource-card:hover {
  transform: translate3d(0, -8px, 0) rotateX(5deg) rotateY(-5deg);
  border-color: rgba(182, 224, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 40px rgba(3, 10, 26, 0.18),
    0 0 22px rgba(99, 170, 255, 0.08);
}
.resource-card h3,
.resource-card p,
.resource-link {
  position: relative;
  z-index: 1;
}
.resource-card-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.resource-card h3 {
  margin-top: 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.34;
}
.resource-card p {
  margin-top: 0.4rem;
  max-width: 72ch;
  line-height: 1.72;
}
.resource-link {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 168px;
  padding: 0 1.1rem;
  border-radius: 18px;
  text-decoration: none;
  color: #eaf6ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(92, 152, 245, 0.07)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(173, 220, 255, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.resource-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 30%, rgba(255, 255, 255, 0.18) 48%, transparent 64%);
  transform: translateX(-135%);
  opacity: 0;
}
.resource-card:hover .resource-link::after {
  opacity: 1;
  animation: allCoursesShine 0.95s ease forwards;
}
.resource-link:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(191, 229, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 30px rgba(2, 8, 24, 0.16),
    0 0 18px rgba(92, 166, 255, 0.12);
}
.resources-empty-state {
  text-align: center;
}
.resources-empty-icon {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  margin: 0 auto;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eff9ff;
  font-size: 1.6rem;
  background:
    linear-gradient(145deg, rgba(17, 45, 110, 0.94), rgba(33, 111, 255, 0.34)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.16), transparent 48%);
  border: 1px solid rgba(176, 221, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 22px rgba(97, 166, 255, 0.16);
}
/* resources page end */

/* gallery page start */
.gallery-page-section {
  position: relative;
  padding: calc(var(--nav-height) + 2rem) 0 4.9rem;
}
.gallery-page-shell {
  position: relative;
  display: grid;
  gap: 1.2rem;
}
.gallery-page-shell::before,
.gallery-page-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.gallery-page-shell::before {
  inset: 2% auto auto -1%;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 169, 255, 0.18), transparent 72%);
  filter: blur(28px);
  animation: allCoursesGlowFloat 13s ease-in-out infinite;
}
.gallery-page-shell::after {
  inset: auto 3% 12% auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 224, 255, 0.12), transparent 72%);
  filter: blur(28px);
  animation: allCoursesGlowFloatAlt 15s ease-in-out infinite;
}
.gallery-page-hero,
.gallery-page-toolbar,
.gallery-showcase-card {
  position: relative;
  z-index: 1;
}
.gallery-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.1rem;
}
.gallery-page-copy,
.gallery-page-summary,
.gallery-page-toolbar,
.gallery-showcase-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(93, 152, 255, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 32px rgba(3, 10, 26, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.gallery-page-copy,
.gallery-page-summary,
.gallery-page-toolbar {
  padding: 1.5rem;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
}
.gallery-page-copy::before,
.gallery-page-summary::before,
.gallery-page-toolbar::before,
.gallery-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(170, 223, 255, 0.14), transparent 18%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(135, 201, 255, 0.05));
}
.gallery-page-copy::after,
.gallery-page-summary::after,
.gallery-showcase-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0), rgba(127, 198, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.22;
  animation: footerOrbSpin 14s linear infinite;
  pointer-events: none;
}
.gallery-page-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(170, 219, 255, 0.16);
  color: #dff1ff;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
.gallery-page-copy h1,
.gallery-toolbar-copy h2,
.gallery-card-copy h3 {
  position: relative;
  z-index: 1;
  color: #f8fbff;
}
.gallery-page-copy h1,
.gallery-toolbar-copy h2 {
  margin-top: 1rem;
  line-height: 1.15;
}
.gallery-page-copy h1 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
}
.gallery-page-copy p,
.gallery-card-copy p {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: rgba(227, 239, 255, 0.78);
  line-height: 1.82;
}
.gallery-page-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}
.gallery-page-chips span,
.gallery-filter-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(92, 152, 245, 0.06)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(173, 220, 255, 0.14);
  color: #eef8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: allCoursesChipFloat 5.8s ease-in-out infinite;
}
.gallery-page-chips span:nth-child(2),
.gallery-filter-list span:nth-child(2) {
  animation-delay: -1.2s;
}
.gallery-page-chips span:nth-child(3),
.gallery-filter-list span:nth-child(3) {
  animation-delay: -2.4s;
}
.gallery-page-chips span:nth-child(4),
.gallery-filter-list span:nth-child(4) {
  animation-delay: -3.6s;
}
.gallery-page-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-content: start;
}
.gallery-summary-card {
  position: relative;
  min-height: 152px;
  padding: 1rem;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(93, 152, 255, 0.05)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(149, 201, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 26px rgba(3, 10, 26, 0.14);
  animation: allCoursesMiniFloat 6.8s ease-in-out infinite;
}
.gallery-summary-card:nth-child(2) {
  animation-delay: -1.5s;
}
.gallery-summary-card:nth-child(3) {
  animation-delay: -3s;
}
.gallery-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(172, 226, 255, 0.18), transparent 22%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}
.gallery-summary-card strong,
.gallery-summary-card span {
  position: relative;
  z-index: 1;
  display: block;
}
.gallery-summary-card strong {
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
}
.gallery-summary-card span {
  margin-top: 0.7rem;
  color: rgba(225, 239, 255, 0.76);
  line-height: 1.6;
}
.gallery-page-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.gallery-filter-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}
.gallery-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  grid-auto-rows: minmax(220px, auto);
}
.gallery-showcase-card {
  padding: 1rem;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.gallery-showcase-card:hover {
  transform: translate3d(0, -8px, 0) rotateX(5deg) rotateY(-5deg);
  border-color: rgba(182, 224, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 40px rgba(3, 10, 26, 0.18),
    0 0 22px rgba(99, 170, 255, 0.08);
}
.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-card-wide {
  grid-column: span 2;
}
.gallery-card-badge,
.gallery-card-visual,
.gallery-card-copy {
  position: relative;
  z-index: 1;
}
.gallery-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(171, 220, 255, 0.14);
  color: #ecf8ff;
  font-size: 0.82rem;
}
.gallery-card-visual {
  position: relative;
  min-height: 210px;
  margin-top: 0.95rem;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(163, 213, 255, 0.14);
}
.gallery-card-large .gallery-card-visual {
  min-height: 300px;
}
.gallery-card-visual img {
  width: clamp(68px, 9vw, 110px);
  max-width: 34%;
  object-fit: contain;
  opacity: 0.84;
  filter: drop-shadow(0 10px 18px rgba(5, 12, 28, 0.32));
}
.gallery-card-visual span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(8, 18, 44, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f6fbff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.gallery-card-copy h3 {
  margin-top: 1rem;
  font-size: 1.34rem;
}
.gallery-card-copy p {
  margin-top: 0.55rem;
}
.gallery-tone-class .gallery-card-visual {
  background:
    radial-gradient(circle at 18% 18%, rgba(163, 217, 255, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(75, 124, 204, 0.92), rgba(15, 44, 102, 0.88));
}
.gallery-tone-project .gallery-card-visual {
  background:
    radial-gradient(circle at 78% 18%, rgba(184, 219, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(48, 92, 172, 0.9), rgba(18, 64, 140, 0.86));
}
.gallery-tone-support .gallery-card-visual {
  background:
    radial-gradient(circle at 22% 20%, rgba(170, 230, 255, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(36, 92, 140, 0.9), rgba(17, 58, 102, 0.88));
}
.gallery-tone-event .gallery-card-visual {
  background:
    radial-gradient(circle at 82% 20%, rgba(199, 223, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(31, 71, 138, 0.92), rgba(11, 33, 85, 0.88));
}
.gallery-tone-lab .gallery-card-visual {
  background:
    radial-gradient(circle at 18% 18%, rgba(159, 212, 255, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(43, 109, 161, 0.9), rgba(20, 70, 117, 0.86));
}
.gallery-tone-career .gallery-card-visual {
  background:
    radial-gradient(circle at 78% 18%, rgba(162, 220, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(30, 92, 146, 0.9), rgba(17, 50, 102, 0.88));
}
/* gallery page end */
@keyframes allCoursesGlowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.82;
  }
  50% {
    transform: translate3d(12px, -12px, 0) scale(1.08);
    opacity: 1;
  }
}
@keyframes allCoursesGlowFloatAlt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.74;
  }
  50% {
    transform: translate3d(-10px, 10px, 0) scale(1.06);
    opacity: 0.96;
  }
}
@keyframes allCoursesShine {
  0% {
    transform: translateX(-135%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(135%);
    opacity: 0;
  }
}
@keyframes allCoursesChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes allCoursesMiniFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes allCoursesFeaturedPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (max-width: 1024px) {
  .resources-hero,
  .resources-groups {
    grid-template-columns: 1fr;
  }

  .gallery-page-hero,
  .gallery-showcase-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .gallery-page-summary {
    grid-template-columns: 1fr;
  }

  .gallery-card-large,
  .gallery-card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .resources-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .resources-info-strip,
  .resource-group-head,
  .resource-card {
    align-items: start;
    flex-direction: column;
  }

  .resources-panel-grid {
    grid-template-columns: 1fr;
  }

  .resources-info-strip span,
  .resources-result-text {
    text-align: left;
  }

  .resource-link {
    width: 100%;
  }

  .all-courses-hero,
  .all-courses-grid {
    grid-template-columns: 1fr 1fr;
  }

  .all-courses-hero {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-founder,
  .about-trainer-grid {
    grid-template-columns: 1fr;
  }


  .site-footer {
    padding: 4.2rem 0 1.9rem;
  }

  .footer-cta-bar,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    padding: 1.5rem 1rem 1rem;
    border-radius: 30px;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

  .faq-section {
    padding: 4.2rem 0 4.4rem;
  }

  .faq-shell {
    padding: 1.15rem;
    border-radius: 28px;
  }

  .final-cta-section {
    padding: 4.2rem 0 4.6rem;
  }

  .final-cta-shell {
    padding: 2.45rem 1.2rem 2rem;
    border-radius: 30px;
  }

  .final-cta-mini {
    width: min(100%, 560px);
  }

  .roadmap-section {
    padding: 4.3rem 0 4.6rem;
  }

  .roadmap-shell {
    padding: 1.15rem;
    border-radius: 28px;
  }

  .roadmap-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-choose-section {
    padding: 4.2rem 0 4.5rem;
  }

  .why-choose-shell {
    padding: 0.45rem 0;
    border-radius: 30px;
  }

  .why-choose-grid,
  .why-choose-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero-section {
    padding: 8rem 0 3.5rem;
  }

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

  .hero-copy,
  .hero-visual {
    max-width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual-shell {
    min-height: 540px;
  }

  .hero-dashboard {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .site-header {
    border-radius: 14px;
    overflow: visible;
  }

  .site-header::before {
    inset: 0.15rem 0.75rem;
  }

  .site-header::after {
    inset: 0.15rem 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    border-radius: 18px;
    padding: 0.7rem;
    background: #090027;
    border: 1px solid rgba(255, 255, 255, 0.78);
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    animation: none;
    z-index: 120;
    box-shadow: 0 18px 40px rgba(18, 53, 126, 0.16);
    max-height: calc(100vh - var(--nav-height) - 2rem);
    overflow-y: auto;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    transition-delay: calc(var(--nav-index) * 0.05s);
  }

  .main-nav.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
    margin-left: 0;
  }

  .nav-wrap {
    min-height: 72px;
    padding: 0 0.9rem;
  }

  .brand img {
    height: clamp(36px, 5.5vw, 44px);
  }
  .course-section-head {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 38px;
    }
    .course-grid {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
  .resources-page {
    padding: calc(var(--nav-height) + 1.6rem) 0 4rem;
  }

  .resources-copy,
  .resources-search-panel,
  .resources-toolbar,
  .resources-empty-state {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .gallery-page-section {
    padding: calc(var(--nav-height) + 1.6rem) 0 4rem;
  }

  .gallery-page-copy,
  .gallery-page-summary,
  .gallery-page-toolbar {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .gallery-card-large .gallery-card-visual,
  .gallery-card-visual {
    min-height: 230px;
  }

  .gallery-page-chips,
  .gallery-filter-list {
    gap: 0.55rem;
  }

  .gallery-page-chips span,
  .gallery-filter-list span {
    min-height: 38px;
    padding-inline: 0.82rem;
    font-size: 0.88rem;
  }

  .gallery-showcase-card {
    padding: 0.92rem;
    border-radius: 24px;
  }

  .gallery-card-visual {
    border-radius: 22px;
  }

  .resources-info-strip {
    padding: 0.95rem 1rem;
    border-radius: 20px;
  }

  .resources-hero-tags {
    gap: 0.55rem;
  }

  .resources-hero-tags span {
    min-height: 38px;
    padding-inline: 0.8rem;
    font-size: 0.88rem;
  }

  .resource-group,
  .resource-card {
    border-radius: 22px;
  }

  .resource-group {
    padding: 1rem;
  }

  .resource-group-head h3 {
    font-size: 1.12rem;
  }

  .resource-card {
    padding: 1rem;
  }

  .resources-panel-card {
    min-height: auto;
    border-radius: 20px;
  }

  .all-courses-page {
    padding: calc(var(--nav-height) + 1.6rem) 0 4rem;
  }

  .all-courses-copy,
  .all-courses-hero-panel {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .about-page-section {
    padding: calc(var(--nav-height) + 1.6rem) 0 4rem;
  }

  .about-hero-copy,
  .about-mission-grid,
  .about-timeline,
  .about-founder {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .about-timeline-item {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .about-hero-showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding: 7.6rem 0 3.2rem;
  }

  .hero-grid {
    gap: 1.8rem;
  }

  .hero-copy p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.85;
  }

  .hero-highlights,
  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats div {
    min-width: 0;
  }

  .hero-dashboard:hover,
  .hero-highlight-card:hover,
  .hero-stats div:hover,
  .dashboard-mini-card:hover {
    transform: translateY(-4px);
  }

  .course-section {
    padding: 4.2rem 0 4.4rem;
  }

  .course-section::before {
    inset: 6% 2% 0;
    border-radius: 28px;
  }

  .course-section::after {
    width: 13rem;
    height: 13rem;
    left: -4%;
  }

  .course-section .container::before {
    width: 9rem;
    height: 9rem;
    right: 0;
    top: 1.2rem;
  }

  .course-grid {
    grid-template-columns: 1fr;
    padding-left: 5px;
    padding-right: 5px;
  }
  .course-section-head {
        padding-top: 88px;
    }

  .course-card:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 640px) {
  .resources-page {
    padding: calc(var(--nav-height) + 1.2rem) 0 3.7rem;
  }

  .gallery-page-section {
    padding: calc(var(--nav-height) + 1.2rem) 0 3.7rem;
  }

  .gallery-page-copy h1,
  .gallery-toolbar-copy h2 {
    font-size: 1.8rem;
    max-width: 100%;
  }

  .resources-copy h1,
  .resources-toolbar-copy h2 {
    font-size: 1.8rem;
    max-width: 100%;
  }

  .resources-info-strip strong,
  .resources-info-strip span,
  .resource-group-count,
  .resources-panel-card span {
    font-size: 0.9rem;
  }

  .all-courses-page {
    padding: calc(var(--nav-height) + 1.2rem) 0 3.7rem;
  }

  .all-courses-copy h1 {
    font-size: 1.8rem;
    max-width: 100%;
  }

  .all-courses-grid {
    grid-template-columns: 1fr;
  }

  .about-page-section {
    padding: calc(var(--nav-height) + 1.2rem) 0 3.7rem;
  }

  .about-hero-copy h1,
  .about-story-head h2,
  .about-founder-copy h2 {
    font-size: 1.8rem;
  }

  .about-timeline-item,
  .about-founder {
    grid-template-columns: 1fr;
  }

  .about-trainer-modal-dialog {
    padding: 1.1rem;
    border-radius: 24px;
  }

  .about-trainer-modal-head {
    grid-template-columns: 1fr;
  }

  .about-trainer-modal-icon {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    font-size: 2rem;
  }

  .about-hero-actions {
    flex-direction: column;
  }

  .about-hero-btn {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding: 3.7rem 0 1.8rem;
  }

  .site-footer .container {
    width: min(100% - 0.8rem, 1380px);
  }

  .footer-shell {
    padding: 1.2rem 0.9rem 0.9rem;
    border-radius: 24px;
  }

  .footer-shell::before {
    inset: 0.6rem;
    border-radius: 18px;
    background-size:
      auto,
      52px 52px,
      52px 52px;
  }

  .footer-logo {
    display: inline-flex;
  }

  .footer-cta-copy h2 {
    font-size: 1.78rem;
    line-height: 1.22;
  }

  .footer-cta-copy p,
  .footer-brand-copy {
    font-size: 0.95rem;
    line-height: 1.74;
  }

  .footer-menu-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .faq-section {
    padding: 3.7rem 0 3.95rem;
  }

  .faq-shell {
    padding: 1rem;
    border-radius: 24px;
  }

  .faq-shell::before {
    inset: 0.6rem;
    border-radius: 18px;
    background-size: 52px 52px;
  }

  .faq-head {
    margin-bottom: 1.7rem;
  }

  .faq-head h2 {
    font-size: 1.75rem;
    line-height: 1.24;
  }

  .faq-head p {
    font-size: 0.95rem;
    line-height: 1.74;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-card {
    padding: 1rem;
    border-radius: 20px;
  }

  .faq-card:last-child {
    grid-column: auto;
  }

  .final-cta-section {
    padding: 3.7rem 0 4rem;
  }

  .final-cta-shell {
    padding: 2rem 1rem 1.7rem;
    border-radius: 24px;
  }

  .final-cta-shell::before {
    inset: 0.6rem;
    border-radius: 18px;
    background-size: 52px 52px;
  }

  .final-cta-shell h2 {
    font-size: 1.82rem;
    line-height: 1.22;
  }

  .final-cta-shell p {
    font-size: 0.95rem;
    line-height: 1.74;
  }

  .final-cta-points {
    gap: 0.7rem;
  }

  .final-cta-points span {
    width: 100%;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-btn {
    width: 100%;
  }

  .final-cta-mini {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .roadmap-section {
    padding: 3.75rem 0 4rem;
  }

  .roadmap-shell {
    padding: 1rem;
    border-radius: 24px;
  }

  .roadmap-shell::before {
    inset: 0.6rem;
    border-radius: 18px;
    background-size: 52px 52px;
  }

  .roadmap-head {
    margin-bottom: 1.7rem;
  }

  .roadmap-head h2 {
    font-size: 1.75rem;
    line-height: 1.24;
  }

  .roadmap-head p {
    font-size: 0.95rem;
    line-height: 1.74;
  }

  .roadmap-track {
    grid-template-columns: 1fr;
  }

  .roadmap-step {
    padding: 1rem;
    border-radius: 20px;
  }

  .why-choose-section {
    padding: 3.7rem 0 4rem;
  }

  .why-choose-shell {
    padding: 0.35rem 0;
    border-radius: 26px;
  }

  .why-choose-shell::before {
    inset: 0.1rem 0;
    border-radius: 22px;
  }

  .why-choose-copy {
    padding: 0.3rem 0.1rem 0.7rem;
  }

  .why-choose-copy h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .why-choose-copy p {
    font-size: 0.96rem;
    line-height: 1.76;
  }

  .why-choose-highlights {
    gap: 0.7rem;
  }

  .why-highlight-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .why-choose-grid,
  .why-choose-metrics {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 0;
    padding: 1rem;
    border-radius: 22px;
    grid-template-columns: 52px 1fr;
    gap: 0.85rem;
  }

  .why-card h3 {
    font-size: 1.18rem;
  }

  .why-metric-card {
    border-radius: 18px;
  }

  .course-section {
    padding: 3.6rem 0 3.9rem;
  }

  .course-section::before {
    inset: 5% 0.35rem 0;
    border-radius: 24px;
  }

  .course-section .container {
    width: min(100% - 0.9rem, var(--container));
  }

  .course-grid {
    gap: 0.95rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-section {
    padding: 7.2rem 0 3rem;
  }

  .hero-section::before {
    width: 12rem;
    height: 12rem;
    left: -10%;
  }

  .hero-section::after {
    width: 11rem;
    height: 11rem;
    right: -8%;
  }

  .hero-copy h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-highlights,
  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .hero-highlight-card {
    padding: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual-shell {
    min-height: 420px;
  }

  .hero-orbit-one {
    width: 300px;
    height: 300px;
  }

  .hero-orbit-two {
    width: 380px;
    height: 380px;
  }

  .hero-dashboard {
    padding: 1rem;
    border-radius: 24px;
  }

  .dashboard-main-card,
  .dashboard-mini-card {
    padding: 1rem;
  }

  .dashboard-main-card h2 {
    font-size: 1.65rem;
  }

  .course-section-head h2 {
    font-size: 1.52rem;
    line-height: 1.32;
    max-width: 100%;
  }

  .course-section-head {
    max-width: 100%;
    margin-bottom: 1.3rem;
            margin-top: -19px;
        padding-left: 15px;
        padding-right: 15px;
  }

  .course-section-head p {
    max-width: 100%;
    font-size: 0.93rem;
    line-height: 1.72;
  }

  .course-section-kicker {
    padding: 0.52rem 0.82rem;
    font-size: 0.82rem;
  }

  .course-card {
    padding: 0.95rem;
    border-radius: 22px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.11),
      0 18px 34px rgba(3, 11, 28, 0.24);
  }

  .course-banner {
    min-height: 150px;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .course-banner span {
    font-size: 0.82rem;
    padding: 0.52rem 0.76rem;
  }

  .course-card h3 {
    font-size: 1.12rem;
    line-height: 1.32;
  }

  .course-link {
    width: 100%;
    min-height: 44px;
    margin-top: 0.9rem;
    padding: 0.72rem 0.9rem;
    font-size: 0.92rem;
  }

  body::before,
  body::after{
    width: 28rem;
    height: 28rem;
    filter: blur(24px);
  }

  .main_body::before{
    background-size:
      auto,
      auto,
      auto,
      64px 64px,
      64px 64px;
  }

  .main_body::after{
    opacity: 0.3;
  }

  .cursor-dot,
  .cursor-ring,
  .cursor-aura{
    display: none;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .site-header {
    top: 0.5rem;
  }

  .site-header::before {
    inset: 0.1rem 0.5rem;
    border-radius: 18px;
  }

.site-header::after {
  inset: 0.1rem 0.5rem;
  border-radius: 18px;
}

  .nav-wrap {
    gap: 0.75rem;
    min-height: 68px;
    padding: 0 0.95rem;
  }

  .brand img {
    height: 38px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: calc(68px + 0.7rem);
    padding: 0.6rem;
  }

  .main-nav a {
    font-size: 0.94rem;
    min-height: 48px;
  }
}

@media (max-width: 420px) {
  .why-choose-section {
    padding: 3.4rem 0 3.8rem;
  }

  .why-choose-shell {
    padding: 0.3rem 0;
    border-radius: 22px;
  }

  .why-choose-shell::before {
    inset: 0.1rem 0;
    border-radius: 18px;
    background-size: 52px 52px;
  }

  .why-choose-kicker {
    padding: 0.55rem 0.82rem;
    font-size: 0.76rem;
  }

  .why-choose-copy h2 {
    font-size: 1.62rem;
    line-height: 1.2;
  }

  .why-choose-copy p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .why-highlight-chip {
    padding: 0.68rem 0.8rem;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .why-metric-card {
    padding: 0.9rem 0.85rem;
  }

  .why-metric-card strong {
    font-size: 1.18rem;
  }

  .why-card {
    padding: 0.9rem;
    border-radius: 18px;
  }

  .why-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.1rem;
  }

  .why-card h3 {
    margin-top: 0.85rem;
    font-size: 1.08rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }

  .back-to-top,
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    border-radius: 20px;
  }

  .back-to-top {
    right: 0.9rem;
  }

  .floating-whatsapp {
    left: 0.9rem;
  }

  .floating-whatsapp {
    bottom: 1rem;
  }

  .back-to-top {
    bottom: 1rem;
  }

  .back-to-top-core,
  .floating-whatsapp-core {
    width: 38px;
    height: 38px;
    border-radius: 15px;
  }

  .course-section {
    padding: 3.35rem 0 3.8rem;
  }

  .course-section::before {
    inset: 4.5% 0.15rem 0;
    border-radius: 22px;
  }

  .course-section::after {
    width: 10rem;
    height: 10rem;
    left: -10%;
  }

  .course-section .container::before {
    width: 6rem;
    height: 6rem;
    right: 0.2rem;
    top: 1rem;
  }

  .course-section-head h2 {
    font-size: 1.38rem;
    line-height: 1.34;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .course-section-head p {
    font-size: 0.9rem;
    line-height: 1.68;
    padding-left: 10px;
    padding-right: 10px;
  }

  .course-card {
    padding: 0.9rem;
    border-radius: 18px;
  }

  .course-badge {
    font-size: 0.76rem;
    padding: 0.36rem 0.64rem;
  }

  .course-banner {
    min-height: 200px;
    border-radius: 16px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.8rem;
    gap: 0.6rem;
  }

  .course-banner i {
    width: 44px;
    height: 44px;
    font-size: 1.02rem;
    border-radius: 14px;
  }

  .course-banner span {
    width: 100%;
    text-align: center;
    font-size: 0.78rem;
    padding: 0.5rem 0.66rem;
  }

  .course-card h3 {
    margin-top: 0.75rem;
    font-size: 1.08rem;
    line-height: 1.34;
  }

  .course-link {
    min-height: 42px;
    padding: 0.72rem 0.85rem;
    font-size: 0.88rem;
  }

  .course-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 420px) {
  .resources-copy,
  .resources-search-panel,
  .resources-toolbar,
  .resource-card,
  .resources-empty-state {
    padding: 1rem 0.9rem;
    border-radius: 20px;
  }

  .resources-kicker {
    padding: 0.56rem 0.82rem;
    font-size: 0.82rem;
  }

  .resources-copy h1,
  .resources-toolbar-copy h2,
  .resources-empty-state h3 {
    font-size: 1.46rem;
    line-height: 1.24;
  }

  .resources-copy p,
  .resources-toolbar p,
  .resource-card p,
  .resources-empty-state p {
    font-size: 0.88rem;
  }

  .resource-card h3 {
    font-size: 1.12rem;
  }

  .all-courses-copy,
  .all-courses-hero-panel,
  .all-course-card {
    padding: 1rem 0.9rem;
    border-radius: 20px;
  }

  .all-courses-kicker {
    padding: 0.56rem 0.82rem;
    font-size: 0.82rem;
  }

  .all-courses-copy h1 {
    font-size: 1.46rem;
    line-height: 1.24;
  }

  .all-courses-copy p,
  .all-course-card p {
    font-size: 0.88rem;
  }

  .all-course-card h3 {
    font-size: 1.12rem;
  }

  .about-hero-copy,
  .about-mission-grid,
  .about-timeline,
  .about-founder,
  .about-trainer-card {
    padding: 1rem 0.9rem;
    border-radius: 20px;
  }

  .about-kicker {
    padding: 0.56rem 0.82rem;
    font-size: 0.82rem;
  }

  .about-hero-copy h1,
  .about-story-head h2,
  .about-founder-copy h2 {
    font-size: 1.48rem;
    line-height: 1.24;
  }

  .about-panel-card h3,
  .about-timeline-card h3,
  .about-trainer-card h3,
  .footer-links-card h3,
  .footer-contact-card h3 {
    font-size: 1.18rem;
  }

  .about-hero-copy p,
  .about-story-head p,
  .about-founder-copy p,
  .about-panel-card p,
  .about-timeline-card p,
  .about-trainer-card p,
  .about-trainer-card span,
  .about-hero-showcase-card span {
    font-size: 0.88rem;
  }

  .site-footer {
    padding: 3.3rem 0 1.6rem;
  }

  .footer-shell {
    padding: 1rem 0.8rem 0.85rem;
    border-radius: 20px;
  }

  .footer-shell::before {
    inset: 0.45rem;
    border-radius: 15px;
  }

  .footer-kicker {
    padding: 0.56rem 0.82rem;
    font-size: 0.82rem;
  }

  .footer-card {
    padding: 1rem 0.88rem 0.92rem;
    border-radius: 20px;
  }

  .footer-cta-bar {
    padding: 1.05rem 0.92rem;
    border-radius: 22px;
  }

  .footer-cta-copy h2 {
    font-size: 1.46rem;
    line-height: 1.28;
  }

  .footer-cta-copy p,
  .footer-brand-copy,
  .footer-menu-links a,
  .footer-contact-item span,
  .footer-dev-box p {
    font-size: 0.88rem;
  }

  .footer-cta-btn {
    width: 100%;
    min-width: 0;
  }

  .footer-social-link {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  #live-footer-clock {
    font-size: 1.55rem;
  }

  .faq-section {
    padding: 3.3rem 0 3.65rem;
  }

  .faq-shell {
    padding: 0.85rem;
    border-radius: 20px;
  }

  .faq-shell::before {
    inset: 0.45rem;
    border-radius: 15px;
  }

  .faq-kicker {
    padding: 0.56rem 0.82rem;
    font-size: 0.82rem;
  }

  .faq-head h2 {
    font-size: 1.46rem;
    line-height: 1.28;
  }

  .faq-head p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .faq-card {
    padding: 0.9rem;
    border-radius: 18px;
  }

  .faq-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1rem;
  }

  .faq-card h3 {
    font-size: 1.04rem;
  }

  .faq-card p {
    font-size: 0.88rem;
  }

  .final-cta-section {
    padding: 3.3rem 0 3.7rem;
  }

  .final-cta-shell {
    padding: 1.7rem 0.9rem 1.45rem;
    border-radius: 20px;
  }

  .final-cta-shell::before {
    inset: 0.45rem;
    border-radius: 15px;
  }

  .final-cta-kicker {
    padding: 0.56rem 0.82rem;
    font-size: 0.82rem;
  }

  .final-cta-shell h2 {
    font-size: 1.5rem;
    line-height: 1.26;
  }

  .final-cta-shell p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .final-cta-btn {
    min-height: 50px;
    border-radius: 16px;
    font-size: 0.94rem;
  }

  .final-cta-mini-card {
    padding: 0.88rem 0.85rem;
    border-radius: 18px;
  }

  .final-cta-mini-card strong {
    font-size: 0.94rem;
  }

  .final-cta-mini-card span {
    font-size: 0.84rem;
  }

  .roadmap-section {
    padding: 3.35rem 0 3.75rem;
  }

  .roadmap-shell {
    padding: 0.85rem;
    border-radius: 20px;
  }

  .roadmap-shell::before {
    inset: 0.45rem;
    border-radius: 15px;
  }

  .roadmap-kicker {
    padding: 0.56rem 0.82rem;
    font-size: 0.82rem;
  }

  .roadmap-head h2 {
    font-size: 1.46rem;
    line-height: 1.28;
  }

  .roadmap-head p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .roadmap-step {
    padding: 0.9rem;
    border-radius: 18px;
  }

  .roadmap-step-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 1.1rem;
  }

  .roadmap-step h3 {
    font-size: 1.04rem;
  }

  .roadmap-step p {
    font-size: 0.88rem;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .hero-kicker {
    font-size: 0.88rem;
    padding: 0.58rem 0.85rem;
  }

  .hero-copy h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-btn {
    min-height: 52px;
    padding: 0.9rem 1rem;
    font-size: 0.96rem;
  }

  .hero-dashboard {
    padding: 0.85rem;
  }

  .dashboard-main-card h2 {
    font-size: 1.45rem;
  }

  .course-chip-wrap span {
    width: 100%;
    text-align: center;
  }

  .nav-wrap {
    padding: 0 0.9rem;
  }
}

@media (max-width: 360px) {
  .resources-copy h1,
  .resources-toolbar-copy h2,
  .resources-empty-state h3 {
    font-size: 1.32rem;
  }

  .gallery-page-copy h1,
  .gallery-toolbar-copy h2,
  .gallery-card-copy h3 {
    font-size: 1.32rem;
  }

  .gallery-page-copy p,
  .gallery-card-copy p,
  .gallery-summary-card span {
    font-size: 0.84rem;
  }

  .all-courses-copy h1 {
    font-size: 1.32rem;
  }

  .about-hero-copy h1,
  .about-story-head h2,
  .about-founder-copy h2 {
    font-size: 1.32rem;
  }

  .footer-cta-copy h2 {
    font-size: 1.28rem;
  }

  .footer-cta-copy p,
  .footer-brand-copy,
  #live-footer-date,
  .footer-bottom p,
  .footer-bottom span {
    font-size: 0.84rem;
  }

  .final-cta-shell h2 {
    font-size: 1.32rem;
  }

  .final-cta-shell p,
  .final-cta-mini-card span {
    font-size: 0.84rem;
  }

  .faq-head h2 {
    font-size: 1.3rem;
  }

  .faq-head p,
  .faq-card p {
    font-size: 0.84rem;
  }

  .final-cta-shell h2 {
    font-size: 1.32rem;
  }

  .final-cta-shell p {
    font-size: 0.84rem;
  }

  .roadmap-head h2 {
    font-size: 1.3rem;
  }

  .roadmap-head p,
  .roadmap-step p {
    font-size: 0.84rem;
  }

  .why-choose-copy h2 {
    font-size: 1.3rem;
  }

  .why-highlight-chip,
  .why-card p,
  .why-choose-copy p {
    font-size: 0.86rem;
  }

  .course-section .container {
    width: min(100% - 0.7rem, var(--container));
  }

  .course-section-head h2 {
    font-size: 1.28rem;
    max-width: 100%;
  }

  .course-card {
    padding: 0.82rem;
  }

  .course-banner {
    min-height: 132px;
    padding: 0.76rem;
  }

  .course-card h3 {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-page-shell::before,
  .gallery-page-shell::after,
  .gallery-page-copy::after,
  .gallery-page-summary::after,
  .gallery-showcase-card::after,
  .gallery-page-chips span,
  .gallery-filter-list span,
  .gallery-summary-card,
  .resources-shell::before,
  .resources-shell::after,
  .resources-copy::after,
  .resources-search-panel::after,
  .resources-info-strip::after,
  .resources-hero-tags span,
  .resources-panel-card,
  .resource-group,
  .resource-group::after,
  .resource-card::after,
  .all-courses-shell::before,
  .all-courses-shell::after,
  .all-courses-copy::after,
  .all-courses-hero-panel::after,
  .all-course-card::after,
  .about-reveal,
  .about-page-shell::before,
  .about-trainer-card,
  .about-mini-card,
  .about-trainer-modal-dialog,
  .about-hero-copy::after,
  .about-mission-grid::after,
  .about-timeline::after,
  .about-founder::after,
  .about-trainer-card::after,
  .about-trainer-modal-dialog::after,
  .site-footer::before,
  .site-footer::after,
  .footer-shell::after,
  .footer-card::after,
  .faq-section::before,
  .faq-section::after,
  .faq-shell::after,
  .final-cta-section::before,
  .final-cta-section::after,
  .final-cta-shell::after,
  .final-cta-kicker::after,
  .final-cta-orbit,
  .final-cta-glow,
  .final-cta-points span,
  .final-cta-mini-card,
  .faq-head,
  .faq-kicker,
  .faq-kicker::after,
  .faq-card,
  .faq-card::before,
  .roadmap-section::before,
  .roadmap-section::after,
  .roadmap-shell::after,
  .roadmap-head,
  .roadmap-kicker,
  .roadmap-kicker::after,
  .roadmap-track::after,
  .roadmap-step,
  .roadmap-step::before,
  .why-choose-section::before,
  .why-choose-section::after,
  .why-choose-shell::after,
  .why-choose-copy,
  .why-highlight-chip,
  .why-metric-card,
  .why-card,
  .why-card::before,
  .why-metric-card::before,
  .course-section::after,
  .course-section::before,
  .course-section .container::before,
  .course-section .container::after,
  .course-card,
  .course-card::before,
  .back-to-top::after,
  .back-to-top-core,
  .back-to-top-core i,
  .floating-whatsapp::after,
  .floating-whatsapp-core {
    animation: none;
  }

  .course-card,
  .course-link,
  .course-card:hover {
    transition: none;
    transform: none;
  }
}
@media(max-width: 500px){
  .main_body{
  padding-left: 10px;
  padding-right: 10px;
  zoom: 86%;
  }
}

/* =========================================
   GALLERY SECTION STYLES
   ========================================= */

.gallery-section {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
  z-index: 1;
  margin-top: 40px;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 173, 255, 0.12), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

.gallery-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 204, 255, 0.08), transparent 70%);
  filter: blur(24px);
  z-index: -1;
  pointer-events: none;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
  animation: galleryFadeUp 0.8s ease-out forwards;
}

.gallery-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(108, 177, 255, 0.1);
  border: 1px solid rgba(135, 194, 255, 0.2);
  color: #a5d6ff;
  font-family: poppins, hindsiligur, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px rgba(4, 12, 35, 0.2);
}

.gallery-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #f6fbff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gallery-title strong {
  background: linear-gradient(135deg, #ffffff, #6cb1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 12px rgba(108, 177, 255, 0.2);
}

.gallery-desc {
  color: rgba(229, 239, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.gallery-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(135, 194, 255, 0.15);
  color: #eef4ff;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-family: hindsiligur, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-filter-btn:hover {
  background: rgba(108, 177, 255, 0.15);
  border-color: rgba(135, 194, 255, 0.4);
  transform: translateY(-2px);
}

.gallery-filter-btn.is-active {
  background: linear-gradient(135deg, rgba(88, 151, 255, 0.8), rgba(45, 101, 255, 0.9));
  border-color: rgba(135, 194, 255, 0.6);
  color: #fff;
  box-shadow: 0 8px 20px rgba(45, 101, 255, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
}

.gallery-item {
  position: relative;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-item.hidden {
  transform: scale(0.8);
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(4, 12, 35, 0.3);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(135, 194, 255, 0.1);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.gallery-item-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(135, 194, 255, 0.6), rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
  pointer-events: none;
}

.gallery-item:hover .gallery-item-inner {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(135, 194, 255, 0.5);
  box-shadow: 0 25px 45px rgba(4, 12, 35, 0.4), 0 0 25px rgba(88, 151, 255, 0.15);
}

.gallery-item:hover .gallery-item-inner::before {
  opacity: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 12, 35, 0.9) 0%, rgba(4, 12, 35, 0.4) 50%, rgba(4, 12, 35, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-category-badge {
  display: inline-block;
  background: rgba(88, 151, 255, 0.2);
  border: 1px solid rgba(135, 194, 255, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #a5d6ff;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item-title {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-family: hindsiligur, sans-serif;
}

.gallery-zoom-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-zoom-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-zoom-btn:hover {
  background: rgba(88, 151, 255, 0.6);
  border-color: #fff;
  box-shadow: 0 0 20px rgba(88, 151, 255, 0.6);
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 18, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(135, 194, 255, 0.15);
}

.gallery-lightbox.is-open .lightbox-content {
  transform: scale(1);
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 0, 0, 0.6);
  transform: rotate(90deg);
}

.lightbox-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(135, 194, 255, 0.2);
  border-top-color: #6cb1ff;
  border-radius: 50%;
  animation: lightboxSpin 1s linear infinite;
  z-index: -1;
}

@keyframes lightboxSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes galleryFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   CONTACT SECTION STYLES
   ========================================= */

.contact-section {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
  z-index: 1;
}

/* Background glows */
.contact-section::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -5%;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135, 194, 255, 0.1), transparent 70%);
  filter: blur(24px);
  z-index: -1;
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 173, 255, 0.08), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpContact 0.8s ease-out forwards;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(108, 177, 255, 0.1);
  border: 1px solid rgba(135, 194, 255, 0.2);
  color: #a5d6ff;
  font-family: poppins, hindsiligur, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px rgba(4, 12, 35, 0.2);
}

.contact-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #f6fbff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-title strong {
  background: linear-gradient(135deg, #ffffff, #6cb1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 12px rgba(108, 177, 255, 0.2);
}

.contact-desc {
  color: rgba(229, 239, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media(max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Info Cards */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(88, 151, 255, 0.02));
  border: 1px solid rgba(135, 194, 255, 0.1);
  box-shadow: 0 10px 25px rgba(4, 12, 35, 0.2);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.info-card.is-visible {
  animation: slideInLeftContact 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(135, 194, 255, 0.4);
  box-shadow: 0 15px 35px rgba(4, 12, 35, 0.3), 0 0 20px rgba(88, 151, 255, 0.1);
}

.info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(88, 151, 255, 0.15), rgba(45, 101, 255, 0.05));
  border: 1px solid rgba(135, 194, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #6cb1ff;
  transition: all 0.4s ease;
}

.info-card:hover .info-icon {
  background: linear-gradient(135deg, rgba(88, 151, 255, 0.8), rgba(45, 101, 255, 0.9));
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(88, 151, 255, 0.4);
}

.info-text h3 {
  color: #f6fbff;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  font-family: hindsiligur, sans-serif;
}

.info-text p {
  color: rgba(229, 239, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Map */
.contact-map-container {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(135, 194, 255, 0.15);
  box-shadow: 0 15px 35px rgba(4, 12, 35, 0.3);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.contact-map-container.is-visible {
  animation: fadeUpContact 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

.contact-map-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(4, 12, 35, 0.5);
}

/* Form Glass Card */
.form-glass-card {
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(88, 151, 255, 0.02));
  border: 1px solid rgba(135, 194, 255, 0.15);
  box-shadow: 0 20px 50px rgba(4, 12, 35, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateX(40px);
}

.form-glass-card.is-visible {
  animation: slideInRightContact 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.form-glass-card h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-family: hindsiligur, sans-serif;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.form-glass-card h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #6cb1ff, transparent);
  border-radius: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group label {
  display: block;
  color: rgba(229, 239, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  font-family: hindsiligur, sans-serif;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  background: rgba(10, 20, 45, 0.5);
  border: 1px solid rgba(135, 194, 255, 0.12);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  color: #fff;
  font-size: 1rem;
  font-family: hindsiligur, poppins, sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: rgba(229, 239, 255, 0.4);
}

.input-wrapper select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

.custom-select-arrow {
  position: absolute;
  right: 1.2rem;
  color: rgba(135, 194, 255, 0.6);
  font-size: 0.9rem;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.input-wrapper select:focus ~ .custom-select-arrow {
  transform: rotate(180deg);
  color: #6cb1ff;
}

.input-wrapper select option {
  background: #07152d;
  color: #fff;
  padding: 10px;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: rgba(108, 177, 255, 0.5);
  background: rgba(15, 30, 60, 0.6);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(108, 177, 255, 0.1);
  transform: translateY(-2px);
}

.submit-btn {
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(88, 151, 255, 0.9), rgba(45, 101, 255, 0.95));
  border: 1px solid rgba(135, 194, 255, 0.4);
  color: #fff;
  padding: 1.2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-family: hindsiligur, sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(45, 101, 255, 0.4), 0 0 15px rgba(88, 151, 255, 0.2);
}

.submit-btn:hover::before {
  transform: translateX(100%);
}

.submit-btn:active {
  transform: translateY(0);
}

@keyframes fadeUpContact {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeftContact {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRightContact {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
/* contact page start  */
/* ===========================
CONTACT PAGE PREMIUM
=========================== */

.contact_area{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    /* margin-top: 28px; */
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 120px;
    padding: 20px;
}

.contact_glass{
    position:relative;
    padding:32px;
    border-radius:28px;
    overflow:hidden;
    background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 20px 60px rgba(0,0,0,.35),
    0 0 45px rgba(40,110,255,.08);
}

.contact_glass::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    top:-80px;
    right:-80px;
    background:radial-gradient(circle, rgba(82,148,228,.16), transparent 70%);
    animation: floatGlow 7s linear infinite;
}

.contact_glass::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    left:-70px;
    bottom:-70px;
    background:radial-gradient(circle, rgba(38,4,151,.20), transparent 70%);
}

@keyframes floatGlow{
    0%{transform:translateY(0) rotate(0);}
    50%{transform:translateY(18px) rotate(180deg);}
    100%{transform:translateY(0) rotate(360deg);}
}

.contact_badge{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    font-size:12px;
    color:#dce9ff;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:18px;
}

.contact_left h1{
    font-size:30px;
    line-height:1.2;
    color:#fff;
    margin-bottom:18px;
}

.contact_left h1 span{
    color:#73a6ff;
    text-shadow:0 0 18px rgba(88,148,255,.55);
}

.contact_left p,
.map_content p{
    color:#b7c7e6;
    line-height:1.9;
    font-size:15px;
}

.contact_quick_list{
    margin-top:28px;
    display:grid;
    gap:16px;
}

.quick_box{
    display:flex;
    gap:15px;
    align-items:center;
    text-decoration:none;
    padding:18px;
    border-radius:22px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    transition:.35s ease;
}

.quick_box:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 18px 30px rgba(0,0,0,.22);
}

.quick_box i{
    width:55px;
    height:55px;
    border-radius:18px;
    display:grid;
    place-items:center;
    color:#fff;
    background:linear-gradient(135deg,#2b6cff,#5ca4ff);
    box-shadow:0 0 22px rgba(73,135,255,.40);
}

.quick_box h4{
    color:#fff;
    margin-bottom:6px;
}

.quick_box span{
    color:#b8c8e8;
    font-size:14px;
}



/* RIGHT */
.contact_right h2{
    color:#fff;
    font-size:30px;
    margin-bottom:18px;
}

.grid_two{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:14px;
}

.admission_form input,
.admission_form select,
.admission_form textarea{
    width:100%;
    border:none;
    outline:none;
    color:#fff;
    padding:16px 18px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.admission_form select option{
    color:#000;
}

.admission_form textarea{
    resize:none;
    margin-bottom:14px;
}

.admission_form input:focus,
.admission_form select:focus,
.admission_form textarea:focus{
    border-color:#4c89ff;
    box-shadow:0 0 0 4px rgba(76,137,255,.12);
    transform:translateY(-2px);
}

.main_btn{
    border:none;
    cursor:pointer;
    color:#fff;
    padding:16px 26px;
    border-radius:18px;
    background:linear-gradient(135deg,#2763ff,#5ea2ff);
    font-weight:600;
    transition:.35s ease;
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.main_btn:hover{
    transform:translateY(-5px) scale(1.02);
    box-shadow:0 18px 32px rgba(54,117,255,.35);
}

.main_btn:active{
    transform:scale(.96);
}

.main_btn.small_btn{
    margin-top:18px;
    padding:14px 22px;
}



/* FLOAT ORB */
.orb{
    position:absolute;
    border-radius:50%;
    filter:blur(10px);
    animation: orbMove 6s ease-in-out infinite;
}

.orb1{
    width:120px;
    height:120px;
    top:-10px;
    right:-10px;
    background:rgba(56,115,255,.18);
}

.orb2{
    width:90px;
    height:90px;
    bottom:40px;
    left:-20px;
    background:rgba(115,0,255,.18);
    animation-delay:2s;
}

@keyframes orbMove{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(20px);}
}



/* INFO */
.contact_cards{
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.info_card{
    text-align:center;
    transition:.35s;
}

.info_card:hover{
    transform:translateY(-8px) rotateX(4deg);
}

.info_card i{
    font-size:24px;
    color:#73a8ff;
    margin-bottom:14px;
}

.info_card h4{
    color:#fff;
    margin-bottom:8px;
}

.info_card p{
    color:#b8c8e7;
    font-size:14px;
}



/* MAP */
.map_section{
    margin-top: 28px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: center;
    max-width: 1270px;
    margin: 0 auto;
    /* margin-left: 20px; */
    padding: 20px;
}

.map_content h2{
    color:#fff;
    font-size:38px;
    margin-bottom:15px;
}

.map_wrap{
    height:420px;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 0 50px rgba(46,115,255,.18);
}

.map_wrap::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right, rgba(70,130,255,.15), transparent 30%);
    z-index:2;
    pointer-events:none;
}

.map_wrap iframe{
    width:100%;
    height:100%;
    border:none;
    filter:grayscale(.08) contrast(1.08) brightness(.95);
}



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

    .contact_area,
    .map_section{
        grid-template-columns:1fr;
    }

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

    .contact_left h1{
        font-size:38px;
    }
}

@media(max-width:576px){

    .grid_two,
    .contact_cards{
        grid-template-columns:1fr;
    }

    .contact_glass{
        padding:22px;
    }

    .contact_left h1{
        font-size:30px;
    }

    .contact_right h2,
    .map_content h2{
        font-size:26px;
    }
}
@media(max-width:1270px){
  .map_section {
    margin: 20px;
}
}
/* event page start  */
/* FILTER */
.event_filter_wrap{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0;
    margin-top: 145px;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 125px;
    padding: 20px;
}

.filter_btn{
    border:none;
    cursor:pointer;
    padding:15px 24px;
    border-radius:14px;
    font-weight:700;
    color:#dbe8ff;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    transition:.35s ease;
}

.filter_btn:hover{
    transform:translateY(-4px);
}

.filter_btn.active{
    color:#fff;
    background:linear-gradient(135deg,#a40000,#ff2b2b);
    box-shadow:0 10px 25px rgba(255,0,0,.25);
}



/* LIST */
.event_list_area{
    display: grid;
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}



/* CARD */
.event_row_card{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:26px;
    padding:28px;
    border-radius:28px;
    overflow:hidden;
    transition:.35s ease;

    background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.03));

    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 20px 50px rgba(0,0,0,.28),
    0 0 40px rgba(40,110,255,.08);
}

.event_row_card:hover{
    transform:translateY(-8px);
}



/* IMAGE */
.event_thumb{
    min-height:240px;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    background:linear-gradient(135deg,#2563eb,#08101f);
}

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

.blue_bg{
    background:linear-gradient(135deg,#2563eb,#0f172a);
}

.purple_bg{
    background:linear-gradient(135deg,#7c3aed,#0f172a);
}



/* STATUS */
.status_tag{
    position:absolute;
    top:16px;
    left:16px;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    color:#fff;
    background:#2563eb;
}

.status_tag.live{
    background:#10b981;
}

.status_tag.done{
    background:#6b7280;
}



/* DETAILS */
.mini_badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    color:#dce8ff;
    background:rgba(255,255,255,.06);
    margin-bottom:15px;
}

.event_details h2{
    font-size:38px;
    color:#fff;
    margin-bottom:14px;
}

.event_details p{
    color:#b8c7e6;
    line-height:1.8;
}



/* BUTTON */
.event_action{
    display:flex;
    gap:14px;
    margin-top:22px;
    flex-wrap:wrap;
}

.event_btn_primary,
.event_btn_outline{
    text-decoration:none;
    padding:14px 24px;
    border-radius:14px;
    font-weight:700;
    transition:.35s;
}

.event_btn_primary{
    color:#fff;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
}

.event_btn_outline{
    color:#dbe8ff;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.event_btn_primary:hover,
.event_btn_outline:hover{
    transform:translateY(-4px);
}



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

    .event_row_card{
        grid-template-columns:1fr;
    }

    .event_details h2{
        font-size:30px;
    }
}

@media(max-width:576px){

    .filter_btn{
        width:100%;
    }

    .event_row_card{
        padding:18px;
    }

    .event_details h2{
        font-size:24px;
    }

    .event_btn_primary,
    .event_btn_outline{
        width:100%;
        text-align:center;
    }
}

/* event view page start  */
/* ===========================
EVENT VIEW PAGE
=========================== */

.event_view_wrap{
        /* margin: 0 auto; */
    /* margin: 30px 0; */
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 110px;
    padding: 20px;
}

.event_view_card{
    position:relative;
    overflow:hidden;
    border-radius:30px;

    background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));

    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 25px 60px rgba(0,0,0,.32),
    0 0 55px rgba(40,110,255,.08);

    transition:.45s ease;
}

.event_view_card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 35px 70px rgba(0,0,0,.35),
    0 0 60px rgba(65,130,255,.15);
}

.event_view_card::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    top:-120px;
    right:-120px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(61,112,214,.15), transparent 70%);
    animation: rotateGlow 8s linear infinite;
}

.event_view_card::after{
    content:'';
    position:absolute;
    width:240px;
    height:240px;
    left:-90px;
    bottom:-90px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(38,4,151,.18), transparent 70%);
}

@keyframes rotateGlow{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}



/* BANNER */
.event_view_banner{
    position:relative;
    height:520px;
    overflow:hidden;
}

.event_view_banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.event_view_card:hover .event_view_banner img{
    transform:scale(1.05);
}

.event_live_badge{
    position:absolute;
    top:24px;
    left:24px;
    padding:10px 16px;
    border-radius:50px;
    color:#fff;
    font-size:13px;
    font-weight:700;

    background:linear-gradient(135deg,#2563eb,#60a5fa);
    box-shadow:0 15px 30px rgba(37,99,235,.28);
}



/* CONTENT */
.event_view_content{
    position:relative;
    z-index:2;
    padding:34px;
}

.small_badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    color:#dce8ff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:16px;
}

.event_view_content h1{
    color:#fff;
    font-size:48px;
    margin-bottom:22px;
    line-height:1.2;
}



/* META */
.event_meta_top{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:28px;
}

.meta_box{
    padding:14px 18px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    color:#dbe8ff;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.35s;
}

.meta_box:hover{
    transform:translateY(-5px);
}

.meta_box i{
    color:#67a5ff;
}



/* DESCRIPTION */
.event_description{
    display:grid;
    gap:16px;
}

.event_description p{
    color:#b8c7e6;
    line-height:1.95;
    font-size:15px;
}



/* INFO BOX */
.event_info_box{
    margin-top:28px;
    padding:24px;
    border-radius:24px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}

.event_info_box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 35px rgba(0,0,0,.22);
}

.event_info_box h3{
    color:#fff;
    font-size:24px;
    margin-bottom:18px;
}

.event_info_box h3 i{
    color:#72a8ff;
    margin-right:8px;
}

.event_info_box ul{
    padding:0;
    margin:0;
    list-style:none;
    display:grid;
    gap:12px;
}

.event_info_box li{
    color:#c7d5f0;
    padding-left:24px;
    position:relative;
    line-height:1.8;
}

.event_info_box li::before{
    content:'';
    width:9px;
    height:9px;
    border-radius:50%;
    background:#5ea2ff;
    position:absolute;
    left:0;
    top:10px;
    box-shadow:0 0 15px #5ea2ff;
}



/* BUTTON */
.event_bottom_btns{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:32px;
}

.join_btn,
.outline_btn{
    text-decoration:none;
    padding:16px 28px;
    border-radius:18px;
    font-weight:700;
    transition:.35s ease;
}

.join_btn{
    color:#fff;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    box-shadow:0 18px 28px rgba(37,99,235,.28);
}

.outline_btn{
    color:#dce8ff;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.join_btn:hover,
.outline_btn:hover{
    transform:translateY(-5px) scale(1.02);
}



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

    .event_view_banner{
        height:380px;
    }

    .event_view_content h1{
        font-size:36px;
    }
}

@media(max-width:576px){

    .event_view_banner{
        height:240px;
    }

    .event_view_content{
        padding:20px;
    }

    .event_view_content h1{
        font-size:26px;
    }

    .meta_box,
    .join_btn,
    .outline_btn{
        width:100%;
        justify-content:center;
    }

    .event_info_box{
        padding:18px;
    }

    .event_info_box h3{
        font-size:20px;
    }
}
/* blog page start  */
/* ===========================
BLOG HERO SECTION
=========================== */

.blog_hero_section{
        /* margin: 28px 0 26px; */
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 120px;
}

.blog_hero_glass{
    position:relative;
    padding:60px 40px;
    border-radius:34px;
    overflow:hidden;

    background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));

    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 25px 60px rgba(0,0,0,.30),
    0 0 55px rgba(42,110,255,.08);
}

.blog_hero_glass::before{
    content:'';
    position:absolute;
    width:340px;
    height:340px;
    right:-120px;
    top:-120px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(61,112,214,.16), transparent 70%);
    animation: blogRotate 8s linear infinite;
}

.blog_hero_glass::after{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    left:-100px;
    bottom:-100px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(38,4,151,.18), transparent 70%);
}

@keyframes blogRotate{
    from{transform:rotate(0);}
    to{transform:rotate(360deg);}
}

.blog_badge{
    display:inline-block;
    padding:8px 15px;
    border-radius:50px;
    font-size:12px;
    color:#dce8ff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:18px;
}

.blog_hero_glass h1{
    color:#fff;
    font-size:35px;
    line-height:1.2;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.blog_hero_glass h1 span{
    color:#75aaff;
    text-shadow:0 0 18px rgba(82,148,255,.55);
}

.blog_hero_glass p{
    color:#b8c7e6;
    line-height:1.9;
    max-width:760px;
    position:relative;
    z-index:2;
}

.blog_hero_btns{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:28px;
    position:relative;
    z-index:2;
}

.blog_btn_primary,
.blog_btn_outline{
    text-decoration:none;
    padding:16px 26px;
    border-radius:18px;
    font-weight:700;
    transition:.35s ease;
}

.blog_btn_primary{
    color:#fff;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    box-shadow:0 18px 30px rgba(37,99,235,.28);
}

.blog_btn_outline{
    color:#dce8ff;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.blog_btn_primary:hover,
.blog_btn_outline:hover{
    transform:translateY(-5px) scale(1.02);
}



/* ===========================
BLOG GRID
=========================== */

.blog_grid_section{
        display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.blog_card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    transition:.45s ease;

    background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));

    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 45px rgba(0,0,0,.28),
    0 0 45px rgba(42,110,255,.06);
}

.blog_card::before{
    content:'';
    position:absolute;
    width:240px;
    height:240px;
    right:-90px;
    top:-90px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(61,112,214,.12), transparent 70%);
}

.blog_card:hover{
    transform:translateY(-10px) rotateX(4deg);
    box-shadow:
    0 30px 60px rgba(0,0,0,.32),
    0 0 55px rgba(65,130,255,.14);
}

.blog_thumb{
    height:240px;
    overflow:hidden;
    position:relative;
}

.blog_thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.blog_card:hover .blog_thumb img{
    transform:scale(1.08);
}

.thumb_tag{
    position:absolute;
    top:16px;
    left:16px;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#1d4ed8,#60a5fa);
}

.blog_content{
    padding:24px;
}

.mini_blog_badge{
    display:inline-block;
    padding:7px 13px;
    border-radius:50px;
    font-size:11px;
    color:#dce8ff;
    background:rgba(255,255,255,.05);
    margin-bottom:14px;
}

.blog_content h2{
    color:#fff;
    font-size:20px;
    line-height:1.35;
    margin-bottom:14px;
}

.blog_content p{
    color:#b8c7e6;
    line-height:1.85;
    margin-bottom:18px;
}

.read_more_btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#76aaff;
    font-weight:700;
    transition:.35s;
}

.read_more_btn:hover{
    gap:12px;
}

.blog_meta{
    margin-top:20px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    gap:10px;
    flex-wrap:wrap;
}

.blog_meta span{
    color:#c9d5ef;
    font-size:13px;
}

.blog_meta i{
    color:#6fa7ff;
    margin-right:6px;
}



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

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

    .blog_hero_glass h1{
        font-size:44px;
    }
}

@media(max-width:768px){

    .blog_grid_section{
        grid-template-columns:1fr;
    }

    .blog_hero_glass{
        padding:34px 22px;
    }

    .blog_hero_glass h1{
        font-size:30px;
    }

    .blog_content h2{
        font-size:22px;
    }

    .blog_hero_btns{
        flex-direction:column;
    }

    .blog_btn_primary,
    .blog_btn_outline{
        text-align:center;
    }
}
/* blog view page start  */
/* ===========================
BLOG VIEW PAGE
=========================== */

.blog_view_layout{
        display: grid;
    grid-template-columns: 1.6fr .7fr;
    gap: 24px;
    margin: 28px 0;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 120px;
}



/* MAIN CARD */
.blog_view_card{
    position:relative;
    overflow:hidden;
    border-radius:30px;

    background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));

    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 22px 55px rgba(0,0,0,.30),
    0 0 55px rgba(42,110,255,.08);

    transition:.45s ease;
}

.blog_view_card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 32px 65px rgba(0,0,0,.34),
    0 0 60px rgba(65,130,255,.14);
}

.blog_view_card::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    top:-130px;
    right:-130px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(61,112,214,.15), transparent 70%);
    animation: spinGlow 8s linear infinite;
}

.blog_view_card::after{
    content:'';
    position:absolute;
    width:240px;
    height:240px;
    left:-100px;
    bottom:-100px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(38,4,151,.16), transparent 70%);
}

@keyframes spinGlow{
    from{transform:rotate(0);}
    to{transform:rotate(360deg);}
}



/* IMAGE */
.blog_view_thumb{
    height:460px;
    overflow:hidden;
    position:relative;
}

.blog_view_thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.blog_view_card:hover .blog_view_thumb img{
    transform:scale(1.06);
}

.blog_view_tag{
    position:absolute;
    top:18px;
    left:18px;
    padding:9px 15px;
    border-radius:50px;
    color:#fff;
    font-size:12px;
    font-weight:700;

    background:linear-gradient(135deg,#2563eb,#60a5fa);
}



/* CONTENT */
.blog_view_content{
    position:relative;
    z-index:2;
    padding:34px;
}

.blog_view_badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    color:#dce8ff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:16px;
}

.blog_view_content h1{
    color:#fff;
    font-size:42px;
    line-height:1.25;
    margin-bottom:18px;
}



/* META */
.blog_view_meta{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:24px;
}

.blog_view_meta span{
    padding:12px 16px;
    border-radius:16px;
    color:#dce8ff;
    font-size:14px;

    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
}

.blog_view_meta i{
    color:#6fa7ff;
    margin-right:6px;
}



/* TEXT */
.blog_view_text{
    display:grid;
    gap:18px;
}

.blog_view_text p{
    color:#bcc9e6;
    line-height:2;
    font-size:15px;
}



/* SIDEBAR */
.blog_view_sidebar{
    display:grid;
    gap:22px;
    align-content:start;
}

.sidebar_box{
    position:relative;
    overflow:hidden;
    padding:24px;
    border-radius:26px;

    background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));

    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 40px rgba(0,0,0,.25),
    0 0 45px rgba(42,110,255,.06);

    transition:.35s;
}

.sidebar_box:hover{
    transform:translateY(-6px);
}

.sidebar_box h3{
    color:#fff;
    font-size:24px;
    margin-bottom:18px;
}



/* LINKS */
.recent_post,
.cat_link{
    display:block;
    text-decoration:none;
    color:#c6d4ef;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    line-height:1.7;
    transition:.3s;
}

.recent_post:hover,
.cat_link:hover{
    color:#76aaff;
    padding-left:8px;
}

.recent_post:last-child,
.cat_link:last-child{
    border-bottom:none;
}



/* CTA */
.sidebar_cta p{
    color:#bcc9e6;
    line-height:1.8;
    margin-bottom:18px;
}

.sidebar_btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:15px 24px;
    border-radius:18px;
    font-weight:700;
    color:#fff;

    background:linear-gradient(135deg,#2563eb,#60a5fa);
    box-shadow:0 18px 30px rgba(37,99,235,.28);

    transition:.35s;
}

.sidebar_btn:hover{
    transform:translateY(-5px) scale(1.02);
}



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

    .blog_view_layout{
        grid-template-columns:1fr;
    }

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

@media(max-width:768px){

    .blog_view_sidebar{
        grid-template-columns:1fr;
    }

    .blog_view_thumb{
        height:260px;
    }

    .blog_view_content{
        padding:22px;
    }

    .blog_view_content h1{
        font-size:28px;
    }

    .blog_view_meta span{
        width:100%;
    }

    .sidebar_btn{
        width:100%;
        justify-content:center;
    }
}
body.nav-open{
    overflow: hidden;
}
/* course view start  */
/* ===================================
COURSE VIEW PAGE
=================================== */

.course-view-section{
    padding:40px 0 20px;
    position:relative;
    margin-top: 95px;
}

/* reusable glass */
.glass{
    background:linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 20px 50px rgba(0,0,0,.25),
    0 0 40px rgba(42,110,255,.06);
}

/* glow */
.site-fx-glow{
    position:relative;
    overflow:hidden;
}

.site-fx-glow::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    top:-120px;
    right:-120px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(61,112,214,.18), transparent 70%);
    animation:courseSpin 10s linear infinite;
}

.site-fx-glow::after{
    content:'';
    position:absolute;
    width:240px;
    height:240px;
    left:-90px;
    bottom:-90px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(38,4,151,.18), transparent 70%);
}

@keyframes courseSpin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

/* hero */
.course-view-hero{
    border-radius:34px;
    padding:34px;
    display:grid;
    grid-template-columns:1fr 520px;
    gap:30px;
    align-items:center;
    transition:.45s ease;
    transform-style:preserve-3d;
}

.course-view-hero:hover{
    transform:translateY(-8px) rotateX(2deg);
    box-shadow:
    0 35px 70px rgba(0,0,0,.35),
    0 0 60px rgba(65,130,255,.14);
}

.course-mini-title{
    display:inline-block;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    color:#dce8ff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:18px;
}

.course-view-left h1{
    font-size:54px;
    color:#fff;
    line-height:1.2;
    margin-bottom:18px;
}

.course-view-left p{
    color:#b8c7e6;
    line-height:1.9;
    max-width:620px;
}

.course-badges{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin:24px 0;
}

.course-badges span,
.tool-tags span{
    padding:10px 16px;
    border-radius:50px;
    color:#dce8ff;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.07);
    font-size:14px;
    transition:.35s;
}

.course-badges span:hover,
.tool-tags span:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 24px rgba(60,120,255,.15);
}

.course-btn{
    display:inline-block;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    padding:16px 28px;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    box-shadow:0 18px 30px rgba(37,99,235,.28);
    transition:.35s ease;
}

.course-btn:hover{
    transform:translateY(-5px) scale(1.02);
}

.course-view-right img{
    width:100%;
    border-radius:24px;
    display:block;
    transition:.45s ease;
}

.course-view-hero:hover .course-view-right img{
    transform:scale(1.03);
}

/* info grid */
.course-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:24px;
}

.info-box{
    border-radius:24px;
    padding:24px;
    transition:.35s;
}

.info-box:hover{
    transform:translateY(-6px);
}

.info-box small{
    display:block;
    color:#7fa8ff;
    margin-bottom:10px;
    font-size:13px;
}

.info-box h4{
    color:#fff;
    font-size:22px;
    line-height:1.4;
}

/* cards */
.course-two-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-top:28px;
}

.course-card{
    border-radius:30px;
    padding:30px;
    transition:.4s ease;
}

.course-card:hover{
    transform:translateY(-8px) rotateX(2deg);
}

.box-title{
    display:inline-block;
    color:#7fa8ff;
    margin-bottom:12px;
    font-size:13px;
    letter-spacing:.5px;
}

.course-card h3{
    color: #fff;
    font-size: 18px;
    font-family: 'hindsiligur';
    margin-bottom: 18px;
    text-align: center;
}

.course-card ul{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:14px;
}

.course-card li{
    color:#c8d4ef;
    padding-left:24px;
    position:relative;
    line-height:1.8;
}

.course-card li::before{
    content:'';
    position:absolute;
    left:0;
    top:11px;
    width:9px;
    height:9px;
    border-radius:50%;
    background:#5ea2ff;
    box-shadow:0 0 14px #5ea2ff;
}

/* trainer */
.trainer-wrap{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.trainer-wrap img{
    width:72px;
    height:72px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,.15);
}

.trainer-wrap h4{
    color:#fff;
    font-size:22px;
    margin-bottom:4px;
}

.trainer-wrap p{
    color:#aebee0;
}

/* other */
.other-course-wrap{
    margin-top:34px;
    padding:34px;
}

.other-course-wrap h2{
    font-size:42px;
    color:#fff;
    margin:12px 0 24px;
}

/* responsive */
@media(max-width:1100px){

    .course-view-hero{
        grid-template-columns:1fr;
    }

    .course-info-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .course-view-left h1{
        font-size:34px;
    }

    .course-two-grid,
    .course-info-grid{
        grid-template-columns:1fr;
    }

    .course-view-hero,
    .course-card,
    .info-box{
        padding:22px;
    }

    .other-course-wrap h2{
        font-size:28px;
    }

    .course-btn{
        width:100%;
        text-align:center;
    }
}