/* ============================================================
   vdigitalmarketing — ALL PREMIUM SECTION STYLES
   ============================================================ */
:root {
  --ease: cubic-bezier(0.16, 1, 0.3, 1)
}

/* ── HERO SLIDER ── */
@keyframes vhFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes vhBarGrow {
  from {
    width: 0
  }

  to {
    width: 56px
  }
}

.vhero__section {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 580px;
  overflow: hidden;
  background: #000
}

.vhero__slider {
  width: 100%;
  height: 100%;
  position: relative
}

.vhero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .9s var(--ease)
}

.vhero__slide--active {
  opacity: 1;
  pointer-events: auto
}

.vhero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s linear
}

.vhero__slide--active .vhero__bg {
  transform: scale(1)
}

.vhero__bg--1 {
  background-image: url("../imgs/hero/1/1-bg.png");
  background-color: #0a0a0a
}

.vhero__bg--2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, #0e0e0e 0%, #000 60%)
}

.vhero__bg--3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, #0a0a0a 0%, #000 55%)
}

/* Strong overlay only on left half — right stays visible for scene */
.vhero__overlay--left {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .75) 45%, rgba(0, 0, 0, .3) 65%, rgba(0, 0, 0, 0) 100%)
}

/* Full width layout: text left, scene right */
.vhero__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between
}

.vhero__content {
  width: 48%;
  flex-shrink: 0;
  padding-right: 0px
}

.vhero__scene {
  width: 48%;
  flex-shrink: 0;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

/* Text styles — left aligned */
.vhero__badge {
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease) .1s
}

.vhero__badge a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 8px 20px;
  transition: background .3s, color .3s
}

.vhero__badge a:hover {
  background: #fff;
  color: #000
}

.vhero__tagline {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease) .2s
}

.vhero__title {
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(36px);
  transition: all .8s var(--ease) .3s
}

.vhero__title span {
  -webkit-text-stroke: 2px #fff;
  color: transparent
}

.vhero__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease) .45s
}

.vhero__desc strong {
  color: #fff
}

.vhero__stats {
  display: flex;
  gap: 36px;
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease) .55s
}

.vhero__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1
}

.vhero__label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  margin-top: 4px
}

.vhero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease) .55s
}

.vhero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s
}

.vhero__cta--primary {
  background: #fff;
  color: #000 !important;
  border: 2px solid #fff
}

.vhero__cta--primary:hover {
  background: transparent;
  color: #fff !important
}

.vhero__cta--outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, .45)
}

.vhero__cta--outline:hover {
  background: #fff;
  color: #000 !important;
  border-color: #fff
}

.vhero__slide--active .vhero__badge,
.vhero__slide--active .vhero__tagline,
.vhero__slide--active .vhero__title,
.vhero__slide--active .vhero__desc,
.vhero__slide--active .vhero__stats,
.vhero__slide--active .vhero__actions {
  opacity: 1;
  transform: translateY(0)
}

/* Controls */
.vhero__controls {
  position: absolute;
  bottom: 36px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 10
}

.vhero__arrow {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s
}

.vhero__arrow:hover {
  background: #fff;
  color: #000;
  border-color: #fff
}

.vhero__dots {
  display: flex;
  gap: 8px
}

.vhero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .3s
}

.vhero__dot--active {
  background: #fff;
  width: 26px;
  border-radius: 4px
}

.vhero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, .1);
  z-index: 10
}

.vhero__progress-bar {
  height: 100%;
  background: #fff;
  width: 0;
  transition: width linear
}

/* ══ SCENE 1: SOCIAL ICONS ══ */
@keyframes vs1Orbit {
  from {
    transform: rotate(var(--a, 0deg)) translateX(120px) rotate(calc(-1 * var(--a, 0deg)))
  }

  to {
    transform: rotate(calc(var(--a, 0deg) + 360deg)) translateX(120px) rotate(calc(-1 * (var(--a, 0deg) + 360deg)))
  }
}

@keyframes vs1Float {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-14px) scale(1.05)
  }
}

@keyframes vs1Ring {
  0% {
    transform: translate(-50%, -50%) scale(.6);
    opacity: .5
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0
  }
}

@keyframes vs1IconPop {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.15)
  }
}

.vhero__scene--social {
  overflow: visible
}

.vs1__center {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vs1Float 3.5s ease-in-out infinite;
  z-index: 2;
  position: relative;
  flex-shrink: 0
}

.vs1__center svg {
  width: 60px;
  height: 60px
}

.vs1__icon {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vs1Orbit 14s linear infinite;
  left: 50%;
  top: 50%;
  margin: -26px 0 0 -26px;
  transition: transform .3s
}

.vs1__icon svg {
  width: 22px;
  height: 22px;
  opacity: .75
}

.vs1__icon--ig {
  animation-duration: 14s;
  animation-delay: 0s
}

.vs1__icon--fb {
  animation-duration: 14s;
  animation-delay: -2.3s
}

.vs1__icon--wa {
  animation-duration: 14s;
  animation-delay: -4.7s
}

.vs1__icon--yt {
  animation-duration: 14s;
  animation-delay: -7s
}

.vs1__icon--tw {
  animation-duration: 14s;
  animation-delay: -9.3s
}

.vs1__icon--li {
  animation-duration: 14s;
  animation-delay: -11.7s
}

.vs1__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  animation: vs1Ring 3s ease-out infinite;
  pointer-events: none
}

.vs1__ring--1 {
  width: 160px;
  height: 160px;
  animation-delay: 0s
}

.vs1__ring--2 {
  width: 240px;
  height: 240px;
  animation-delay: 1s
}

.vs1__ring--3 {
  width: 310px;
  height: 310px;
  animation-delay: 2s
}

/* ══ SCENE 2: BROWSER ══ */
@keyframes vs2Float {

  0%,
  100% {
    transform: translateY(0) perspective(600px) rotateY(-5deg)
  }

  50% {
    transform: translateY(-16px) perspective(600px) rotateY(-3deg)
  }
}

@keyframes vs2BackFloat {

  0%,
  100% {
    transform: translateY(0) perspective(600px) rotateY(-8deg) scale(.85)
  }

  50% {
    transform: translateY(-10px) perspective(600px) rotateY(-6deg) scale(.85)
  }
}

@keyframes vs2TypeBar {

  0%,
  100% {
    width: 30%
  }

  50% {
    width: 80%
  }
}

@keyframes vs2BadgeFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.vhero__scene--web {
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow: visible
}

.vs2__browser {
  width: 380px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .6);
  animation: vs2Float 4.5s ease-in-out infinite;
  z-index: 2;
  position: relative
}

.vs2__browser--back {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-55%) perspective(600px) rotateY(-8deg) scale(.82);
  width: 340px;
  opacity: .25;
  animation: vs2BackFloat 5s ease-in-out infinite .4s;
  z-index: 1
}

.vs2__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.vs2__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  flex-shrink: 0
}

.vs2__url {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  margin-left: 8px;
  overflow: hidden;
  position: relative
}

.vs2__url-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
  animation: vs2TypeBar 3s ease-in-out infinite
}

.vs2__body {
  padding: 14px
}

.vs2__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.vs2__navlogo {
  width: 28px;
  height: 14px;
  background: rgba(255, 255, 255, .2);
  border-radius: 2px
}

.vs2__navlinks {
  display: flex;
  gap: 6px;
  flex: 1;
  margin-left: 12px
}

.vs2__navlinks div {
  height: 5px;
  width: 24px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px
}

.vs2__navbtn {
  width: 40px;
  height: 16px;
  background: rgba(255, 255, 255, .15);
  border-radius: 3px
}

.vs2__hero {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  height: 70px
}

.vs2__hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center
}

.vs2__hl {
  height: 8px;
  background: rgba(255, 255, 255, .18);
  border-radius: 3px;
  width: 90%
}

.vs2__hl--big {
  height: 14px;
  width: 80%
}

.vs2__hl--sm {
  width: 55%
}

.vs2__hbtn {
  width: 60px;
  height: 18px;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
  margin-top: 4px
}

.vs2__hero-img {
  width: 90px;
  background: rgba(255, 255, 255, .07);
  border-radius: 5px;
  flex-shrink: 0
}

.vs2__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.vs2__card {
  background: rgba(255, 255, 255, .05);
  border-radius: 5px;
  padding: 8px
}

.vs2__card-top {
  height: 36px;
  background: rgba(255, 255, 255, .1);
  border-radius: 4px;
  margin-bottom: 6px
}

.vs2__card-line {
  height: 5px;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px;
  margin-bottom: 4px
}

.vs2__card-line--s {
  width: 55%
}

.vs2__badge {
  position: absolute;
  top: var(--vb-t, 20%);
  right: var(--vb-r, 0%);
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 5px 12px;
  border-radius: 4px;
  animation: vs2BadgeFloat var(--vb-d, 3s) ease-in-out infinite var(--vb-dl, 0s);
  user-select: none
}

/* ══ SCENE 3: FILM / VIDEO ══ */
@keyframes vs3Spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes vs3StripScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes vs3PlayFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1)
  }
}

@keyframes vs3CamFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes vs3Pulse {
  0% {
    transform: translate(-50%, -50%) scale(.8);
    opacity: .6
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0
  }
}

.vhero__scene--video {
  overflow: visible;
  flex-direction: column;
  gap: 20px
}

.vs3__reel {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%)
}

.vs3__reel-outer {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .2);
  position: relative;
  animation: vs3Spin 8s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center
}

.vs3__reel-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center
}

.vs3__reel-hole {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .8);
  border: 1.5px solid rgba(255, 255, 255, .2)
}

.vs3__spoke {
  position: absolute;
  width: 2px;
  height: 55px;
  background: rgba(255, 255, 255, .12);
  top: 50%;
  left: 50%;
  transform-origin: bottom center;
  transform: rotate(0deg);
  margin-left: -1px;
  margin-top: -55px
}

/* Film strip at bottom */
.vs3__strip {
  position: absolute;
  bottom: 80px;
  left: -40px;
  right: -40px;
  height: 60px;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent)
}

.vs3__frame {
  flex-shrink: 0;
  width: 70px;
  height: 60px;
  border: 1.5px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  margin-right: 4px;
  position: relative;
  border-top: 6px solid rgba(255, 255, 255, .1);
  border-bottom: 6px solid rgba(255, 255, 255, .1);
  animation: vs3StripScroll 6s linear infinite
}

/* Play button center -->*/
.vs3__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  animation: vs3PlayFloat 2.5s ease-in-out infinite
}

.vs3__play svg {
  width: 80px;
  height: 80px
}

/* Camera */
.vs3__camera {
  position: absolute;
  left: 30px;
  top: 15%;
  width: 90px;
  height: 90px;
  opacity: .5;
  animation: vs3CamFloat 3.8s ease-in-out infinite .3s
}

.vs3__camera svg {
  width: 90px;
  height: 90px
}

/* Pulse rings */
.vs3__pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .2);
  animation: vs3Pulse 2.5s ease-out infinite
}

.vs3__pulse--1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s
}

.vs3__pulse--2 {
  width: 100px;
  height: 100px;
  animation-delay: 1.25s
}

/* Mobile responsive */
@media(max-width:991px) {
  .vhero__layout {
    padding: 0 30px
  }

  .vhero__content {
    width: 60%
  }

  .vhero__scene {
    width: 40%
  }

  .vs2__browser {
    width: 280px
  }

  .vs1__icon {
    animation: none;
    position: static;
    margin: 6px;
    display: inline-flex
  }

  .vhero__scene--social {
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
    gap: 12px
  }
}

@media(max-width:768px) {
  .vhero__section {
    height: calc(100vh - 70px) !important;
    min-height: 520px !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    padding-bottom: 0 !important;
  }

  .vhero__slider {
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .vhero__slide {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    height: 100% !important;
    width: 100% !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.8s ease-in-out !important;
  }

  .vhero__slide--active {
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 2 !important;
  }

  .vhero__layout {
    flex-direction: column !important;
    height: 100% !important;
    padding: 20px 20px 70px !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .vhero__content {
    width: 100% !important;
    padding-right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .vhero__scene {
    display: none !important;
  }

  .vhero__badge {
    margin-bottom: 12px !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all .7s var(--ease) .1s;
    display: inline-block !important;
  }

  .vhero__badge a {
    padding: 6px 12px !important;
    font-size: 10px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.4 !important;
    display: inline-flex !important;
  }

  .vhero__tagline {
    font-size: 11px !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  .vhero__title {
    font-size: clamp(1.8rem, 6.5vw, 2.8rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  .vhero__desc {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .vhero__actions {
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
    display: flex !important;
  }

  .vhero__cta {
    padding: 10px 20px !important;
    font-size: 11px !important;
    border-radius: 4px !important;
  }

  .vhero__stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 450px !important;
    margin: 0 auto !important;
  }

  .vhero__stat {
    text-align: center !important;
  }

  .vhero__num {
    font-size: 1.5rem !important;
  }

  .vhero__label {
    font-size: 8px !important;
    letter-spacing: 0.5px !important;
    line-height: 1.3 !important;
    margin-top: 2px !important;
  }

  .vhero__controls {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
  }
}

/* ── SERVICES CARDS ── */
@keyframes vsvcIn {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes vsvcIconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  40% {
    transform: translateY(-10px) rotate(3deg)
  }

  70% {
    transform: translateY(-4px) rotate(-1deg)
  }
}

@keyframes vsvcIconBob {

  0%,
  100% {
    transform: scale(1)
  }

  40% {
    transform: scale(1.16) translateY(-3px)
  }

  70% {
    transform: scale(.93) translateY(2px)
  }
}

@keyframes vsvcIconPop {
  0% {
    transform: scale(1)
  }

  30% {
    transform: scale(1.28) rotate(-8deg)
  }

  65% {
    transform: scale(.9) rotate(4deg)
  }

  100% {
    transform: scale(1)
  }
}

@keyframes vsvcPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .22)
  }

  65% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
  }
}

.vsvc__section {
  background: #000
}

.vsvc__head {
  margin-bottom: 70px
}

.vsvc__eye {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 6px 18px;
  margin-bottom: 16px
}

.vsvc__heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1
}

.vsvc__heading em {
  font-style: normal;
  -webkit-text-stroke: 2px #fff;
  color: transparent
}

.vsvc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-left: 1px solid rgba(255, 255, 255, .12)
}

.vsvc__card {
  padding: 46px 34px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
  transition: background .4s;
  opacity: 0;
  animation: vsvcIn .6s var(--ease) forwards var(--d, 0s)
}

.vsvc__card:hover {
  background: #0d0d0d
}

.vsvc__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease)
}

.vsvc__card:hover::before {
  transform: scaleX(1)
}

.vsvc__num {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .3);
  font-weight: 700;
  margin-bottom: 22px
}

.vsvc__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #111;
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
  animation: vsvcIconFloat 3s ease-in-out infinite, vsvcPulse 3s ease-in-out infinite .5s;
  transition: background .3s, border-color .3s
}

.vsvc__icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .07);
  transition: transform .4s, opacity .4s
}

.vsvc__icon::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transition: opacity .3s
}

.vsvc__icon i {
  font-size: 30px;
  color: #fff;
  animation: vsvcIconBob 3s ease-in-out infinite .3s;
  transition: color .3s
}

.vsvc__card:nth-child(1) .vsvc__icon {
  animation-duration: 2.8s, 2.8s
}

.vsvc__card:nth-child(2) .vsvc__icon {
  animation-duration: 3.4s, 3.4s;
  animation-delay: .2s, .7s
}

.vsvc__card:nth-child(3) .vsvc__icon {
  animation-duration: 2.5s, 2.5s;
  animation-delay: .4s, .9s
}

.vsvc__card:nth-child(4) .vsvc__icon {
  animation-duration: 3.8s, 3.8s;
  animation-delay: .1s, .6s
}

.vsvc__card:nth-child(5) .vsvc__icon {
  animation-duration: 2.2s, 2.2s;
  animation-delay: .3s, .8s
}

.vsvc__card:nth-child(6) .vsvc__icon {
  animation-duration: 3.6s, 3.6s;
  animation-delay: .5s, 1s
}

.vsvc__card:hover .vsvc__icon {
  background: #fff;
  border-color: #fff;
  animation: vsvcIconPop .5s ease forwards
}

.vsvc__card:hover .vsvc__icon i {
  color: #000;
  animation: vsvcIconPop .5s ease forwards
}

.vsvc__card:hover .vsvc__icon::before {
  transform: scale(1.5);
  opacity: 0
}

.vsvc__card:hover .vsvc__icon::after {
  opacity: 1
}

.vsvc__title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 32px 0 16px
}

.vsvc__title a {
  color: inherit;
  text-decoration: none
}

.vsvc__title strong {
  -webkit-text-stroke: 1.5px #fff;
  color: transparent
}

.vsvc__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  margin-bottom: 18px
}

.vsvc__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px
}

.vsvc__list li {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  letter-spacing: .5px
}

.vsvc__list li::before {
  content: '— ';
  color: rgba(255, 255, 255, .25)
}

.vsvc__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding-bottom: 2px;
  transition: gap .3s, border-color .3s
}

.vsvc__link:hover {
  color: #fff;
  border-color: #fff;
  gap: 14px
}

@media(max-width:991px) {
  .vsvc__grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .vsvc__grid {
    grid-template-columns: 1fr
  }

  .vsvc__card {
    padding: 30px 22px
  }
}

/* ── SERVICES TILES ── */
@keyframes vtileIn {
  from {
    opacity: 0;
    transform: scale(.9) translateY(18px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

@keyframes vtileSvgFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes vtileShimmer {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(250%)
  }
}

.vtiles__section {
  background: #000;
  padding: 90px 0 100px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden
}

.vtiles__head {
  text-align: center;
  margin-bottom: 56px
}

.vtiles__eye {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 6px 20px;
  margin-bottom: 16px
}

.vtiles__title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin: 0 0 12px
}

.vtiles__title em {
  font-style: normal;
  -webkit-text-stroke: 2px #fff;
  color: transparent
}

.vtiles__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .35);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7
}

.vtiles__track-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0;
}

.vtiles__track {
  display: flex;
  width: max-content;
  gap: 20px;
}

.vtiles__track--left {
  animation: vtilesScrollLeft 45s linear infinite;
}

.vtiles__track--right {
  animation: vtilesScrollRight 45s linear infinite;
}

.vtiles__track-container:hover .vtiles__track {
  animation-play-state: paused;
}

@keyframes vtilesScrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes vtilesScrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.vtile {
  width: 250px;
  min-height: 150px;
  flex-shrink: 0;
  opacity: 1 !important;
  animation: none !important;
  border-radius: 12px;
  background: var(--vbg, rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: vtileIn .55s cubic-bezier(.34, 1.3, .64, 1) forwards calc(var(--i, 0)*.05s);
  transition: all .3s
}

.vtile:hover {
  --vbg: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4)
}

.vtile::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #aaaaaa, #ffffff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease)
}

.vtile:hover::before {
  transform: scaleX(1)
}

.vtile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04), transparent);
  transform: translateX(-100%);
  pointer-events: none
}

.vtile:hover::after {
  animation: vtileShimmer .6s ease forwards
}

.vtile svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  animation: vtileSvgFloat 3s ease-in-out infinite calc(var(--i, 0)*.13s);
  transition: filter .3s
}

.vtile:hover svg {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, .35));
  animation-duration: 1.4s
}

.vtile span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  line-height: 1.5;
  transition: color .3s
}

.vtile:hover span {
  color: #fff
}

@media(max-width:768px) {
  .vtile {
    width: 180px;
    min-height: 120px;
    padding: 16px 12px;
  }
  .vtile svg {
    width: 38px;
    height: 38px;
  }
  .vtile span {
    font-size: 9px;
  }
  .vtiles__track--left {
    animation-duration: 25s;
  }
  .vtiles__track--right {
    animation-duration: 25s;
  }
}

/* ── HOW WE WORK ── */
@keyframes vhowIn {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.vhow__section {
  background: #000;
  padding: 110px 0;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

.vhow__head {
  text-align: center;
  margin-bottom: 70px
}

.vhow__eye {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 6px 20px;
  margin-bottom: 16px
}

.vhow__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 14px
}

.vhow__title em {
  font-style: normal;
  -webkit-text-stroke: 2px #fff;
  color: transparent
}

.vhow__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .4);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7
}

.vhow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-left: 1px solid rgba(255, 255, 255, .12)
}

.vhow__step {
  padding: 46px 30px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
  transition: background .4s;
  opacity: 0;
  animation: vhowIn .7s var(--ease) forwards calc(var(--i, 0)*.12s + .2s)
}

.vhow__step:hover {
  background: #0d0d0d
}

.vhow__step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease)
}

.vhow__step:hover::after {
  transform: scaleX(1)
}

.vhow__num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .06);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -2px;
  user-select: none
}

.vhow__icon {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: background .3s, border-color .3s, transform .4s var(--ease)
}

.vhow__icon i {
  font-size: 22px;
  color: #fff;
  transition: color .3s
}

.vhow__step:hover .vhow__icon {
  background: #fff;
  border-color: #fff;
  transform: rotate(-8deg) scale(1.08)
}

.vhow__step:hover .vhow__icon i {
  color: #000
}

.vhow__step-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 14px
}

.vhow__step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8
}

@media(max-width:991px) {
  .vhow__steps {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .vhow__steps {
    grid-template-columns: 1fr
  }
}

/* ── CLIENTS MARQUEE ── */
@keyframes vmarqScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.vmarq__section {
  background: #000;
  padding: 100px 0 110px;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

.vmarq__head {
  text-align: center;
  margin-bottom: 50px
}

.vmarq__eye {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 6px 20px;
  margin-bottom: 16px
}

.vmarq__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin: 0 0 12px
}

.vmarq__title em {
  font-style: normal;
  -webkit-text-stroke: 2px #fff;
  color: transparent
}

.vmarq__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 1px
}

.vmarq__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
  margin-bottom: 0
}

.vmarq__tab {
  padding: 18px 20px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
  position: relative
}

.vmarq__tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform .3s
}

.vmarq__tab:last-child {
  border-right: none
}

.vmarq__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, .04)
}

.vmarq__tab--on {
  color: #fff;
  background: rgba(255, 255, 255, .08)
}

.vmarq__tab--on::after {
  transform: scaleX(1)
}

.vmarq__wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: none;
  padding: 38px 0;
  background: #050505;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%)
}

.vmarq__reel {
  display: flex;
  align-items: center;
  width: max-content;
  animation: vmarqScroll 90s linear infinite
}

.vmarq__reel:hover {
  animation-play-state: paused
}

.vmarq__logo {
  width: 180px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s
}

.vmarq__logo:hover {
  background: rgba(255, 255, 255, .05)
}

.vmarq__logo img {
  max-width: 130px;
  max-height: 65px;
  object-fit: contain;
  filter: grayscale(100%) brightness(.75);
  transition: filter .35s, transform .35s
}

.vmarq__logo:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.08)
}

@media(max-width:768px) {
  .vmarq__tab {
    padding: 12px 12px;
    font-size: 11px
  }

  .vmarq__logo {
    width: 140px;
    height: 80px
  }
}

/* ── HERO SLIDE ANIMATED BACKGROUNDS ── */
@keyframes vhbgScan {
  0% {
    top: -2px
  }

  100% {
    top: 100%
  }
}

@keyframes vhbgCodeLine {
  0% {
    transform: translateX(-110%)
  }

  100% {
    transform: translateX(110vw)
  }
}

@keyframes vhbgCbPulse {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

@keyframes vhbgCursor {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

@keyframes vhbgBracket {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes vhbgTagFly {
  0% {
    transform: translate(0, 0);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: .7
  }

  100% {
    transform: translate(-160px, -50px);
    opacity: 0
  }
}

@keyframes vhbgGridDrift {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 36px 36px
  }
}

@keyframes vhbgFeedScroll {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-280px)
  }
}

@keyframes vhbgHeart {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.4)
  }
}

@keyframes vhbgSocFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(var(--sfy, -10px)) rotate(var(--sfr, 5deg))
  }
}

@keyframes vhbgRing {
  0% {
    transform: scale(1);
    opacity: .25
  }

  100% {
    transform: scale(1.9);
    opacity: 0
  }
}

/* dot grid shared */
.vhbg__dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: vhbgGridDrift 14s linear infinite;
  pointer-events: none
}

/* scan line */
.vhbg__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
  animation: vhbgScan 5s linear infinite;
  pointer-events: none
}

/* ── SLIDE 1 CODING ── */
.vhero__bg--1 {
  background-image: url("../imgs/hero/1/1-bg.png");
  background-color: #000;
  background-size: cover;
  background-position: center
}

.vhbg__codeline {
  position: absolute;
  top: var(--ct, 50%);
  width: var(--cw, 50%);
  height: 1.5px;
  background: rgba(255, 255, 255, .055);
  border-radius: 2px;
  animation: vhbgCodeLine var(--csp, 4s) linear infinite var(--cd, 0s)
}

.vhbg__codeblock {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: .13;
  width: 220px;
  pointer-events: none
}

.vhbg__cb {
  height: 10px;
  background: #fff;
  border-radius: 2px;
  animation: vhbgCbPulse 2s ease-in-out infinite var(--cbdl, 0s)
}

.vhbg__cursor {
  position: absolute;
  width: 2px;
  height: 14px;
  background: #fff;
  top: 0;
  left: 0;
  animation: vhbgCursor .85s step-end infinite
}

.vhbg__bracket {
  position: absolute;
  right: 18px;
  bottom: -14px;
  font-size: 130px;
  font-family: monospace;
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
  animation: vhbgBracket 4.5s ease-in-out infinite;
  user-select: none;
  pointer-events: none
}

.vhbg__tag {
  position: absolute;
  right: var(--tx, 30%);
  top: var(--ty, 50%);
  font-family: monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, .09);
  white-space: nowrap;
  animation: vhbgTagFly var(--tspd, 9s) linear infinite var(--tdl, 0s);
  pointer-events: none
}

/* ── SLIDE 2 PHONE ── */

.vhbg__phone {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 210px;
  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 10px 8px;
  gap: 6px
}

.vhbg__phone--ghost {
  right: 220px;
  opacity: .3;
  transform: translateY(-50%) scale(.75)
}

.vhbg__notch {
  width: 36px;
  height: 5px;
  background: rgba(255, 255, 255, .15);
  border-radius: 3px;
  margin: 0 auto 6px;
  flex-shrink: 0
}

.vhbg__feedwrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: vhbgFeedScroll 8s linear infinite
}

.vhbg__feeditem {
  flex-shrink: 0;
  background: rgba(255, 255, 255, .05);
  border-radius: 4px;
  padding: 5px
}

.vhbg__feedimg {
  width: 100%;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  margin-bottom: 4px
}

.vhbg__feedline {
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  margin-bottom: 3px
}

.vhbg__feedline--s {
  width: 55%
}

.vhbg__likes {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px
}

.vhbg__heart {
  width: 7px;
  height: 7px;
  background: rgba(255, 80, 80, .5);
  border-radius: 50%;
  animation: vhbgHeart 1.6s ease-in-out infinite
}

/* floating social icons */
.vhbg__soc {
  position: absolute;
  right: var(--sbx, 200px);
  top: var(--sby, 30%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vhbgSocFloat var(--sfd, 3s) ease-in-out infinite var(--sbd, 0s);
  pointer-events: none
}

.vhbg__soc svg {
  width: 17px;
  height: 17px;
  opacity: .55
}

.vhbg__soc--lg {
  width: 50px;
  height: 50px
}

.vhbg__soc--lg svg {
  width: 20px;
  height: 20px
}

.vhbg__soc::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  animation: vhbgRing 3s ease-out infinite var(--sbd, 0s)
}


/* ── SLIDE 2: WEBSITE / BROWSER BACKGROUND ── */
@keyframes vhbg2Float {

  0%,
  100% {
    transform: translateY(-50%)
  }

  50% {
    transform: translateY(calc(-50% - 10px))
  }
}

@keyframes vhbg2GhostFloat {

  0%,
  100% {
    transform: translateY(-50%) scale(.72)
  }

  50% {
    transform: translateY(calc(-50% - 8px)) scale(.72)
  }
}

@keyframes vhbg2TagFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes vhbg2TypeBar {

  0%,
  100% {
    width: 30%
  }

  50% {
    width: 70%
  }
}


.vhbg2__browser {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  overflow: hidden;
  opacity: .55;
  animation: vhbg2Float 4s ease-in-out infinite;
}

.vhbg2__browser--ghost {
  right: 360px;
  width: 220px;
  opacity: .22;
  animation: vhbg2GhostFloat 5s ease-in-out infinite .6s;
}

.vhbg2__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.vhbg2__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0
}

.vhbg2__url {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  animation: vhbg2TypeBar 3s ease-in-out infinite;
  margin-left: 6px
}

.vhbg2__hero-block {
  padding: 14px
}

.vhbg2__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px
}

.vhbg2__navline {
  height: 5px;
  width: 40%;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px
}

.vhbg2__navline--s {
  width: 16%;
  height: 4px
}

.vhbg2__banner {
  height: 80px;
  background: rgba(255, 255, 255, .07);
  border-radius: 4px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden
}

.vhbg2__banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .05), transparent);
  animation: vtileShimmer 3s ease infinite
}

.vhbg2__grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.vhbg2__card {
  background: rgba(255, 255, 255, .06);
  border-radius: 4px;
  padding: 8px
}

.vhbg2__card-img {
  height: 36px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  margin-bottom: 6px
}

.vhbg2__card-line {
  height: 4px;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px;
  margin-bottom: 4px
}

.vhbg2__card-line--s {
  width: 60%
}

/* floating code labels */
.vhbg2__tag {
  position: absolute;
  left: var(--t2x, 60%);
  top: var(--t2y, 30%);
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 4px 10px;
  border-radius: 3px;
  animation: vhbg2TagFloat var(--t2d, 3s) ease-in-out infinite var(--t2dl, 0s);
  pointer-events: none;
  user-select: none;
}

.vhbg2__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .07), transparent);
  animation: vhbgScan 6s linear infinite;
  pointer-events: none
}

/* ── SLIDE 3: SOCIAL MEDIA BACKGROUND ── */
@keyframes vhbg3Feed {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-200px)
  }
}

@keyframes vhbg3Heart {

  0%,
  100% {
    transform: scale(1)
  }

  40% {
    transform: scale(1.5)
  }

  70% {
    transform: scale(.9)
  }
}

@keyframes vhbg3SocFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(var(--s3fy, -10px)) rotate(var(--s3fr, 5deg))
  }
}

@keyframes vhbg3Ring {
  0% {
    transform: scale(1);
    opacity: .2
  }

  100% {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes vhbg3Story {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}


.vhbg3__phone {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 260px;
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .03);
  opacity: .7;
}

.vhbg3__notch {
  width: 40px;
  height: 5px;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
  margin: 8px auto 6px;
  flex-shrink: 0
}

.vhbg3__insta-bar {
  display: flex;
  gap: 6px;
  padding: 0 8px 8px;
  flex-shrink: 0
}

.vhbg3__story {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .06);
  flex-shrink: 0;
  animation: vhbg3Story 2s ease-in-out infinite
}

.vhbg3__story:nth-child(2) {
  animation-delay: .3s
}

.vhbg3__story:nth-child(3) {
  animation-delay: .6s
}

.vhbg3__story:nth-child(4) {
  animation-delay: .9s
}

.vhbg3__feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 6px;
  overflow: hidden;
  animation: vhbg3Feed 10s linear infinite
}

.vhbg3__post {
  background: rgba(255, 255, 255, .04);
  border-radius: 4px;
  padding: 6px;
  flex-shrink: 0
}

.vhbg3__post-head {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px
}

.vhbg3__avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0
}

.vhbg3__post-meta {
  flex: 1
}

.vhbg3__meta-line {
  height: 3px;
  background: rgba(255, 255, 255, .15);
  border-radius: 2px;
  margin-bottom: 3px
}

.vhbg3__meta-line--s {
  width: 50%
}

.vhbg3__post-img {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  margin-bottom: 5px
}

.vhbg3__actions {
  display: flex;
  gap: 6px;
  margin-bottom: 4px
}

.vhbg3__heart-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  animation: vhbg3Heart 2s ease-in-out infinite
}

.vhbg3__heart-icon--liked {
  background: rgba(255, 80, 80, .6)
}

.vhbg3__comment-icon {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .12)
}

.vhbg3__caption-line {
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  margin-bottom: 3px
}

.vhbg3__caption-line--s {
  width: 55%
}

/* social icon bubbles */
.vhbg3__soc {
  position: absolute;
  left: var(--s3x, 20%);
  top: var(--s3y, 30%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vhbg3SocFloat var(--s3d, 3s) ease-in-out infinite var(--s3dl, 0s);
  pointer-events: none;
}

.vhbg3__soc svg {
  width: 22px;
  height: 22px;
  opacity: .65
}

.vhbg3__soc--sm {
  width: 40px;
  height: 40px
}

.vhbg3__soc--sm svg {
  width: 17px;
  height: 17px
}

.vhbg3__soc--lg {
  width: 64px;
  height: 64px
}

.vhbg3__soc--lg svg {
  width: 26px;
  height: 26px
}

.vhbg3__soc::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
  animation: vhbg3Ring 3s ease-out infinite var(--s3dl, 0s)
}

.vhbg3__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .07), transparent);
  animation: vhbgScan 7s linear infinite;
  pointer-events: none
}

/* ── UNIQUE ABOUT SECTION ── */
.vabout__unique {
  background: #040404;
  overflow: hidden;
  position: relative;
}

.vabout__images {
  position: relative;
  padding-right: 30px
}

.vabout__img-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5)
}

.vabout__img-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s
}

.vabout__img-main:hover img {
  transform: scale(1.04)
}

.vabout__img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  pointer-events: none
}

.vabout__box-glass {
  position: absolute;
  bottom: -30px;
  right: -10px;
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 25px 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  animation: vtileSvgFloat 4s ease-in-out infinite;
  z-index: 10;
}

.vabout__box-glass h3 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1;
  background: linear-gradient(90deg, #aaaaaa, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vabout__box-glass p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase
}

.vabout__content {
  padding-left: 40px
}

.vabout__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 20px;
  margin-bottom: 20px;
  border-radius: 30px
}

.vabout__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px
}

.vabout__title em {
  font-style: normal;
  -webkit-text-stroke: 1.5px #fff;
  color: transparent
}

.vabout__text {
  margin-bottom: 30px
}

.vabout__text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px
}

.vabout__text strong {
  color: #fff;
  font-weight: 600
}

.vabout__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #fff;
  color: #000 !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s
}

.vabout__btn:hover {
  background: linear-gradient(90deg, #aaaaaa, #ffffff);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(14, 108, 245, 0.3)
}

@media(max-width:991px) {
  .vabout__images {
    margin-bottom: 60px;
    padding-right: 0
  }

  .vabout__content {
    padding-left: 0
  }

  .vabout__box-glass {
    right: 20px;
    bottom: -20px
  }
}

/* ==========================================================
   USER REQUESTED OVERRIDES (FONTS & HERO BGS & WRAPPING TABS)
   ========================================================== */

/* Hero Slide Backgrounds - Using Abstract Dark Wave */
.vhero__bg--2 {
  background-image: url("../img/black-wave-banner.png") !important;
  background-color: #000 !important;
  background-size: cover !important;
  background-position: center !important;
}

.vhero__bg--2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4) !important;
}

.vhero__bg--3 {
  background-image: url("../img/black-wave-banner.png") !important;
  background-color: #000 !important;
  background-size: cover !important;
  background-position: center !important;
}

.vhero__bg--3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4) !important;
}

/* Global Typography Updates for the restored sections */
.feature__content-left h3,
.feature__content-right h4,
.workflow__area-3 h2,
.workflow__area-3 h3,
.portfolio__text,
.sec-title,
.sec-sub-title,
.cta__title-2 {
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #fff !important;
}

.workflow__area-3 .research__number span,
.workflow__area-3 .counter__number {
  font-weight: 900 !important;
  background: linear-gradient(90deg, #aaaaaa, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.workflow__area-3 p,
.feature__area-6 p,
.price__area p,
.blog__area-3 p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Make Client Logo Tabs Wrap Cleanly */
.vmarq__tabs {
  border: none !important;
  gap: 12px;
  padding: 0 15px;
  justify-content: center;
}

.vmarq__tab {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 30px;
  padding: 10px 24px !important;
  margin-bottom: 10px;
}

.vmarq__tab::after {
  display: none !important;
}

.vmarq__tab--on {
  border-color: #aaaaaa !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #aaaaaa !important;
}

.sec-title-6 span,
.choose-title span,
.sec-title span,
.portfolio__text span,
.brand__title-3 span {
  color: transparent !important;
  -webkit-text-stroke: 1.5px #fff !important;
  font-weight: 900 !important;
}

/* Whitespace & Layout Improvements */
.pt-130 { padding-top: 150px !important; }
.pb-110, .pb-100 { padding-bottom: 130px !important; }
.pb-130, .pb-140 { padding-bottom: 150px !important; }
.mb-70 { margin-bottom: 80px !important; }

/* Improve Service Cards Spacing */
.vsvc__grid {
  gap: 30px !important;
}
.vsvc__card {
  padding: 40px 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.vsvc__card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 108, 245, 0.4);
}

/* Improve Buttons */
.vhero__cta, .vabout__btn {
  padding: 14px 32px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
}

/* Clean up Portfolio Area */
.portfolio__text {
  font-size: clamp(3rem, 6vw, 5rem) !important;
  opacity: 0.1;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.portfolio__item img {
  border-radius: 8px;
}

/* Pricing Model Equal Height Alignments */
.pricing-model__area .vsvc__card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  position: relative !important;
}

.pricing-model__area .vsvc__card .vsvc__title {
  min-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pricing-model__area .vsvc__card .vsvc__desc {
  min-height: 90px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 15px !important;
}

.pricing-model__area .vsvc__card .vsvc__list {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

/* Footer Layout, Overlaps, and Typography Refinement */
.footer__inner {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
}

.footer__widget {
  grid-column: span 3 !important;
}

.footer__widget-2 {
  grid-column: span 2 !important;
}

.footer__widget-3 {
  grid-column: span 3 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.dir-rtl .footer__widget-3 {
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-right: 0 !important;
}

.footer__widget-4 {
  grid-column: span 4 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.dir-rtl .footer__widget-4 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Responsive Footer Widgets for Smaller Screens */
@media only screen and (max-width: 991px) {
  .footer__widget,
  .footer__widget-2,
  .footer__widget-3,
  .footer__widget-4 {
    grid-column: span 12 !important;
    margin: 0 !important;
    padding: 20px 0 !important;
    text-align: center !important;
  }
  .dir-rtl .footer__widget-3 {
    padding: 20px 0 !important;
  }
}

/* Footer Font Sizes Overrides for Premium Compactness */
.footer__widget-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  padding-bottom: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #ffffff !important;
}

.footer__widget p {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer__link li {
  padding-bottom: 10px !important;
}

.footer__link li a {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-transform: capitalize !important;
  line-height: 1.5 !important;
}

.footer__link li a:hover {
  color: #ffffff !important;
}

.footer__contact {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer__contact li {
  padding-bottom: 10px !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer__contact li a {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer__contact li a:hover {
  color: #ffffff !important;
}

.footer__copyright p {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer__widget-4 .project-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  padding-bottom: 12px !important;
  color: #ffffff !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.footer__widget-4 .contact-time {
  font-size: 13px !important;
  font-weight: 500 !important;
  padding-top: 8px !important;
  padding-bottom: 3px !important;
  color: #ffffff !important;
  letter-spacing: 0 !important;
}

.footer__widget-4 .contact-day {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* ========================================== */
/*   MD VISION & BRAND SECTION IN HOMEPAGE   */
/* ========================================== */
.md__area {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
.md__img-wrapper {
  position: relative;
  background: #111111;
  padding: 12px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 420px;
  margin: 0 auto;
}
.md__img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}
.md__img-wrapper:hover img {
  filter: grayscale(0%);
}
.md__nameplate-box {
  margin-top: 15px;
  padding: 15px 20px;
  background: #000000;
  border-radius: 12px;
  border-left: 4px solid #ffffff;
  text-align: left;
  transition: all 0.3s ease;
}
.md__nameplate-name {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}
.md__nameplate-role {
  color: #888888;
  font-size: 13px;
  font-weight: 600;
  margin: 4px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}
.md__img-wrapper:hover .md__nameplate-box {
  border-left-color: #888888;
}
.md__img-wrapper:hover .md__nameplate-role {
  color: #ffffff;
}
.md__content-wrapper {
  padding: 20px 0;
}
.md__vision-tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 25px;
  letter-spacing: 3px;
  font-size: 11px;
  color: #aaaaaa;
  font-weight: 600;
  text-transform: uppercase;
}
.md__title {
  color: #ffffff !important;
  font-size: 46px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 30px;
  letter-spacing: -1px;
}
.md__quote {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 25px;
  font-style: normal;
}
.md__footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.md__brand-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.md__brand-logo {
  height: 40px;
  width: auto;
  filter: grayscale(100%) brightness(3);
}
.md__brand-text {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 15px;
}
.md__brand-text p:first-child {
  color: #aaaaaa;
  font-size: 11px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
}
.md__brand-text p:last-child {
  color: #555555;
  font-size: 9px;
  margin: 2px 0 0 0;
  font-weight: 600;
}
.md__story-link {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}
.md__story-link:hover {
  color: #aaaaaa;
  border-color: #aaaaaa;
}

/* ========================================== */
/*      OUR TEAM SCROLLING SLIDER & MODAL     */
/* ========================================== */
.team__section {
  background-color: #0d0d0d;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.team__tag-box {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-size: 11px;
  color: #888888;
  font-weight: 600;
  text-transform: uppercase;
}
.team__sec-title {
  color: #ffffff !important;
  font-size: 40px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: -1px;
}
.team__sec-desc {
  color: #888888;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.team__slider-container {
  margin-top: 50px;
  position: relative;
  padding: 0 40px;
}
.team__member-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  box-sizing: border-box;
}
.team__member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.team__member-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.team__member-card:hover::before {
  opacity: 1;
}
.team__member-index {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  line-height: 1;
  transition: all 0.4s ease;
}
.team__member-card:hover .team__member-index {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
}
.team__member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.team__member-card:hover .team__member-avatar {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.team__member-name {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}
.team__member-card:hover .team__member-name {
  color: #000000;
}
.team__member-role {
  color: #888888;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team__member-card:hover .team__member-role {
  color: #555555;
}
.team__member-experience {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.team__member-card:hover .team__member-experience {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.team__member-action {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.team__member-card:hover .team__member-action {
  opacity: 1;
  transform: translateY(0);
  color: #000000;
}

/* Swiper navigation buttons styled for dark mode */
.team-swiper-prev,
.team-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.team-swiper-prev { left: -10px; }
.team-swiper-next { right: -10px; }
.team-swiper-prev:hover,
.team-swiper-next:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* Interactive Profile Pop-up Modal Styling */
.profile-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px;
}
.profile-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.profile-modal__content {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  width: 100%;
  max-width: 800px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}
.profile-modal.is-open .profile-modal__content {
  transform: scale(1) translateY(0);
}
.profile-modal__close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.profile-modal__close-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: rotate(90deg);
}
.profile-modal__body {
  padding: 50px;
}
.profile-modal__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 36px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}
.profile-modal__name {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 5px 0;
  letter-spacing: -0.5px;
}
.profile-modal__role-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #aaaaaa;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 30px;
}
.profile-modal__section-title {
  color: #888888;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}
.profile-modal__bio {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 30px;
}
.profile-modal__future-box {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}
.profile-modal__future-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}
.profile-modal__future-desc {
  color: #888888;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}
.modal-skills {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.skill-item {
  width: 100%;
}
.skill-item__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.skill-item__name {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}
.skill-item__pct {
  color: #888888;
  font-size: 12px;
  font-weight: 600;
}
.skill-item__bar-bg {
  width: 100%;
  height: 6px;
  background: #222222;
  border-radius: 10px;
  overflow: hidden;
}
.skill-item__bar-fill {
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  width: 0%;
  transition: width 1s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* ========================================== */
/*      GOOGLE REVIEWS TESTIMONIALS MARQUEE  */
/* ========================================== */
.vreviews__section {
  background-color: #050505;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vreviews__head {
  text-align: center;
  margin-bottom: 60px;
}
.vreviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 16px;
  border-radius: 30px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.vreviews__badge svg {
  height: 14px;
  width: auto;
}
.vreviews__badge span.stars {
  color: #ffb700;
  letter-spacing: 1px;
  margin-left: 5px;
}
.vreviews__title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 950;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.vreviews__title em {
  font-style: normal;
  -webkit-text-stroke: 1.5px #fff;
  color: transparent;
}
.vreviews__marquee-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
.vreviews__track {
  display: flex;
  gap: 25px;
  width: max-content;
  will-change: transform;
}
.vreviews__track--left {
  animation: marqueeLeft 50s linear infinite;
}
.vreviews__track--right {
  animation: marqueeRight 50s linear infinite;
}
.vreviews__track:hover {
  animation-play-state: paused;
}
@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12.5px)); }
}
@keyframes marqueeRight {
  0% { transform: translateX(calc(-50% - 12.5px)); }
  100% { transform: translateX(0); }
}
.vreview-card {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 30px;
  width: 380px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  box-sizing: border-box;
}
.vreview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
  background: #141414;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}
.vreview-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.vreview-card__user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vreview-card__avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #252525;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}
.vreview-card__name {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
.vreview-card__status {
  color: #888;
  font-size: 11px;
  margin: 2px 0 0 0;
}
.vreview-card__status i {
  color: #4caf50;
  margin-right: 3px;
}
.vreview-card__google {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.6;
}
.vreview-card__rating {
  color: #ffb700;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.vreview-card__text {
  color: #ccc;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
  white-space: normal;
}

/* ========================================== */
/*      RESPONSIVE DARK-THEMED GOOGLE MAP     */
/* ========================================== */
.vmap__section {
  position: relative;
  background: #000;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.vmap__container {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.vmap__container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(90%);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.vmap__container:hover iframe {
  filter: grayscale(0%) invert(0%) contrast(100%);
}

@media only screen and (max-width: 991px) {
  .md__title {
    font-size: 36px !important;
  }
  .md__content-wrapper {
    padding-top: 40px;
  }
  .team-swiper-prev, .team-swiper-next {
    display: none !important;
  }
  .team__slider-container {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .profile-modal__body {
    padding: 30px;
  }
  .profile-modal__avatar {
    margin: 0 auto 20px;
  }
  .profile-modal__name {
    font-size: 28px;
  }
  .vreview-card {
    width: 300px;
    padding: 20px;
  }
  .vmap__container {
    height: 300px;
  }
}

/* Mobile and tablet styling for Why Choose Us vertical stacking */
@media only screen and (max-width: 1200px) {
  .workflow__wrapper-3 {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }
  .workflow__area-3 .wf_panel {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    display: block !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .workflow__area-3 {
    height: auto !important;
    overflow: visible !important;
  }
  .research__area.pt-150 {
    padding-top: 60px !important;
  }
}

/* ==========================================================
   COMBINED PINNED SECTION (WHO WE ARE & MD VISION)
   ========================================================== */
.vabout-split-container {
  position: relative;
  background: #040404;
}

@media (min-width: 1201px) {
  .vabout-split-container {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: hidden;
  }
  .vabout-split-container > section {
    grid-area: 1 / 1;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }
  .vabout-split-container > .md__area {
    opacity: 0;
    visibility: hidden;
  }
  /* Ensure container doesn't overflow the viewport */
  .vabout-split-container > section .container {
    max-height: 90vh;
    overflow: visible;
  }
}

@media (max-width: 1200px) {
  .vabout-split-container {
    display: block;
  }
  .vabout-split-container > section {
    position: relative;
    display: block;
    height: auto;
    width: 100%;
  }
  .vabout-split-container > .md__area {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}


