:root {
  --black: #04060a;
  --deep: #080c13;
  --navy: #0b1220;
  --panel: #0e1728;
  --neon: #00d4ff;
  --neon2: #00ffcc;
  --gold: #c9a84c;
  --glass: rgba(255, 255, 255, 0.035);
  --glass-bd: rgba(255, 255, 255, 0.08);
  --f-disp: 'Cormorant Garamond', serif;
  --f-body: 'Outfit', sans-serif;
  --f-mono: 'Space Mono', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--f-body);
  background: white;
  color: #000000;
  overflow-x: hidden
}

img {
  display: block
}

/* scrollbar */
::-webkit-scrollbar {
  width: 3px
}

::-webkit-scrollbar-track {
  background: var(--black)
}

::-webkit-scrollbar-thumb {
  background: var(--neon);
  border-radius: 3px
}

a {
  text-decoration: none;
}

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s, opacity .2s;
  mix-blend-mode: difference
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, .4);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, transform .08s
}

body:hover .cursor {
  opacity: 1
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.sg-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 5px 5vw;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s, background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

.sg-nav.stuck {
  padding: 16px 5vw;
  background: #fff;
  backdrop-filter: blur(24px);
  border-color: var(--glass-bd);
}

.sg-logo {
  font-family: var(--f-disp);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sg-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon)
}

.nav-links {
  display: flex;
  gap: 52px;
  list-style: none;
  margin-bottom: 0;
  padding-left:150px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon);
  transition: width .3s var(--ease);
}

.nav-links a:hover {
  color: #04adfc;
}

.nav-links a:hover::after {
  width: 100%
}

.nav-links .active {
    color: #04adfc;
}


.nav-book {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--neon);
  border: none;
  padding: 11px 26px;
  border-radius: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .3s, transform .2s;
}

.nav-book:hover {
  box-shadow: 0 0 32px rgba(0, 212, 255, .55);
  transform: translateY(-1px);
  color: var(--black)
}

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #000000;
  transition: .3s
}

/* ─────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────── */
.mob-menu {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, .97);
  backdrop-filter: blur(24px);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}

.mob-menu.open {
  transform: translateY(0)
}

.mob-menu a {
  font-family: var(--f-disp);
  font-size: clamp(36px, 7vw, 64px);
  font-style: italic;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .3s;
}

.mob-menu a:hover {
  color: var(--neon)
}

.mob-close {
  position: relative;
  top: 0px;
  right: -40vw;
  font-size: 28px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 89px;
}

.hero-swiper {
  width: 100%;
  height: 100%
}

.h-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center
}

.h-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.swiper-slide-active .h-bg {
  animation: kBurns 9s var(--ease) forwards
}

@keyframes kBurns {
  from {
    transform: scale(1.1)
  }

  to {
    transform: scale(1)
  }
}

/* gradient overlays */
.h-grad {
  position: absolute;
  inset: 0
}

.s1 .h-grad {
  background: linear-gradient(110deg, rgba(4, 6, 10, .92) 0%, rgba(4, 6, 10, .55) 55%, rgba(4, 6, 10, .15) 100%)
}

.s2 .h-grad {
  background: radial-gradient(ellipse at 50% 50%, rgba(4, 6, 10, .25) 0%, rgba(4, 6, 10, .88) 70%)
}

.s3 .h-grad {
  background: linear-gradient(130deg, rgba(4, 6, 10, .88) 0%, rgba(0, 102, 200, .12) 60%, rgba(4, 6, 10, .7) 100%)
}

/* noise grain overlay */
.h-noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 2
}

.h-content {
  position: relative;
  z-index: 3;
  padding: 0 8vw;
  max-width: 820px;
  margin-top: 80px;
}

.h-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s .25s, transform .7s .25s var(--ease);
}

.h-title {
  font-family: var(--f-disp);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300;
  font-style: italic;
  line-height: .95;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s .45s, transform .8s .45s var(--ease);
}

.h-title strong {
  font-weight: 600;
  font-style: normal;
  color: #01aefb;
}

.h-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .65s, transform .7s .65s var(--ease);
}

.h-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s .85s, transform .7s .85s var(--ease);
}

.swiper-slide-active .h-tag,
.swiper-slide-active .h-title,
.swiper-slide-active .h-sub,
.swiper-slide-active .h-cta-row {
  opacity: 1;
  transform: translateY(0)
}

/* slide 2 – center */
.s2 .h-content {
  margin: 0 auto;
  text-align: center;
  padding: 0 8vw;
  max-width: 800px
}

.s2 .h-sub {
  margin: 0 auto 44px
}

.s2 .h-cta-row {
  justify-content: center
}

/* slide 3 stats */
.h-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s 1.05s, transform .7s 1.05s var(--ease);
}

.swiper-slide-active .h-stats {
  opacity: 1;
  transform: translateY(0)
}

.h-stat {
  border-left: 1px solid rgba(0, 212, 255, .4);
  padding-left: 18px
}

.h-stat-n {
  font-family: var(--f-disp);
  font-size: 42px;
  font-weight: 600;
  color: var(--neon);
  line-height: 1
}

.h-stat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: 1px;
  margin-top: 4px
}

/* BA panel slide 1 */
.h-ba {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 36vw;
  max-width: 520px;
  height: 54vh;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 48px 120px rgba(0, 0, 0, .75);
  z-index: 4;
  cursor: ew-resize;
  border: 1px solid rgba(255, 255, 255, .07);
}

.h-ba-b,
.h-ba-a {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center
}

.h-ba-b {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&q=80');
  filter: saturate(.25) brightness(.55)
}

.h-ba-a {
  background-image: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=800&q=80');
  clip-path: inset(0 50% 0 0)
}

.h-ba-div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--neon);
  box-shadow: 0 0 20px var(--neon);
  transform: translateX(-50%);
  z-index: 10;
}

.h-ba-hdl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 28px var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--black);
}

.h-ba-lbls {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
  z-index: 6
}

.h-ba-lbl {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px
}

.h-ba-lbl.b {
  background: rgba(0, 0, 0, .65);
  color: rgba(255, 255, 255, .5)
}

.h-ba-lbl.a {
  background: var(--neon);
  color: var(--black)
}

/* Steam canvas */
.steam-cvs {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none
}

/* Progress bar */
.h-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, .08);
  z-index: 10
}

.h-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon), var(--neon2));
  width: 0;
  box-shadow: 0 0 10px var(--neon)
}

/* Counter + nav */
.h-ui {
  position: absolute;
  bottom: 44px;
  right: 8vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px
}

.h-counter {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .4)
}

.h-counter span {
  color: var(--neon);
  font-size: 16px
}

.h-arr {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 1px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .3s, background .3s, color .3s;
  font-size: 17px;
  color: rgba(255, 255, 255, .6);
}

.h-arr:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 212, 255, .06)
}

/* scroll hint */
.h-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .4;
}

.h-scroll span {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase
}

.h-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px
}

.h-mouse::after {
  content: '';
  width: 3px;
  height: 7px;
  background: var(--neon);
  border-radius: 2px;
  animation: msroll 2s infinite
}

@keyframes msroll {
  0% {
    opacity: 1;
    transform: translateY(0)
  }

  80% {
    opacity: 0;
    transform: translateY(9px)
  }

  100% {
    opacity: 0
  }
}

/* ─────────────────────────────────────────
   SECTION HELPERS
───────────────────────────────────────── */
.sec-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--neon);
  display: inline-block;
  margin-bottom: 14px
}

.sec-title {
  font-family: var(--f-disp);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: #fff
}

.sec-title strong {
  font-style: normal;
  font-weight: 600;
  color: #04adfc;
}

.sec-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  max-width: 520px;
  margin-top: 14px
}

/* reveal */
.rv {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.rv.on {
  opacity: 1;
  transform: none
}

.rv-l {
  transition-delay: .1s
}

.rv-2 {
  transition-delay: .2s
}

.rv-3 {
  transition-delay: .3s
}

.rv-4 {
  transition-delay: .4s
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */

.header-btn{
    padding: 11px 50px !important;
    font-size: 12px !important;
    margin-right: 55px;
}

.btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  background: #04adfc;
  border: none;
  padding: 15px 35px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .3s, transform .2s;
  position: relative;
  overflow: hidden;
}

.btn-neon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .15);
  opacity: 0;
  transition: opacity .2s
}

.btn-neon:active::after {
  opacity: 1
}

.btn-neon:hover {
  box-shadow: 0 0 48px rgba(0, 212, 255, .5);
  transform: translateY(-2px);
  color: var(--black)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 15px 36px;
  border-radius: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .3s, color .3s, background .3s;
}

.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 212, 255, .04)
}

/* ─────────────────────────────────────────
   2. WHY STEAM
───────────────────────────────────────── */
.why-sec {
  padding: 130px 0;
  background: var(--black);
  position: relative;
  overflow: hidden
}

.why-sec::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 212, 255, .05) 0%, transparent 70%);
  pointer-events: none
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 80px
}

.why-cell {
  padding: 52px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: border-color .4s, background .4s;
  cursor: default;
}

.why-cell:nth-child(1),
.why-cell:nth-child(2) {
  border-bottom: 1px solid var(--glass-bd)
}

.why-cell:nth-child(1),
.why-cell:nth-child(3) {
  border-right: 1px solid var(--glass-bd)
}

.why-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, .04), transparent);
  opacity: 0;
  transition: opacity .4s
}

.why-cell:hover::before {
  opacity: 1
}

.why-cell:hover {
  border-color: rgba(0, 212, 255, .18) !important
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(0, 212, 255, .07);
  border: 1px solid rgba(0, 212, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--neon);
  margin-bottom: 26px;
  transition: background .3s, box-shadow .3s
}

.why-cell:hover .why-icon {
  background: rgba(0, 212, 255, .13);
  box-shadow: 0 0 28px rgba(0, 212, 255, .18)
}

.why-num {
  font-family: var(--f-disp);
  font-size: 62px;
  font-weight: 600;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 6px
}

.why-label {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px
}

.why-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8
}

/* ─────────────────────────────────────────
   3. SERVICES HORIZONTAL
───────────────────────────────────────── */
.svc-sec {
  padding: 80px 0 0;
  /* background: linear-gradient(180deg, var(--black) 0%, var(--deep) 100%); */
  background: #fff;
  overflow: hidden;
}

.svc-sec .sec-tag {
  color: #000;
  font-size: 13px;
}

.svc-sec .sec-title {
  color: #0b1220;
  font-weight: 500;
}

.svc-sec .sec-sub {
  color: #000;
}

.svc-head {
  padding: 0 2vw;
  margin-bottom: 60px
}

.svc-track {
  display: flex;
  gap: 20px;
  padding: 16px 8vw 56px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.svc-track:active {
  cursor: grabbing
}

.svc-track::-webkit-scrollbar {
  display: none
}

.svc-card {
  flex: 0 0 300px;
  height: 420px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: transform .4s var(--ease), box-shadow .4s;
}

.svc-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 40px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(0, 212, 255, .15); */
}

.svc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease)
}

.svc-card:hover .svc-img {
  transform: scale(1.06)
}

.svc-ovl {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(4, 6, 10, .96) 100%)
}

.svc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  transform: translateY(12px);
  transition: transform .4s var(--ease)
}

.svc-card:hover .svc-body {
  transform: none
}

.svc-no {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--neon);
  margin-bottom: 8px
}

.svc-name {
  font-family: var(--f-disp);
  font-size: 26px;
  font-style: italic;
  color: #fff;
  margin-bottom: 10px
}

.svc-detail {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease)
}

.svc-card:hover .svc-detail {
  max-height: 60px
}

.svc-price {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon);
  border-bottom: 1px solid rgba(0, 212, 255, .4);
  padding-bottom: 2px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s .1s, opacity .4s .1s;
}

.svc-card:hover .svc-price {
  max-height: 30px;
  opacity: 1
}

.svc-hint {
  padding: 0 8vw;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: #000;
  text-transform: uppercase
}

.svc-hint::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .06)
}

/* ─────────────────────────────────────────
   4. WHY CHOOSE US
───────────────────────────────────────── */
.choose-sec {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden
}

.choose-sec::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(0, 80, 180, .07) 0%, transparent 60%);
  pointer-events: none
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 80px
}

.choose-card {
  background: #071b25;
  border: 1px solid var(--glass-bd);
  border-radius: 3px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: opacity .4s
}

.choose-card:hover::before {
  opacity: 1
}

.choose-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, .2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(0, 212, 255, .05)
}

.c-glow {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 212, 255, .07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s
}

.choose-card:hover .c-glow {
  opacity: 1
}

.c-icon {
  font-size: 30px;
  color: var(--neon);
  margin-bottom: 22px;
  display: block
}

.c-title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px
}

.c-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8
}

/* ─────────────────────────────────────────
   5. HOW IT WORKS
───────────────────────────────────────── */
.how-sec {
  padding: 130px 0;
  background: var(--black);
  overflow: hidden
}

.how-wrap {
  position: relative;
  margin-top: 80px;
  max-width: 760px
}

.how-line {
  position: absolute;
  left: 44px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .06)
}

.how-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--neon), rgba(0, 80, 200, .4));
  box-shadow: 0 0 10px var(--neon);
  transition: height 1.6s var(--ease)
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-left: 100px;
  padding-bottom: 64px;
  position: relative
}

.how-dot {
  position: absolute;
  left: 36px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--deep);
  border: 2px solid rgba(0, 212, 255, .35);
  transition: border-color .3s, box-shadow .3s, background .3s
}

.how-step.active .how-dot {
  background: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 20px var(--neon)
}

.how-num {
  font-family: var(--f-disp);
  font-size: 88px;
  font-weight: 600;
  color: rgba(255, 255, 255, .03);
  position: absolute;
  left: 54px;
  top: -22px;
  pointer-events: none;
  line-height: 1
}

.how-content {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: 3px;
  padding: 36px 40px;
  flex: 1;
  transition: border-color .3s, box-shadow .3s
}

.how-step.active .how-content {
  border-color: rgba(0, 212, 255, .18);
  box-shadow: 0 0 40px rgba(0, 212, 255, .04)
}

.how-step-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 10px
}

.how-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px
}

.how-step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8
}

/* ─────────────────────────────────────────
   6. BEFORE / AFTER
───────────────────────────────────────── */
.ba-sec {
  padding: 80px 0 0;
  background: var(--deep);
  position: relative
}

.ba-sec::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-bd), transparent)
}

.ba-slider {
  position: relative;
  width: 100%;
  /* max-width: 960px; */
  margin: 64px auto 0;
  height: 520px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 80px 160px rgba(0, 0, 0, .8);
  border: 1px solid rgba(255, 255, 255, .06);
  cursor: ew-resize;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center
}

.ba-before {
  background-image: url('../images/2.jpg');
  /* filter: saturate(.2) brightness(.5) */
}

.ba-after {
  background-image: url('../images/1.jpg');
  clip-path: inset(0 38% 0 0)
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 24px rgba(255, 255, 255, .4);
  transform: translateX(-50%);
  z-index: 5
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
  user-select: none
}

.ba-labels {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 6
}

.ba-lbl {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 1px
}

.ba-lbl.b {
  background: rgba(0, 0, 0, .6);
  color: rgba(255, 255, 255, .45)
}

.ba-lbl.a {
  background: var(--neon);
  color: var(--black)
}

/* ─────────────────────────────────────────
   7. TESTIMONIALS
───────────────────────────────────────── */
.testi-sec {
  padding: 130px 0;
  background: var(--navy);
  overflow: hidden
}

.testi-swiper {
  padding: 24px 48px 72px !important;
  overflow: visible !important;
  margin-top: 60px
}

.t-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: 3px;
  padding: 48px 44px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
}

.t-card:hover {
  border-color: rgba(0, 212, 255, .2);
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5)
}

.t-q {
  font-family: var(--f-disp);
  font-size: 52px;
  line-height: 1;
  color: var(--neon);
  opacity: .25;
  margin-bottom: 16px
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px
}

.t-stars i {
  color: var(--neon);
  font-size: 13px
}

.t-text {
  font-size: 15px;
  font-style: italic;
  font-family: var(--f-disp);
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300
}

.t-profile {
  display: flex;
  align-items: center;
  gap: 14px
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--glass-bd);
  flex-shrink: 0
}

.t-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff
}

.t-role {
  font-size: 11px;
  color: var(--neon);
  margin-top: 2px;
  font-family: var(--f-mono);
  letter-spacing: 1px
}

.testi-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .25);
  opacity: 1;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  transition: background .3s, width .3s
}

.testi-swiper .swiper-pagination-bullet-active {
  background: var(--neon);
  width: 36px
}

/* ─────────────────────────────────────────
   8. PRICING (NEW)
───────────────────────────────────────── */
.price-sec {
  padding: 80px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.price-sec::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 120, 255, .07) 0%, transparent 65%);
  pointer-events: none;
}

/* decorative line top */
.price-sec::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .25), transparent);
}

.price-eyebrow {
  text-align: center;
  margin-bottom: 72px;
}

.price-note-top {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-top: 20px;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
    max-width: 1200px; 
    margin: 0 auto;
    align-items: start;
}

/* .price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
} */

/* BASE CARD */
.p-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: 4px;
  padding: 52px 48px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5)
}

/* PREMIUM CARD */
.p-card.featured {
  background: linear-gradient(145deg, rgba(0, 40, 80, .45) 0%, rgba(0, 20, 50, .3) 100%);
  border-color: rgba(0, 212, 255, .35);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, .1), 0 40px 100px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(0, 212, 255, .2);
  transform: scale(1.03);
}

.p-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, .25), 0 60px 120px rgba(0, 0, 0, .65), 0 0 80px rgba(0, 212, 255, .08)
}

/* glow orb */
.p-glow {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, .1) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity .4s
}

.p-card:not(.featured) .p-glow {
  opacity: 0
}

.p-card:not(.featured):hover .p-glow {
  opacity: 1
}

/* badge */
.p-badge {
    position: absolute;
    top: 21px;
    right: 28px;
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 1px;
    background: var(--neon);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 0 24px rgba(0, 212, 255, .45);
}

.p-plan {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 16px;
}

.p-title {
  font-family: var(--f-disp);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.2;
}

.p-price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--glass-bd);
  border-bottom: 1px solid var(--glass-bd);
  margin-bottom: 36px;
}

.p-currency {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
  align-self: flex-start;
  margin-top: 8px
}

.p-amount {
  font-family: var(--f-disp);
  font-size: 72px;
  font-weight: 600;
  color: #fff;
  line-height: .9
}

.p-card.featured .p-amount {
  color: var(--neon);
  text-shadow: 0 0 40px rgba(0, 212, 255, .35)
}

.p-per {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  align-self: flex-end;
  margin-bottom: 6px;
  font-family: var(--f-mono);
  letter-spacing: 1px
}

/* features list */
.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  padding-left: 1rem;
}

.p-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}

.p-features li i {
  color: var(--neon);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform .2s;
}

.p-features li:hover i {
  transform: scale(1.3)
}

.p-features li:hover {
  color: rgba(255, 255, 255, .9)
}

/* featured features */
.p-card.featured .p-features li {
  color: rgba(255, 255, 255, .75)
}

.p-card.featured .p-features li i {
  color: var(--neon2)
}

.p-cta {
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: box-shadow .3s, transform .2s
}

.p-cta.std {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .7);
  transition: border-color .3s, color .3s, background .3s
}

.p-cta.std:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 212, 255, .04)
}

.p-cta.prem {
  background: linear-gradient(90deg, var(--neon), var(--neon2));
  color: var(--black)
}

.p-cta.prem:hover {
  box-shadow: 0 0 50px rgba(0, 212, 255, .55);
  transform: translateY(-2px)
}

/* surcharge note */
.p-surcharge {
  max-width: 980px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 12px;
  color: #fff;
  font-family: var(--f-mono);
  letter-spacing: .5px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 2px;
  background: rgba(255, 255, 255, .01);
}

.p-surcharge i {
  color: var(--neon);
  margin-right: 8px;
  font-size: 11px
}

/* ─────────────────────────────────────────
   9. CTA
───────────────────────────────────────── */
.cta-sec {
  padding: 160px 0;
  background: linear-gradient(140deg, var(--black) 0%, #030a18 50%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 100, 200, .15) 0%, transparent 65%);
  pointer-events: none
}

.cta-sec::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .35), transparent)
}

.cta-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 24px
}

.cta-title {
  font-family: var(--f-disp);
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: .9;
  margin-bottom: 36px
}

.cta-title strong {
  font-style: normal;
  font-weight: 600;
  color: var(--neon)
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  max-width: 440px;
  margin: 0 auto 56px;
  line-height: 1.7
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.sg-footer {
  background: #fff;
  border-top: 1px solid var(--glass-bd);
  padding: 68px 0 0;
}

.f-logo {
  font-family: var(--f-disp);
  font-size: 30px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.f-logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon)
}

.f-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 28px;
  text-transform: uppercase
}

.f-about {
  font-size: 14px;
  color: #000;
  line-height: 1.8;
  /* max-width: 280px; */
  margin-bottom: 32px
}

.f-socials {
  display: flex;
  gap: 25px;
  margin-top: 14px;
  margin-left: -19px;
}

.f-soc {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid var(--glass-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: border-color .3s, color .3s, box-shadow .3s, background .3s;
  background: #0995d7;
}

.f-soc:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 22px rgba(0, 212, 255, .22);
  background: rgba(0, 212, 255, .04)
}

.f-col-title {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 22px;
  font-weight: 600;
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

.f-links a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  transition: color .3s;
  letter-spacing: .3px
}

.f-links a:hover {
  color: var(--neon)
}

.f-newsletter {
  display: flex;
  gap: 0
}

.f-input {
  flex: 1;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--glass-bd);
  border-right: none;
  color: #fff;
  padding: 13px 18px;
  font-size: 13px;
  font-family: var(--f-body);
  outline: none;
  border-radius: 2px 0 0 2px;
  transition: border-color .3s;
}

.f-input:focus {
  border-color: rgba(0, 212, 255, .35)
}

.f-input::placeholder {
  color: rgba(255, 255, 255, .25)
}

.f-sub {
  background: var(--neon);
  color: var(--black);
  border: none;
  padding: 13px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: box-shadow .3s;
}

.f-sub:hover {
  box-shadow: 0 0 24px rgba(0, 212, 255, .4)
}

.f-bottom {
  border-top: 1px solid var(--glass-bd);
  /* padding-top: 32px; */
  padding: 15px 0;
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  background: #031821;
}

.f-copy {
  font-size: 12px;
  color: #fff;
  font-family: var(--f-mono)
}

.f-legal {
  display: flex;
  gap: 24px
}

.f-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  text-decoration: none;
  font-family: var(--f-mono);
  transition: color .3s
}

.f-legal a:hover {
  color: var(--neon)
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media(max-width:991px) {

  .nav-links,
  .nav-book-desk {
    display: none
  }

  .nav-ham {
    display: flex
  }

  .h-ba {
    display: none
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .why-cell:nth-child(1),
  .why-cell:nth-child(3) {
    border-right: none
  }

  .why-cell:not(:last-child) {
    border-bottom: 1px solid var(--glass-bd)
  }

  .choose-grid {
    grid-template-columns: 1fr 1fr
  }

  .price-cards {
    grid-template-columns: 1fr;
    max-width: 520px
  }

  .p-card.featured {
    transform: none
  }

  .p-card.featured:hover {
    transform: translateY(-6px)
  }

  .h-ui {
    display: none
  }
}

@media(max-width:767px) {
  .choose-grid {
    grid-template-columns: 1fr
  }

  .ba-slider {
    height: 260px
  }

  .cta-title {
    font-size: clamp(52px, 12vw, 80px)
  }

  .why-cell {
    padding: 36px 28px
  }

  .how-step {
    padding-left: 68px
  }

  .how-line {
    left: 28px
  }

  .how-dot {
    left: 20px
  }

  .how-num {
    display: none
  }

  .h-content {
    padding: 0 6vw
  }

  .p-card {
    padding: 40px 32px
  }

  .p-amount {
    font-size: 56px
  }

  .testi-swiper {
    padding: 16px 24px 60px !important
  }

  .sg-footer {
    padding: 60px 0 32px
  }
}

/* Right Button */
.svc-right {
  margin-top: 20px;
}

/* Premium Button Style */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: #04adfc;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glow Effect */
.view-all-btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #00f5ff, #00ff9d);
  transition: width 0.4s ease;
  z-index: 0;
  opacity: 0.15;
}

.view-all-btn span,
.view-all-btn i {
  position: relative;
  z-index: 1;
}

/* Hover Effects */
.view-all-btn:hover::before {
  width: 100%;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 157, 0.6);
  box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.view-all-btn i {
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: rotate(45deg) translate(3px, -3px);
}

/* about-section-styles */
.about-section {
  position: relative;
  padding: 80px 0;
  background: radial-gradient(circle at 20% 20%, #0a1a2f, #02050a);
  overflow: hidden;
}

/* Glow background */
.about-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 255, 157, 0.08);
  filter: blur(120px);
  top: -120px;
  left: -120px;
}

/* =========================
       IMAGE COLLAGE
    ========================= */
.about-collage {
  position: relative;
  height: 520px;
}

/* Base Image */
.img-main {
  position: absolute;
  width: 98%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Top Image */
.img-top {
  position: absolute;
  width: 45%;
  top: -30px;
  right: 0;
  border-radius: 18px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: rotate(3deg);
}

/* Bottom Accent Image */
.img-bottom {
  position: absolute;
  width: 40%;
  bottom: -31px;
  left: -12%;
  border-radius: 18px;
  z-index: 3;
  transform: rotate(-4deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Hover Motion */
.about-collage img {
  transition: all 0.6s ease;
}

.about-collage:hover .img-main {
  transform: scale(1.04);
}

.about-collage:hover .img-top {
  transform: rotate(6deg) translateY(-5px);
}

.about-collage:hover .img-bottom {
  transform: rotate(-6deg) translateY(5px);
}

/* =========================
       SHAPES
    ========================= */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: rgba(0, 245, 255, 0.2);
  top: 20%;
  left: -50px;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: rgba(0, 255, 157, 0.15);
  bottom: 0;
  right: -80px;
}

/* =========================
       FLOATING STATS
    ========================= */
.about-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  background: rgb(37 32 32 / 28%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  z-index: 4;
}

.about-card h5 {
  color: #00ff9d;
  font-size: 20px;
}

.about-card p {
  font-size: 12px;
  color: #ccc;
}

.card-1 {
  top: 20px;
  left: 20px;
}

.card-2 {
  bottom: 20px;
  right: 20px;
}

/* =========================
       CONTENT
    ========================= */
.about-content {
  padding-left: 14px;
}

.about-tag {
  color: #00f5ff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-title {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
  margin-top: 10px;
}

.about-title span {
  background: linear-gradient(90deg, #00f5ff, #00ff9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  color: #9aa4b2;
  font-size: 15px;
  margin-top: 15px;
  line-height: 1.7;
}

/* Button */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 14px 26px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.4s;
}

.about-btn:hover {
  transform: translateY(-3px);
  border-color: #00ff9d;
  box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.about-btn:hover i {
  transform: rotate(45deg);
}

/* =========================
       RESPONSIVE
    ========================= */
@media (max-width: 991px) {

  .about-collage {
    height: 400px;
    margin-bottom: 40px;
  }

  .img-main {
    width: 100%;
  }

  .img-top,
  .img-bottom {
    display: none;
  }

  .about-content {
    padding-left: 0;
  }

  .about-title {
    font-size: 30px;
  }
}

.about-content .sec-title {
  font-size: 60px;
}

.about-content .sec-sub {
  color: #fff;
}

/* end-about-section-styles */

.choose-sec .sec-title {
  color: #000;
}

.choose-sec .sec-tag {
  color: #000;
  font-size: 12px;
}

.how-section-modern {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fcff, #eef4f9);
  position: relative;
}

/* HEADER */
.how-head {
  text-align: center;
  margin-bottom: 70px;
}

.how-tag {
  color: #00a8cc;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.how-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b1f33;
  margin-top: 10px;
}

.how-title span {
  color: #00b894;
}

/* =========================
   STEP WRAPPER
========================= */
.how-steps {
  position: relative;
}

/* CONNECTOR LINE */
.how-steps::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #00ff9d);
  opacity: 0.2;
  z-index: 0;
}

/* =========================
   CARD
========================= */
.how-card {
  background: #0e374a;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Hover */
.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* NUMBER */
.how-number {
  width: 50px;
  height: 50px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a9ff3, #0e215e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ICON */
.how-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* TITLE */
.how-title-sm {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* TEXT */
.how-text {
  font-size: 14px;
  color: #fff;
  margin-top: 6px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .how-steps::before {
    display: none;
  }

  .how-card {
    margin-bottom: 30px;
  }
}

.how-section-modern .sec-title {
  color: #000;
}

.get-in-toucs p {
  margin-top: 28px;
  font-size: 14px;
  color: #000;
  position: relative;
}

.get-in-toucs i {
  position: absolute;
  left: -20px;
}

.get-in-toucs a {
  margin-top: 14px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  display: block;
  position: relative;
}

.svc-track::-webkit-scrollbar {
  display: none;
}

.svc-card {
  min-width: 300px;
  flex: 0 0 auto;
}

/* NAV BUTTONS */
.svc-nav {
  position: absolute;
  top: 95%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.svc-btn {
  pointer-events: all;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
}

.svc-btn.left {
  left: 55%;
}

.svc-btn.right {
  right: 55%;
}

.svc-btn:hover {
  background: #333;
}

.svc-sec {
  position: relative;
}

.svc-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.funfact-sec {
  padding: 50px 0;
  background: linear-gradient(180deg, #f9fbff, #eef3f9);
  position: relative;
  overflow: hidden;
}

/* Heading */
.funfact-head {
  margin-bottom: 60px;
}

.ff-tag {
  font-size: 14px;
  color: #5b6cff;
  font-weight: 600;
  letter-spacing: 1px;
}

.ff-title {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
}

.ff-title strong {
  color: #5b6cff;
}

.ff-sub {
  color: #666;
  /* margin-top: 10px; */
  width: 500px;
  margin: auto;
}

/* Cards */
.ff-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.ff-card::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(91, 108, 255, 0.08), transparent);
  top: -30%;
  left: -30%;
}

/* Hover effect */
.ff-card:hover {
  transform: translateY(-10px);
}

/* Counter */
.ff-card h3 {
  font-size: 42px;
  font-weight: 500;
  color: #146388;
}

.ff-card p {
  margin-top: 10px;
  color: #777;
  font-size: 17px;
}

/* Responsive */
@media (max-width: 768px) {
  .ff-title {
    font-size: 30px;
  }
}

.funfact-sec .sec-title {
  color: #000;
}

/* =========-----------======== */

.container-lgpricing{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

.custom-col {
  flex: 0 0 20%;
  max-width: 20%;
  text-align: center;
  margin-bottom: 30px;
}

.price-card {
      background: linear-gradient(145deg, rgba(0, 40, 80, .45) 0%, rgba(0, 20, 50, .3) 100%);
    border-color: rgba(0, 212, 255, .35);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, .1), 0 40px 100px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(0, 212, 255, .2);
    border: 1px solid var(--glass-bd);
    border-radius: 4px;
    padding: 80px 10px 40px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
    min-height: 428px;
    transition: 0.4s;
}

.price-card:hover {
  transform: translateY(-8px);
}
.price-card .ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: #04adfc;
    box-shadow: 0 0 24px rgba(0, 212, 255, .45);
    color: #fff;
    padding: 6px 50px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    display: flex;
    font-size: 10px;
    transform: rotate(-43deg) translate(-61px, -30px);
}

.price-card .features {
    color: white;
    margin-top: 25px;
    margin-bottom: 33px;
}

.price-card .features p{
  margin-bottom: 10px;
  font-size: 14px;
}

.price-card .price-cta .p-cta {
  padding: 10px 13px;
}

.price-amount h1 span {
  font-size: 15px;
}

.price-amount h1{
  font-size: 63px;
  line-height: 40px;
  font-family: var(--f-disp);
  color: var(--neon);
  text-shadow: 0 0 40px rgba(0, 212, 255, .35);
}

.price-amount h3 {
  color: var(--neon);
  text-shadow: 0 0 40px rgba(0, 212, 255, .35);
  font-size: 32px;
  margin: 20px 0px;
}

.price-title h1 {
  line-height: 36px;
  font-family: var(--f-disp);
  color: white;
}

.price-title h1 span {
  font-size: 20px;
}

/* ===============------------================ */


.inner-pagebanner{
    position: relative;
    margin-top: 100px;
    padding: 100px 0;
    background: url("../images/banner.jpg") center/cover no-repeat;
    z-index: 1;
}

.inner-pagebanner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* mask color */
    z-index: -1;
}

.breadcrumb-row .list-inline{
  display: flex;
  gap: 6px;
}

.inner-pagebanner .inner-page-content h1{color: white;}

.breadcrumb-row .list-inline li{color: #04adfc;}

.breadcrumb-row .list-inline li a{padding-right: 6px; color: white;}

.breadcrumb-row .list-inline li a i{color: white;}

.footerbrdr{border-top: 1px solid rgb(0 0 0 / 8%);}

/* ===============------------================ */


.inner-about_section{
  padding: 100px 0px;
}

.imgHolderv2:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -9px;
    width: 511px;
    height: 600px;
    background-color: #2db7ff;
    -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg);
    opacity: .2;
    z-index: -1;
    border-radius: 50px;
}

.inner-about_section .imgHolderv1 img{
  border-radius: 50px;
}

.imgHolderv2 .bgPatternv1 {
    bottom: 60px;
    left: -62px;
    right: auto;
    z-index: -1;
}

.descrTagv1 {
  left: 50px;
  bottom: 50px;
  border-radius: 30px;
  color: #04adfc;
  padding: 7px 30px;
  gap: 15px;
}

.descrTagv1 strong{
  line-height: 10px;
  line-height: 21px;
}

.inner-about_section .inner-about-content{padding-left: 30px;}

.inner-about_section .inner-about-content h6{color: #04adfc;}

.inner-about_section .inner-about-content p{ text-align: justify;    line-height: 29px;}

/* ============ */


.esColumn .imgHolder:before {
    background-color: #2637875c;
    opacity: .5;
    border-radius: inherit;
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.esColumn .imgHolder:after {
    background-color: #fff;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    border-radius: inherit;
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
}

.esCaption {
    left: 0;
    top: 0;
    border-radius: inherit;
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 50px 55px 50px 45px;
}

.esColumn:hover {
	box-shadow: 0 4px 11px rgba(6, 22, 58, .07);
}

.esColumn:hover .imgHolder:after {
	bottom: 0;
}

.esColumn:hover .icnWrap {
	color: #fff !important;
}

.esColumn:hover .descriptWrap {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.esColumn:hover .descriptWrap p{margin-bottom: 12px;}

.esColumn .imgHolder {
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
}

.esColumn .imgHolder:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.esColumn .imgHolder:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 100%;
	left: 0;
}

.esColumn .imgHolder img{
    width: 100%;
    height: 355px;
    object-fit: cover;
    display: block;
}

.esColumn .imgHolder:before {
	background-color: #0000005c;
	opacity: .5;
	border-radius: inherit;
	z-index: 1;
}

.esColumn .imgHolder:after {
	background-color: #fff;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	border-radius: inherit;
	z-index: 1;
}

.slick-active.slick-current .esColumn {
	opacity: 1;
}

.esColumn:hover .icnWrap {color: #fff !important;background-color: #2db7ff;}

.esColumn .icnWrap {
    font-size: 32px;
    left: 40px;
    top: -45px;
    width: 80px;
    height: 80px;
    -webkit-transition: color .3s ease, background-color .3s ease;
    transition: color .3s ease, background-color .3s ease;
    color: #2db7ff;
    z-index: 999999;
    background-color:#fff;
}

.esColumn .icnWrap img{
    width: 45px;
    filter: brightness(0) saturate(100%) invert(63%) sepia(89%) saturate(1710%) hue-rotate(170deg) brightness(101%) contrast(101%);
}

.esColumn:hover .icnWrap img{filter: brightness(0) invert(1);}

.esColumn h3 a{color: white;}

.esColumn:hover h3{margin-bottom: 21px;}

.esColumn:hover h3 a{color: #2db7ff;}

.esColumn h3 {
    color: #fff;
    -webkit-transition: color .3s ease, background-color .3s ease;
    transition: color .3s ease, background-color .3s ease;
    font-family: var(--f-disp);
    font-size: 29px;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.esColumn .descriptWrap {
    -webkit-transition: all .35s ease-out .15s;
    transition: all .35s ease-out .15s;
    font-size: 18px;
    color: #62718d;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.esColumn .descriptWrap ul li{
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 12px;
}

.esColumn .descriptWrap ul li img{
  width: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  filter: brightness(0) saturate(100%) invert(63%) sepia(89%) saturate(1710%) hue-rotate(170deg) brightness(101%) contrast(101%);
}

/* ===== */


.contact-box{
  box-shadow: 0 10px 40px rgba(6, 22, 58, .1) !important;
  padding: 30px;
  min-height: 200px;
}
.contact-box i{
  color: #04adfc;
  font-size: 30px;
  margin-bottom: 0px;
}

.col-lg-4:first-child .contact-box i{
    font-size:36px;
}

.contact-box h3{
  color: #071b25;
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 6px;
}
.contact-box p{margin-bottom: 0px;}
.contact-form-section{
    max-width:900px;
    margin:auto;
    background:#f3f3f3;
}

.contact-form-section h2{
    text-align:center;
    color:#15389b;
    font-size:40px;
    font-weight:700;
    margin-bottom:40px;
}

.form-row{
    display:flex;
    gap:30px;
    margin-bottom:30px;
}

.form-group{
    width:100%;
}

.form-group label{
    display:block;
    color:#15389b;
    font-size:17px;
    margin-bottom:12px;
    font-weight:600;
    font-family: var(--f-disp);
    font-style: italic;
}

.form-group label span{
    color:red;
}

.form-control{
    width:100%;
    height:44px;
    
    border-radius:40px;
    padding:0 20px;
    font-size:18px;
    outline:none;
    background:#fff;
}

.form-control:focus {
  border:1px solid #d9d9d9;
  box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
}

textarea.form-control{
    height:180px;
    border-radius:25px;
    padding:20px;
    resize:none;
}

.submit-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:50px;
    background:#34a9e8;
    color:#fff;
    font-size:22px;
    font-weight:600;
    cursor:pointer;
    margin-top:30px;
    transition:0.3s;
    font-family: var(--f-disp);
    font-style: italic;
}

.submit-btn:hover{
    background:#1597dc;
}

/* Mobile Responsive */

@media(max-width:768px){

    .contact-form-section h2{
        font-size:30px;
    }

    .form-row{
        flex-direction:column;
        gap:20px;
        margin-bottom:20px;
    }

    .form-group label{
        font-size:18px;
    }

    .form-control{
        height:55px;
        font-size:16px;
    }

    textarea.form-control{
        height:150px;
    }

    .submit-btn{
        height:58px;
        font-size:18px;
    }
}

.contact-from{
  padding-bottom: 65px;
}

.google-map iframe{
  height: 400px;
  width: 100%;
  margin-top: 0px;
}

.p-0{padding: 0px !important;}

/* ============== */

.why-section{
    padding:80px 0;
}

.why-box{
    background:#fff;
    border-radius:30px;
    padding:40px 40px 30px 40px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
}

.why-box.blue{
    border-top:6px solid #0995d7;
}

.why-box.green{
    border-top:6px solid #46b500;
}

.why-box h2{
    font-size: 25px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.blue h2{
    color:#0995d7;
}

.green h2{
    color:#46b500;
}

.why-box p{
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.sub-title{
    background:#0995d7;
    color:#fff;
    padding:18px 25px;
    border-radius:18px;
    font-size:24px;
    font-weight:700;
    margin:10px 0 30px;
    display:inline-block;
}

.feature-list{
    margin-top:20px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border-radius:20px;
    padding:22px;
    margin-bottom:20px;
    box-shadow:0 5px 18px rgba(0,0,0,0.05);
}

.feature-item i{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
}

.blue .feature-item i {
    background: #ddf4ff;
    color: #0995d7;
}

.green .feature-item i{
    background:#e9f9dd;
    color:#46b500;
}

.feature-item h4{
    font-size:24px;
    margin:0;
    color:#111;
    font-weight:700;
}

.feature-item p{
    margin:0;
    font-size:18px;
}

.steam-img{
    width:100%;
    border-radius:25px;
    margin-top:25px;
}

@media(max-width:991px){

    .why-box{
        margin-bottom:30px;
    }

    .why-box h2{
        font-size:36px;
    }

    .feature-item h4{
        font-size:22px;
    }

}

@media(max-width:767px){

    .why-box{
        padding:25px;
    }

    .why-box h2{
        font-size:30px;
    }

    .sub-title{
        font-size:20px;
    }

    .feature-item{
        flex-direction:column;
        text-align:center;
    }

}