*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    background: black;
    color: white;
    font-family: "gri", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 1.1rem;
    line-height: 1.1;
    overflow-x: hidden;
    /* Performance optimization */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CUSTOM SCROLLBAR (MATCHING LIQUID GLASS DESIGN) ===== */
/* Apply only to the viewport (html) to avoid double scrollbar from styled nested scroll areas */
html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: rgb(26, 0, 59);
}

html::-webkit-scrollbar-thumb {
    background: rgb(255, 12, 214);
    border-radius: 10px;
    border: 2px solid rgb(26, 0, 59);
}

html::-webkit-scrollbar-thumb:hover {
    background: rgb(255, 60, 224);
}

/* Firefox: style only the viewport scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: rgb(255, 12, 214) rgb(26, 0, 59);
}

::selection {
    background-color: rgb(255, 12, 214);
    color: white;
}

::-moz-selection {
    background-color: rgb(255, 12, 214);
    color: white;
}
@font-face {
    font-family: "oqi";
    src:
      url("../assets/fonts/noqy-webfont.woff2") format("woff2"),
      url("../assets/fonts/noqy-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
@font-face {
    font-family: "gri";
    src: url("../assets/fonts/twoogri.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "ibr";
    src:
      url("../assets/fonts/ibrthr.woff2") format("woff2"),
      url("../assets/fonts/ibrthr.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

:root{
    --primary-color: #FF00C8;
    --secondary-color: #4E00AD;
    --header-eyebrow-gap: clamp(0.4rem, 1.4vw, 0.65rem);
    --header-title-gap: 2rem;
    --header-block-end: 2rem;
    --section-flow-gap: clamp(5rem, 9vw, 10rem);
    --section-padding-y: clamp(5rem, 8vw, 8rem);
}

@media (max-width: 768px) {
  :root {
    --header-eyebrow-gap: clamp(0.35rem, 1.2vw, 0.55rem);
    --section-flow-gap: 3rem;
    --section-padding-y: 3rem;
  }

  .services-showcase-cards-holder,
  .about-us,
  .partners-marquee {
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .split-section,
  .workshowcase,
  .contact-section,
  .comment-section,
  .cta-section,
  .resources-section,
  .faq-section,
  .main-footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero .overlay.H100 {
    padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
  }
}
.custom-container{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.custom-container-two{
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

@media (max-width: 600px) {
  .custom-container,
  .custom-container-two {
    padding: 0 16px;
  }
}
.liquidGlass-wrapper{
  position:relative;
  display:flex;
  overflow:hidden;
  transition: all .35s cubic-bezier(.175,.885,.32,1.6);
}

.liquidGlass-effect{
  position:absolute;
  inset:0;
  z-index:0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: url(#glass-distortion);
  opacity:.95;
}

/* Disable heavy effects during scroll - REMOVED AS REQUESTED */
/* body.is-scrolling .liquidGlass-effect {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  filter: none;
} */

.liquidGlass-tint{
  position:absolute;
  inset:0;
  z-index:1;
  background: rgba(255,255,255,0.08);
}

.liquidGlass-shine{
  position:absolute;
  inset:0;
  z-index:2;
  box-shadow:
    inset 2px 2px 1px rgba(255,255,255,0.35),
    inset -1px -1px 1px rgba(0,0,0,0.35);
}

.liquidGlass-text{
  position:relative;
  z-index:3;
}


.glass-nav{
  position: relative;
  width: min(980px, 100%);
  border-radius: 20px;
  padding: 2px 3px;
  overflow: visible;
  box-shadow:
    0 14px 40px rgba(0, 0, 0, .55),
    0 0 40px rgba(255, 0, 170, .06);
}

/* Glass layers clip inside backdrop; nav content + dropdowns sit above */
.glass-nav__backdrop{
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glass-nav__backdrop .liquidGlass-effect,
.glass-nav__backdrop .liquidGlass-tint,
.glass-nav__backdrop .liquidGlass-shine{
  border-radius: inherit;
}

.glass-nav__backdrop .liquidGlass-shine{
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgb(217 112 255 / 6%),
    inset 0 -1px 0 rgb(57 0 47 / 0.35%),
    inset 2px 2px 6px rgb(135 25 168 / 0.52);
}

.glass-nav .nav-inner{
  position: relative;
  z-index: 1;
}

.nav-inner{
  display:flex;
  align-items:center;
  gap: 10px;
  white-space:nowrap;
}

/* item */
.nav-item{
  color: rgba(255,255,255,0.9);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;

  position:relative;
  isolation:isolate;
  /* Clip hover sheen (::after); .glass-nav stays overflow:visible so the Services panel is not cut off */
  overflow: hidden;

  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}

.nav-icon{
  width: 17px;
  height: 17px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: currentColor;
}
.nav-icon svg{ width:22px; height:22px; }

.nav-label{
  font-size: 1.1rem;
  letter-spacing: .2px;
}
.nav-caret{
  font-size: 16px;
  opacity: .8;
  transform: translateY(1px);
}

/* Services → four service areas */
.nav-dropdown{
  position: relative;
  flex-shrink: 0;
}
.nav-dropdown__trigger{
  /* inherits .nav-item */
}
.nav-dropdown__panel{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  padding-top: 12px;
  min-width: 240px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown__list{
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: rgba(12, 6, 22, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(255, 0, 170, 0.06);
}
.nav-dropdown__link{
  display: block;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: .2px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.nav-dropdown__link:hover,
.nav-dropdown__link:focus-visible{
  background: rgb(220 0 255 / 12%);
  color: #fff;
  outline: none;
}
.nav-dropdown__link.is-active{
  color: #ff00b8;
  background: rgb(55 5 77 / 45%);
}

/* Animated hover: soft glow + moving sheen */
.nav-item::after{
  content:"";
  position:absolute;
  inset:-40%;
  border-radius: inherit;
  z-index:-1;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 65%);
  transform: translateX(-120%);
  opacity:0;
  pointer-events:none;
}

.nav-item:hover{
  background: rgb(220 0 255 / 8%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
}
.nav-item:hover::after{
  animation: navSheen .85s ease forwards;
  opacity:1;
}

@keyframes navSheen{
  0%{ transform: translateX(-120%); }
  100%{ transform: translateX(120%); }
}

/* Active item = pink like your screenshot */
.nav-item.is-active{
  color: #ff00b8;
  background: rgb(55 5 77 / 71%);
}

/* Optional: make active icon pop a bit */
.nav-item.is-active .nav-icon{
  filter: drop-shadow(0 0 18px rgba(255,0,184,.25));
}

/* Responsive */
@media (max-width: 760px){
  .nav-label{ font-size: 16px; }
  .nav-item{ padding: 9px 12px; }
  .nav-inner{ gap: 10px; overflow-x: auto; overflow-y: visible; scrollbar-width:none; }
  .nav-inner::-webkit-scrollbar{ display:none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .nav-item, .liquidGlass-wrapper{ transition:none; }
  .nav-item::after{ display:none; }
}

/* Desktop: dock primary nav to bottom after scrolling */
@media (min-width: 993px) {
  body.is-nav-docked {
    padding-bottom: 0;
  }

  .menu-icon.is-docked {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 28px;
    z-index: 1100;
    width: fit-content;
    max-width: calc(100vw - 48px);
    margin-inline: auto;
    display: flex;
    justify-content: center;
    pointer-events: auto;
    transform: none;
  }

  .menu-icon.is-dock-animating {
    will-change: transform;
    pointer-events: none;
  }

  .menu-icon.is-docked .glass-nav {
    width: auto;
    max-width: min(980px, calc(100vw - 48px));
    border-radius: 20px;
    padding: 2px 3px;
    box-shadow:
      0 14px 40px rgba(0, 0, 0, 0.55),
      0 0 40px rgba(255, 0, 170, 0.06);
  }

  .menu-icon.is-docked .nav-dropdown__panel {
    top: auto;
    bottom: 100%;
    padding-top: 0;
    padding-bottom: 14px;
    transform: translateX(-50%);
  }

  /* Invisible bridge so hover reaches the panel above the bar */
  .menu-icon.is-docked .nav-dropdown__panel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }

  .menu-icon.is-docked .nav-dropdown:hover .nav-dropdown__panel,
  .menu-icon.is-docked .nav-dropdown:focus-within .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  @media (prefers-reduced-motion: reduce) {
    .menu-icon.is-dock-animating {
      will-change: auto;
    }
  }
}

/* ===== WORK SHOWCASE ===== */
.workshowcase {
  padding: var(--section-padding-y) 0;
  width: 100%;
  /* Hardware acceleration for smoother scrolling */
  transform: translateZ(0);
  will-change: transform;
  contain-intrinsic-size: 1000px;
}

.workshowcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 275px;
  gap: 15px;
}

.work-card {
  position: relative;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  /* Optimized backdrop-filter */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background 0.4s ease, 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02),
              0 10px 30px rgba(0, 0, 0, 0.2);
  /* Performance hint */
  will-change: transform;
  /* Force GPU rendering */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


/* Specific Gradient Glows per Card (Premium feel) */
.work-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0.5;
}

.work-card-one::after {
  background: radial-gradient(circle at center, rgb(193 25 47 / 50%) 0%, transparent 50%);
}
.work-card-two::after {
  background: radial-gradient(circle at center, rgba(17, 138, 224, 0.5) 0%, transparent 50%);
}
.work-card-three::after {
  background: radial-gradient(circle at center, rgb(0 191 255 / 50%) 0%, transparent 50%);
}
.work-card-four::after {
  background: radial-gradient(circle at center, rgb(224 223 221 / 50%) 0%, transparent 50%);
}
.work-card-five::after {
  background: radial-gradient(circle at center, rgb(255 104 0 / 50%) 0%, transparent 50%);
}
.work-card-six::after {
  background: radial-gradient(circle at center, rgb(234 206 197 / 50%) 0%, transparent 50%);
}
.work-card-seven::after {
  background: radial-gradient(circle at center, rgb(182 236 63 / 50%) 0%, transparent 50%);
}
.work-card-eight::after {
  background: radial-gradient(circle at center, rgb(204 54 102 / 50%) 0%, transparent 50%);
}
.work-card-nine::after {
  background: radial-gradient(circle at center, rgb(238 0 235 / 34%) 0%, transparent 50%);
}
.work-card-ten::after {
  background: radial-gradient(circle at center, rgb(65 229 255 / 50%) 0%, transparent 50%);
}
.work-card-eleven::after {
  background: radial-gradient(circle at center, rgb(79 192 201 / 50%) 0%, transparent 50%);
}

.work-card:hover::after {
  opacity: 1;
}

/* Masonry Feature Card Layout */
.work-card.is-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card.long-card {
  grid-row: span 2;
}

.work-card.long-card-2 {
  grid-column: span 2;
}

.work-media {
  flex: 1;
  min-height: 0; /* CRITICAL: prevents image from pushing box height */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensures image stays within box without stretching */
}


.work-body {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  padding: 0 5px;
}

.work-title {
  font-size: 1.3rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.work-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.work-card:hover .tag {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .workshowcase__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .workshowcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-card.is-feature {
    grid-column: span 2;
  }
  .work-card.long-card-2 {
    grid-column: span 2;
  }
  .workshowcase {
    padding: var(--section-padding-y) 0;
  }
}

@media (max-width: 600px) {
  .workshowcase__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    grid-auto-rows: auto; /* Allow height to be determined by content on mobile */
  }
  .work-card.is-feature, 
  .work-card.long-card, 
  .work-card.long-card-2 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .work-media {
    height: 200px; /* Fixed height for media on mobile to keep things consistent */
    flex: none;
  }
  .work-card {
    padding: 20px;
    min-height: 0;
  }
  .work-title {
    font-size: 20px;
  }
}



@media (max-width: 768px) {
  .workshowcase__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .work-card.is-feature {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 400px;
  }
}

.workshowcase__load-more {
  display: none;
  justify-content: center;
  margin-top: 1.75rem;
}

@media (max-width: 768px) {
  .work-card.work-card--load-more-hidden:not(.is-work-visible) {
    display: none;
  }

  .workshowcase__load-more {
    display: flex;
  }

  .workshowcase__load-more[hidden] {
    display: none;
  }

  #audio-unlock-popup {
    display: none !important;
  }
}

.navbar{
    position: absolute;
    width: 100%;
    top: 37px;
    left: 0;
    z-index: 100;
}
.nav-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo img{
    width: 100%;
    height: 45px;
    object-fit: contain;
}

/* ===== NAVBAR RESPONSIVE ===== */

@media (max-width: 600px) {
  .navbar .custom-container {
    padding: 0 12px;
  }

  .navbar .logo {
    left: 12px;
    max-width: 120px;
  }

  .navbar .logo img {
    height: 34px;
  }

  .navbar .one-cta-button {
    right: 12px;
  }

  .navbar .one-cta-button .cta {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .nav-item {
    padding: 8px 10px;
  }
  .nav-label {
    font-size: 0.9rem;
  }
}

.navbar-scroll-glass {
  display: none;
}

/* App-style bottom navigation on tablet + mobile */
@media (max-width: 992px) {
  html {
    scroll-behavior: auto;
  }

  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  header {
    pointer-events: none;
  }

  .navbar {
    position: fixed;
    inset: 0;
    top: auto;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1000;
  }

  .navbar .custom-container {
    position: static;
    padding: 0;
    max-width: none;
    pointer-events: none;
  }

  .nav-content {
    position: static;
    display: block;
    pointer-events: none;
  }

  .navbar .logo {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top, 0px));
    left: 16px;
    z-index: 1001;
    max-width: 130px;
    height: 44px;
    display: flex;
    align-items: center;
    pointer-events: auto;
  }

  .navbar .logo img {
    height: 36px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }

  .navbar .one-cta-button {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top, 0px));
    right: 16px;
    z-index: 1001;
    height: 44px;
    display: flex;
    align-items: center;
    pointer-events: auto;
  }

  .navbar .one-cta-button .cta {
    width: auto;
    max-width: none;
    padding: 9px 16px;
    font-size: 0.88rem;
    line-height: 1;
    white-space: nowrap;
  }

  .navbar-scroll-glass {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(64px + env(safe-area-inset-top, 0px));
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition:
      opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-scroll-glass .liquidGlass-tint {
    background: rgba(26, 0, 59, 0.52);
  }

  .navbar-scroll-glass .liquidGlass-shine {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 1px 0 rgba(217, 112, 255, 0.08),
      inset 0 -1px 0 rgba(57, 0, 47, 0.2);
  }

  .navbar.is-scrolled .navbar-scroll-glass {
    opacity: 1;
    visibility: visible;
  }

  .menu-icon {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    display: flex;
    justify-content: center;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
      left 0.42s cubic-bezier(0.4, 0, 0.2, 1),
      right 0.42s cubic-bezier(0.4, 0, 0.2, 1),
      width 0.42s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
      bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, width, left, right;
  }

  .glass-nav {
    width: 100%;
    max-width: none;
    border-radius: 22px;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: visible;
    padding: 8px 6px 10px;
    box-shadow:
      0 -8px 32px rgba(0, 0, 0, 0.45),
      0 14px 40px rgba(0, 0, 0, 0.35),
      0 0 40px rgba(255, 0, 170, 0.08);
    transition:
      padding 0.42s cubic-bezier(0.4, 0, 0.2, 1),
      border-radius 0.42s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-icon .glass-nav__backdrop {
    opacity: 1;
    transition:
      border-radius 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-icon .liquidGlass-text.nav-inner {
    width: 100%;
  }

  .nav-inner {
    justify-content: space-between;
    align-items: center;
    gap: 2px;
    min-height: 58px;
    transition:
      gap 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      min-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-icon .nav-dropdown {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
  }

  .nav-item,
  .menu-icon .nav-dropdown__trigger {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 4px 10px;
    gap: 6px;
    overflow: hidden;
    border-radius: 16px;
    transition:
      padding 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      gap 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      border-radius 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      min-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      flex-direction 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-icon .nav-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition:
      width 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-icon .nav-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    transition:
      width 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-icon .nav-label {
    display: block;
    width: 100%;
    max-height: 1.4em;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0) scale(1);
    font-size: 0.68rem;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition:
      opacity 0.34s cubic-bezier(0.4, 0, 0.2, 1),
      max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.34s cubic-bezier(0.4, 0, 0.2, 1),
      margin 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-caret {
    display: none;
  }

  .nav-dropdown__panel {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(104px + env(safe-area-inset-bottom, 0px));
    top: auto;
    transform: none;
    min-width: 0;
    width: auto;
    padding: 0;
    z-index: 1002;
  }

  .nav-dropdown__list {
    padding: 8px;
  }

  .nav-dropdown__link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 12px;
    white-space: normal;
  }

  .nav-dropdown.is-open .nav-dropdown__trigger {
    background: rgb(220 0 255 / 12%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  }

  /* Open via tap (.is-open) only — not hover/focus */
  .nav-dropdown:not(.is-open):hover .nav-dropdown__panel,
  .nav-dropdown:not(.is-open):focus-within .nav-dropdown__panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-dropdown.is-open .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Scroll-compact bottom nav: icons only after scroll idle */
  .menu-icon.is-compact {
    left: 50%;
    right: auto;
    width: min(68vw, 272px);
    transform: translate3d(-50%, 0, 0);
  }

  .menu-icon.is-compact .glass-nav {
    width: 100%;
    border-radius: 999px;
    padding: 8px 14px;
    box-shadow:
      0 -6px 24px rgba(0, 0, 0, 0.4),
      0 10px 28px rgba(0, 0, 0, 0.3),
      0 0 28px rgba(255, 0, 170, 0.06);
  }

  .menu-icon.is-compact .glass-nav__backdrop {
    border-radius: 999px;
  }

  .menu-icon.is-compact .nav-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: 0;
    min-height: 44px;
    width: 100%;
  }

  .menu-icon.is-compact .nav-dropdown {
    flex: none;
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-icon.is-compact .nav-item,
  .menu-icon.is-compact .nav-dropdown__trigger {
    flex: none;
    width: 44px;
    height: 44px;
    min-width: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 0;
    border-radius: 999px;
    min-height: 0;
  }

  .menu-icon.is-compact .nav-item.is-active,
  .menu-icon.is-compact .nav-dropdown__trigger.is-active {
    padding: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .menu-icon.is-compact .nav-icon,
  .menu-icon.is-compact .nav-icon svg {
    width: 20px;
    height: 20px;
  }

  .menu-icon.is-compact .nav-label {
    position: absolute;
    width: 0;
    height: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: none;
    margin: 0;
    pointer-events: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .menu-icon,
    .menu-icon .glass-nav,
    .menu-icon .nav-inner,
    .menu-icon .nav-item,
    .menu-icon .nav-dropdown__trigger,
    .menu-icon .nav-icon,
    .menu-icon .nav-icon svg,
    .menu-icon .nav-label {
      transition: none;
    }
  }
}
.hero{
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    overflow-x: clip;
    overflow-y: visible;
}

@media (min-width: 993px) {
  .hero {
    height: auto;
    min-height: 100dvh;
    min-height: 100svh;
  }

  .hero .custom-container.H100 {
    height: auto;
    min-height: inherit;
  }

  .hero .overlay.H100 {
    align-items: center;
    justify-content: center;
    padding-top: calc(6.25rem + env(safe-area-inset-top, 0px));
    padding-bottom: clamp(2.5rem, 4vh, 5rem);
    box-sizing: border-box;
    min-height: 100dvh;
    min-height: 100svh;
  }
}

@media (min-width: 993px) and (max-height: 920px) {
  .hero .overlay.H100 {
    align-items: flex-start;
  }

  .main-heading h1 {
    font-size: clamp(1.2rem, 1.45vw + 0.35rem, 1.65rem);
    line-height: 1.05;
  }

  .hero-content-left .description {
    font-size: 1rem;
    padding-top: 0;
    line-height: 1.42;
  }

  .hero-content-right {
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .hero-content-right .hero-laptop--desktop {
    max-height: min(46vh, 360px);
    max-width: min(100%, 460px);
    width: auto;
    object-fit: contain;
    animation-name: heroLaptopFloatCompact;
  }
}

@media (min-width: 993px) and (max-height: 760px) {
  .hero .overlay.H100 {
    padding-top: calc(4.75rem + env(safe-area-inset-top, 0px));
    padding-bottom: 1rem;
  }

  .hero-content {
    padding-top: 0.75rem;
    row-gap: 0.5rem;
  }

  .main-heading h1 {
    font-size: clamp(0.95rem, 0.85vw + 0.4rem, 1.2rem);
    line-height: 1.03;
  }

  .hero-content-left {
    gap: 0.4rem;
  }

  .hero-content-left .description {
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .hero .two-cta-buttons {
    margin-top: 0;
    gap: 10px;
  }

  .hero-content-right {
    grid-row: 1;
    align-self: center;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hero-content-right .hero-laptop--desktop {
    max-height: min(52vh, 340px);
    max-width: min(100%, 480px);
    width: auto;
    object-fit: contain;
    animation-name: heroLaptopFloatCompactShort;
  }

  .hero-content-carousel {
    margin-top: 0;
  }
}

/* Short laptop viewports (e.g. 1272×668) — compact hero like reference layout */
@media (min-width: 1100px) and (max-width: 1400px) and (max-height: 720px) {
  .hero .overlay.H100 {
    padding-top: calc(5rem + env(safe-area-inset-top, 0px));
    padding-bottom: 0.65rem;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 0.35rem;
    row-gap: 0.45rem;
    column-gap: 1.75rem;
  }

  .main-heading h1 {
    font-size: clamp(1.12rem, 1vw + 0.52rem, 1.38rem);
    line-height: 1.04;
  }

  .hero-content-left {
    gap: 0.45rem;
  }

  .hero-content-left .description {
    font-size: 0.875rem;
    line-height: 1.38;
    padding-top: 0;
    max-width: 34rem;
  }

  .hero .two-cta-buttons {
    margin-top: 0;
    gap: 10px;
  }

  .hero .two-cta-buttons .cta {
    font-size: 0.9rem;
    padding: 9px 16px;
  }

  .hero-content-right {
    align-self: center;
    justify-self: end;
  }

  .hero-content-right .hero-laptop--desktop {
    max-height: min(46vh, 310px);
    max-width: min(100%, 420px);
    width: auto;
    object-fit: contain;
    animation-name: heroLaptopFloatCompactShort;
  }

  .hero-content-carousel {
    margin-top: 0;
    max-width: 100%;
  }
}
.hero-content-carousel{
    width: 100%;
}
.H100{
    height: 100%;
}
.CENTERFLEX{
    display: flex;
    align-items: center;
}
.gradientBlur1{
    height: 550px;
    width: 700px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #FF00FF 0%, #4E00AD 70%);
    position: absolute;
    top: 200px;
    right: 50px;
    z-index: -1;
    filter: blur(300px);
    -webkit-filter: blur(300px);
    -moz-filter: blur(300px);
    -ms-filter: blur(300px);
    -o-filter: blur(300px);

}
.gradientBlurfooter{
    height: 400px;
    width: 700px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #FF00FF 0%, #4E00AD 70%);
    position: absolute;
    top: 200px;
    right: 50px;
    z-index: -1;
    filter: blur(300px);
    -webkit-filter: blur(300px);
    -moz-filter: blur(300px);
    -ms-filter: blur(300px);
    -o-filter: blur(300px);

}
.gradientBlur2{
    height: 541px;
    width: 837px;
    border-radius: 100%;
    background: linear-gradient(to bottom, #FF00FF 36%, #4E00AD 0%);
    position: absolute;
    top: 200px;
    right: 791px;
    z-index: -1;
    filter: blur(300px);
    -webkit-filter: blur(400px);
    -moz-filter: blur(400px);
    -ms-filter: blur(400px);
    -o-filter: blur(400px);
    opacity: 0.6;

}
.gradientBlur3{
    height: 425px;
    width: 576px;
    border-radius: 100%;
    background: linear-gradient(to bottom, #FF00FF 33%, #4E00AD 83%);
    position: absolute;
    top: 200px;
    right: 200px;
    z-index: -1;
    filter: blur(300px);
    -webkit-filter: blur(400px);
    -moz-filter: blur(400px);
    -ms-filter: blur(400px);
    -o-filter: blur(400px);
    opacity: 0.8;
}
.gradientBlur4 {
  height: 350px;
  width: 590px;
  border-radius: 100%;
  background: linear-gradient(to bottom, #FF00FF 48%, #7300ff 0%);
  position: absolute;
  bottom: 96px;
  right: 697px;
  z-index: -1;
  filter: blur(400px);
  -webkit-filter: blur(400px);
  -moz-filter: blur(400px);
  -ms-filter: blur(400px);
  -o-filter: blur(400px);

}
.gradientBlur5 {
  height: 514px;
  width: 893px;
  border-radius: 100%;
  background: linear-gradient(to bottom, #FF00FF 26%, #7401ff 80%);
  position: absolute;
  bottom: 9px;
  left: 53px;
  z-index: -1;
  filter: blur(300px);
  -webkit-filter: blur(300px);
  -moz-filter: blur(300px);
  -ms-filter: blur(300px);
  -o-filter: blur(300px);
  opacity: 0.8;
}
.gradientBlur6 {
  height: 514px;
  width: 893px;
  border-radius: 100%;
  background: linear-gradient(to bottom, #c600ff 26%, #984820 80%);
  position: absolute;
  bottom: 9px;
  left: 53px;
  z-index: -1;
  filter: blur(300px);
  -webkit-filter: blur(300px);
  -moz-filter: blur(300px);
  -ms-filter: blur(300px);
  -o-filter: blur(300px);
  opacity: 0.8;
}
.gradientBlur7 {
  height: 514px;
  width: 893px;
  border-radius: 100%;
  background: linear-gradient(to bottom, #ff8200 26%, #28b4d8 80%);
  position: absolute;
  bottom: 9px;
  right: 0;
  z-index: -1;
  filter: blur(300px);
  -webkit-filter: blur(300px);
  -moz-filter: blur(300px);
  -ms-filter: blur(300px);
  -o-filter: blur(300px);
  opacity: 0.8;
}
.gradientBlur8 {
  height: 514px;
  width: 893px;
  border-radius: 100%;
  background: linear-gradient(to bottom, #FF00FF -7%, #7401ff 0%);
  position: absolute;
  top: 29%;
  left: 178px;
  z-index: -1;
  filter: blur(300px);
  -webkit-filter: blur(500px);
  -moz-filter: blur(300px);
  -ms-filter: blur(300px);
  -o-filter: blur(300px);
  opacity: 0.8;
}
.gradientBlur9 {
  height: 350px;
  width: 611px;
  border-radius: 100%;
  background: linear-gradient(to bottom, #ff00cf 54%, #7300ff 71%);
  position: absolute;
  bottom: 194px;
  right: 641px;
  z-index: -1;
  filter: blur(400px);
  -webkit-filter: blur(400px);
  -moz-filter: blur(400px);
  -ms-filter: blur(400px);
  -o-filter: blur(400px);
}
.gradientBlur10 {
  height: 514px;
  width: 893px;
  border-radius: 100%;
  background: linear-gradient(to bottom, #b367e2 26%, #340835 80%);
  position: absolute;
  bottom: 9px;
  right: 0;
  z-index: -1;
  filter: blur(300px);
  -webkit-filter: blur(300px);
  -moz-filter: blur(300px);
  -ms-filter: blur(300px);
  -o-filter: blur(300px);
  opacity: 0.8;
}
.gradientBlurstartBL{
  height: 401px;
  width: 282px;
  background: #7c3eb5;
  position: absolute;
  bottom: -44px;
  left: 0;
  z-index: -1;
  filter: blur(203px);
  -webkit-filter: blur(203px);
  -moz-filter: blur(203px);
  -ms-filter: blur(203px);
  -o-filter: blur(203px);
  opacity: 0.8;
}
.gradientBlurstartTR{
  height: 401px;
  width: 282px;
  background: #7c3eb5;
  position: absolute;
  top: 0px;
  right: 0;
  z-index: -1;
  filter: blur(203px);
  -webkit-filter: blur(203px);
  -moz-filter: blur(203px);
  -ms-filter: blur(203px);
  -o-filter: blur(203px);
  opacity: 0.8;
}
.gradientBlurstartHeroLM{
  height: 421px;
  width: 411px;
  background: #a848ff;
  position: absolute;
  top: 128px;
  left: -81px;
  z-index: -1;
  filter: blur(254px);
  -webkit-filter: blur(254px);
  -moz-filter: blur(254px);
  -ms-filter: blur(254px);
  -o-filter: blur(254px);
  opacity: 0.8;
}
.hero-background-image-container{
   position: absolute;
   top: -110px;
   right: 29px;
   overflow: visible;
   pointer-events: none;
}
.hero-background-image{
   height: 135vh;
   width: auto;
   max-width: none;
   display: block;
}

.hero-background-image--mobile {
  display: none;
}

@keyframes heroLaptopFloat {
  0%, 100% {
    transform: translate(70px, 0);
  }
  50% {
    transform: translate(70px, -14px);
  }
}

@keyframes heroLaptopFloatCompact {
  0%, 100% {
    transform: translate(36px, 0);
  }
  50% {
    transform: translate(36px, -12px);
  }
}

@keyframes heroLaptopFloatCompactShort {
  0%, 100% {
    transform: translate(20px, 0);
  }
  50% {
    transform: translate(20px, -10px);
  }
}

@keyframes heroLaptopFloatMobile {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.hero-content-left{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero-content-right{
    flex: 1;
}
.hero-content-right img,
.hero-content-right .hero-laptop {
    transform: translateX(70px);
    animation: heroLaptopFloat 5s ease-in-out infinite;
    will-change: transform;
    max-width: 100%;
    height: auto;
}

.hero-content-right .hero-laptop--mobile {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content-right img,
  .hero-content-right .hero-laptop {
    animation: none;
    will-change: auto;
  }
}

.main-heading h1{
    font-size: clamp(2rem, 5vw + 1rem, 5rem);
    line-height: 1.1;
    font-weight: 500;
    font-family: "ibr", sans-serif;
    margin: 0;
}
.sub-heading {
    font-family: "oqi", sans-serif;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0 0 var(--header-eyebrow-gap);
    line-height: 1.25;
}
.main-heading {
    margin: 0;
}
.hero-content-left .description{
    font-size: 1.2rem;
    padding-top: 10px;
}

@media (min-width: 993px) {
  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 2.5rem;
    row-gap: 1.25rem;
    align-items: start;
    padding-top: 3rem;
  }

  .hero-content-left {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-content-right {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
    justify-self: center;
  }

  .hero-content-carousel {
    position: static;
    grid-column: 1;
    grid-row: 2;
    max-width: 600px;
    width: 100%;
    z-index: 2;
    justify-self: start;
  }

  .hero-content-carousel .services-button-carousel {
    position: static;
    width: 100%;
    max-width: none;
  }

  .hero .two-cta-buttons {
    position: relative;
    z-index: 2;
  }
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero {
    min-height: 100svh;
    height: auto;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
    overflow-y: visible;
  }

  .hero .custom-container.H100 {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: stretch;
    gap: 0.5rem;
    position: relative;
    height: auto;
    min-height: 0;
    flex: none;
  }

  .hero-content-left {
    order: 1;
    grid-column: auto;
    grid-row: auto;
    align-items: flex-start;
    align-self: auto;
    gap: var(--header-title-gap);
    flex: 0 0 auto;
  }

  .hero-content-right {
    order: 2;
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    justify-self: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0;
    flex: 0 0 auto;
  }

  .hero-content-carousel {
    order: 3;
    position: static;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: none;
    margin-top: 0.75rem;
    flex: 0 0 auto;
  }

  .hero .services-button-carousel,
  .hero-content-carousel .services-button-carousel {
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 0;
    margin-top: 0;
    z-index: 2;
  }

  .hero-content-right .hero-laptop--desktop {
    display: none;
  }

  .hero-content-right .hero-laptop--mobile {
    display: block;
  }

  .hero-content-right .hero-laptop {
    transform: none;
    animation: heroLaptopFloatMobile 5s ease-in-out infinite;
    width: min(440px, 100%);
    max-width: none;
    height: auto;
  }
  .hero-background-image-container {
    left: 0;
    right: auto;
    top: 53%;
    transform: translateX(-10%);
    width: auto;
    max-width: none;
    overflow: visible;
  }
  .hero-background-image--desktop {
    display: none;
  }
  .hero-background-image--mobile {
    display: block;
    height: auto;
    width: auto;
    max-height: none;
    max-width: min(550px, 120vw);
    object-fit: unset;
    object-position: unset;
  }
  .gradientBlur1, .gradientBlur2, .gradientBlur3,
  .gradientBlur4, .gradientBlur5, .gradientBlur6,
  .gradientBlur7, .gradientBlur8, .gradientBlur9,
  .gradientBlur10,
  .gradientBlurfooter,
  .gradientBlurstartBL, .gradientBlurstartTR, .gradientBlurstartHeroLM {
    transform: scale(0.5);
    opacity: 0.55;
  }
  .main-heading h1 {
    font-size: clamp(1.75rem, 6vw, 3rem);
  }

  .hero .overlay.H100 {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    align-items: flex-start;
    padding-top: calc(clamp(4.75rem, 8vw, 6.5rem) + env(safe-area-inset-top, 0px));
    padding-bottom: clamp(1.25rem, 3vh, 2rem);
  }
  .hero .custom-container.H100 {
    overflow: visible;
  }
  .hero .gradientBlur1,
  .hero .gradientBlurstartHeroLM {
    display: block;
    transform: none;
  }
  .hero .gradientBlur1 {
    width: 300px;
    height: 240px;
    top: 12%;
    right: -55px;
    left: auto;
    opacity: 0.62;
    filter: blur(130px);
    -webkit-filter: blur(130px);
  }
  .hero .gradientBlurstartHeroLM {
    width: 230px;
    height: 230px;
    top: 20%;
    left: -45px;
    right: auto;
    opacity: 0.58;
    filter: blur(110px);
    -webkit-filter: blur(110px);
  }
  .hero-content-left {
    padding-top: 1.25rem;
  }
  .hero-content,
  .hero-content-left,
  .hero-content-right {
    position: relative;
    z-index: 1;
  }
  .services-carousel-shell {
    padding: 0;
    gap: 6px;
  }

  .hero .services-nav {
    display: none;
  }

  .hero .services-button-carousel .service-button {
   
    width: 148px;
    height: 84px;
    min-height: 84px;
    padding: 0;
    border-radius: 22px;
    background: rgb(59 0 105 / 65%);
    border: 1px solid rgb(174 96 255 / 43%);
    box-shadow: inset 0px 4px 20px rgb(136 2 169 / 75%), inset 0 0px 19px -4px rgb(255 255 255 / 24%);

  }

  .hero .services-button-carousel .service-button:hover {
    border: 1px solid rgba(173, 96, 255, 0.658);
        box-shadow: inset 0px 4px 20px rgb(246 0 193 / 66%), inset 0 0px 19px -4px rgba(255, 255, 255, 0.39);
        background: rgb(61 0 48 / 61%);
  }

  .hero .services-button-carousel .service-button span {
    font-size: 1.05rem;
    line-height: 1.05;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    height: auto;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
    overflow-y: visible;
  }
  .hero .custom-container.H100 {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .hero .overlay.H100 {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    align-items: flex-start;
    padding-top: calc(clamp(4.75rem, 8vw, 6.5rem) + env(safe-area-inset-top, 0px));
    padding-bottom: calc(var(--section-flow-gap) + env(safe-area-inset-bottom, 0px));
    overflow: visible;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    align-content: flex-start;
    gap: 0.5rem;
    overflow: visible;
  }
  .hero-content-left {
    padding-top: 0.75rem;
    flex: 0 0 auto;
    order: 1;
    overflow: visible;
  }
  .hero .two-cta-buttons {
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    margin-top: 0.15rem;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
  }
  .hero .two-cta-buttons .cta {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
    font-size: 0.92rem;
    padding: 11px 14px;
    text-align: center;
    overflow: visible;
    isolation: auto;
  }
  .hero .two-cta-buttons .cta.button {
    filter:
      drop-shadow(2px 2px 10px rgba(255, 255, 255, 0.18))
      drop-shadow(0 0 20px rgba(255, 92, 138, 0.4))
      drop-shadow(0 0 20px rgba(123, 77, 255, 0.3));
  }
  .main-heading h1 {
    font-size: clamp(1.65rem, 7.2vw, 2.35rem);
    line-height: 1.08;
  }
  .hero-content-left .description {
    font-size: 0.98rem;
    line-height: 1.45;
    margin-bottom: 0;
    padding-top: 0;
  }
  .hero-content-right {
    display: flex;
    flex: 0 0 auto;
    order: 2;
    min-height: 0;
    margin-top: 0;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }
  .hero-content-carousel {
    flex: 0 0 auto;
    order: 3;
    margin-top: 0.75rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .hero-content-right .hero-laptop--mobile {
    width: min(420px, 108%);
    max-height: min(100%, 320px);
    max-width: 100%;
    object-fit: contain;
    margin-top: 0;
  }
  .hero .services-button-carousel {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .hero .services-carousel-shell {
    padding: 0;
    gap: 0;
  }
  .hero .services-nav {
    display: none;
  }
  .hero .gradientBlur1 {
    width: 250px;
    height: 200px;
    top: 8%;
    right: -48px;
    opacity: 0.68;
    filter: blur(95px);
    -webkit-filter: blur(95px);
  }
  .hero .gradientBlurstartHeroLM {
    width: 195px;
    height: 195px;
    top: 14%;
    left: -38px;
    opacity: 0.62;
    filter: blur(85px);
    -webkit-filter: blur(85px);
  }
  /* Other gradient blurs: scale down outside hero */
  .gradientBlur2, .gradientBlur3,
  .gradientBlur4, .gradientBlur5, .gradientBlur6,
  .gradientBlur7, .gradientBlur8, .gradientBlur9,
  .gradientBlur10,
  .gradientBlurfooter,
  .gradientBlurstartBL, .gradientBlurstartTR {
    transform: scale(0.38);
    opacity: 0.5;
  }
  .gradientBlur2 { right: -35%; left: auto; }
  .gradientBlur4 { right: -25%; left: auto; }
  .gradientBlur9 { right: -25%; left: auto; }
  .gradientBlurstartBL { left: -15%; right: auto; }
  .gradientBlurstartTR { right: -15%; left: auto; }
}

@media (max-width: 600px) {
  .hero .overlay.H100 {
    padding-top: calc(clamp(5rem, 9vw, 6.5rem) + env(safe-area-inset-top, 0px));
    padding-bottom: calc(var(--section-flow-gap) + env(safe-area-inset-bottom, 0px));
  }
  .hero-content-left {
    padding-top: 1.5rem;
  }
  .main-heading h1 {
    font-size: clamp(2.8rem, 6.8vw, 1.75rem);
  }
  .hero .two-cta-buttons {
    flex-direction: row;
    align-items: stretch;
  }
  .hero .two-cta-buttons .cta {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    font-size: 0.88rem;
    padding: 10px 12px;
  }
  .two-cta-buttons .cta {
    width: 100%;
    max-width: 280px;
  }

  .hero .two-cta-buttons .cta {
    width: auto;
    max-width: none;
  }

  .hero-content-right .hero-laptop--mobile {
    width: min(400px, 112%);
    max-height: min(100%, 300px);
    margin-top: 0;
  }
  .hero-background-image--mobile {
    max-width: min(550px, 120vw);
  }
  .hero-content-carousel {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .hero .services-carousel-shell {
    padding: 0;
  }
  .hero .gradientBlur1 {
    display: block;
    width: 248px;
    height: 225px;
    top: 55%;
    right: 91px;
    opacity: 0.8;
    filter: blur(120px);
    -webkit-filter: blur(120px);
  }
  .hero .gradientBlurstartHeroLM {
    display: block;
    width: 239px;
    height: 249px;
    top: 10%;
    left: -19px;
    opacity: 0.75;
    filter: blur(126px);
    -webkit-filter: blur(126px);
  }
  /* Hide non-hero decorative blurs on small phones */
  .gradientBlur2, .gradientBlur3,
  .gradientBlur4, .gradientBlur5, .gradientBlur6,
  .gradientBlur7, .gradientBlur8, .gradientBlur9,
  .gradientBlur10,
  .gradientBlurfooter,
  .gradientBlurstartBL, .gradientBlurstartTR {
    transform: scale(0.28);
    opacity: 0.45;
    display: none;
  }
  .gradientBlur2 { right: -40%; left: auto; }
  .gradientBlur4 { right: -30%; left: auto; }
  .gradientBlur9 { right: -30%; left: auto; }
  .gradientBlurstartBL { left: -20%; right: auto; }
  .gradientBlurstartTR { right: -20%; left: auto; }
}

.two-cta-buttons, .one-cta-button{
    display: flex;
    gap: 16px;
    flex-wrap: wrap; 
} 

.cta{
    font-family:"ibr", sans-serif;
    font-weight:400;
    text-decoration:none;
    color:#fff;
    line-height:1;
    font-size:1.1rem;
    padding:10px 20px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;   
    isolation:isolate;
    cursor:pointer;
    transition:
      transform .18s ease,
      box-shadow .18s ease,
      border-color .18s ease,
      background .18s ease,
      filter .18s ease;
  }
  

  .button{
    background:linear-gradient(to right, #ff2bb6 0%, #7142f9 100%);
    box-shadow:
      inset 2px 2px 8px rgba(255,255,255,.30),
      inset 0 -2px 6px rgba(255,255,255,.25);
    filter:
      drop-shadow(2px 2px 10px rgba(255,255,255,.18))
      drop-shadow(0 0 24px rgba(255,92,138,.40))
      drop-shadow(0 0 24px rgba(123,77,255,.30));
    z-index:1;
    border: transparent;
  }
  

  .button::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    z-index:0;
    box-shadow: inset 2px 2px 8px rgba(255,255,255,.35);
    opacity:.9;
  }
  

  .button::after{
    content:"";
    position:absolute;
    inset:-40%;
    border-radius:inherit;
    pointer-events:none;
    z-index:0;
    background:linear-gradient(
      120deg,
      transparent 30%,
      rgba(255,255,255,.65) 50%,
      transparent 70%
    );
    transform:translateX(-120%);
    opacity:0;
  }
  

  .button:hover{
    transform:translateY(-1px);
    animation:glowPulse 1.6s ease-in-out infinite alternate;
  }
  .button:hover::after{
    animation:shineSweep .9s ease forwards;
  }
  

  .button:active{
    transform:translateY(0) scale(.97);
    animation:none;
  }
  

  .button-secondary{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(123,77,255,.25);
    backdrop-filter:blur(50px);
    -webkit-backdrop-filter:blur(50px);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.10),
      0 10px 26px rgba(0,0,0,.22);
  }
  

  .button-secondary::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    z-index:0;
    
    background:radial-gradient(
      circle at center,
      rgba(123,77,255, 0.35),
      transparent 60%
    );
    opacity:0;
    transform:scale(.6);
    transition:opacity .45s ease, transform .45s ease;
  }
  
  .button-secondary:hover{
    transform:translateY(-1px);
    border-color:rgba(123,77,255);
    background:rgba(255,255,255,.12);
    box-shadow:
      inset 0 0 0 1px rgba(225, 0, 255, 0.16),
      0 0 18px rgba(249, 77, 255, 0.2),
      0 0 18px rgba(255,92,138,.18);
  }
  .button-secondary:hover::after{
    opacity:1;
    transform:scale(1.4);
  }
  
  .button-secondary:active{
    transform:translateY(0) scale(.97);
  }
  

  .cta:focus-visible{
    outline:none;
    box-shadow:
      0 0 0 3px rgba(123,77,255,.35),
      0 0 0 6px rgba(255,92,138,.20);
  }
  

  @keyframes shineSweep{
    0%{ transform:translateX(-120%); opacity:0; }
    30%{ opacity:1; }
    100%{ transform:translateX(120%); opacity:0; }
  }
  
  @keyframes glowPulse{
    from{
      filter:
        drop-shadow(0 0 18px rgba(255,92,138,.45))
        drop-shadow(0 0 18px rgba(123,77,255,.35));
    }
    to{
      filter:
        drop-shadow(0 0 28px rgba(255,92,138,.80))
        drop-shadow(0 0 28px rgba(123,77,255,.70));
    }
  }
  
  .services-button-carousel{
    position: relative;
    width: 100%;
    max-width: 600px;
    z-index: 2;
  }

  .services-carousel-shell{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
  }

  .hero .services-carousel-shell {
    padding: 0;
    gap: 0;
  }

  .hero .servicesSwiper .swiper-slide {
    justify-content: flex-start;
  }

  .hero .two-cta-buttons {
    padding-left: 0;
    padding-right: 0;
  }

  .servicesSwiper{
    width: 100%;
    overflow: hidden;
  }

  .servicesSwiper .swiper-wrapper{
    align-items: center;
  }

  .servicesSwiper .swiper-slide{
    display: flex;
    justify-content: center;
  }

  .service-button{
    width: 160px;
    height: 92px;
    padding: 0;
    border-radius: 22px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 0, 50, .55);
    border: 1px solid rgb(174 96 255 / 43%);
    box-shadow: inset 0px 4px 20px rgb(98 20 126 / 34%), 
                inset 0 0px 19px -4px rgb(255 255 255 / 24%);
   
    
  }
  .service-button:hover{
    border: 1px solid rgba(173, 96, 255, 0.658);
    box-shadow: inset 0px 4px 20px rgba(98, 20, 126, 0.521), 
                inset 0 0px 19px -4px rgba(255, 255, 255, 0.39);
    cursor: pointer;
   
    
  }
.heading{
  font-family: "ibr", sans-serif;
  font-size: clamp(32px, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 2rem;
}

.middle-heading,
.comment-header,
.resources-header,
.faq-header {
  margin: 0 0 2rem;
  padding: 0;
  text-align: center;
}

.middle-heading .heading,
.comment-header .heading,
.resources-header .heading,
.faq-header .heading {
  margin-bottom: 0;
}

.about-us-content-left {
  gap: var(--header-title-gap);
}

.about-us-content-left-heading .heading {
  margin: 0;
}

.cta-left {
  gap: var(--header-title-gap);
}

.cta-left .heading,
.cta-left .p {
  margin: 0;
}

.split-col.is-text .heading {
  margin: 0 0 2rem;
}

.split-col.is-text .p {
  margin-top: 0;
}
.p-t-10{
  padding-top: 10px;
}
  .service-button span{
    font-family: "ibr", sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.05;
  }

  .services-nav{
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    color: rgba(255,255,255,.9);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
  }

  .hero .services-nav {
    display: none;
  }

  .services-nav:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.06);
    border-color: rgb(255, 255, 255);
  }

  .services-nav:active{
    transform: translateY(0) scale(.98);
  }

  .services-nav-prev::before{
    content: "‹";
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .services-nav-next::before{
    content: "›";
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
  }
.p{
  font-size: 18px;
  line-height: 1.6;
  color: rgb(255, 255, 255);
  margin-bottom: 32px;
}
.services-showcase-cards-holder{
  margin-top: var(--section-flow-gap);
  position: relative;
}

.about-us{
  margin-top: var(--section-flow-gap);
  position: relative;
}
.about-us-content{
  display: flex;
  justify-content: space-between;
  align-items: center; 
  gap: 40px;
}
.about-us-content-left{
  flex: 1;
  display: flex;
  gap: var(--header-title-gap);
  flex-direction: column;
}
.about-us-content-right{
  flex: 1;
}

.about-us-card-holder{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 40px;
}

.about-us-card{
  background: rgba(30, 0, 50, .55);
  border: 1px solid rgba(174, 96, 255, .65);
  box-shadow: 
  inset 0px 4px 20px rgb(98 20 126 / 75%), 
  inset 0 0px 19px -4px rgb(255 255 255 / 19%);
  padding: 40px 30px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== ABOUT SECTION RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-us-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .about-us-content-left {
    align-items: center;
  }
  .about-us-content-right {
    width: 100%;
  }
  .about-us-card-holder {
    padding: 0 12px;
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-us-content {
    gap: 3rem;
  }

  .about-us-content-left .description .p {
    text-align: justify;
  }

  .about-us-card-holder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    max-width: none;
  }

  .about-us-card {
    padding: 14px 12px;
    gap: 4px;
    border-radius: 16px;
    text-align: left;
  }

  .about-us-card-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
  }

  .about-us-card-content {
    margin-top: 0.35rem;
  }

  .about-us-card-content h3 {
    font-size: clamp(0.82rem, 3.1vw, 0.98rem);
    line-height: 1.15;
  }

  .about-us-card-description p {
    font-size: 0.78rem;
    line-height: 1.25;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .about-us-card-holder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
  }
  .about-us-card {
    padding: 12px 10px;
    gap: 2px;
    border-radius: 14px;
  }
  .about-us-card-icon img {
    width: 30px;
    height: 30px;
  }
  .about-us-card-content {
    margin-top: 0.25rem;
  }
  .about-us-card-content h3 {
    font-size: clamp(0.78rem, 2.9vw, 0.9rem);
  }
  .about-us-card-description p {
    font-size: 0.72rem;
  }
}

.about-us-card-content{
  margin-top: 1.5rem;
}
.shadowtext{
  text-shadow: 0 0 20px rgba(0, 0, 0, 1);
  user-select: none;
}

  .split-section {
    padding: var(--section-padding-y) 0;
    position: relative;
  }
  .split-row {
    display: flex;
    align-items: center;
  }
  .split-col {
    flex: 1;
  }


  .split-col.is-media img {
    width: 100%;
    height: auto;
  }

  /* Reverse layout option */
  .split-row.is-reverse {
    flex-direction: row-reverse;
  }

  @media (max-width: 992px) {
    .split-row {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }
    .split-col.is-text {
      order: 1;
    }
    .split-col.is-media {
      order: 2;
    }
    .split-col.is-text .cta {
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .split-row {
      gap: 28px;
    }

    .split-col.is-text .p {
      text-align: justify;
    }
  }

  .contact-section {
    padding: var(--section-padding-y) 0;
    position: relative;
  }

  .contact-section .long-wave-holder {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    pointer-events: none;
    top: 185px;
  }

  .contact-section .long-wave-holder img {
    width: 100%;
    height: auto;
  }

  .contact-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
  }

  .contact-left {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .contact-right {
    flex: 1.15;
  }

  .contact-card-stack {
    position: relative;
    width: min(380px, 90%);
    height: 470px;
  }

  .contact-card {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(160deg, #ff3fb8 0%, #7b2bff 100%);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.45),
      inset 0 0 40px rgba(255, 255, 255, 0.16);
  }

  .contact-card:nth-child(1) {
    transform: translateX(-70px) translateY(50px);
    opacity: 0.3;
  }

  .contact-card:nth-child(2) {
    transform: translateX(-45px) translateY(30px);
    opacity: 0.5;
  }

  .contact-card:nth-child(3) {
    transform: translateX(-20px) translateY(12px);
    opacity: 0.75;
  }

  .contact-card-front {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    color: #fff;
    text-align: left;
  }

  .contact-card-front h3 {
    font-size: 2.1rem;
    line-height: 1.1;
    font-family: "ibr", sans-serif;
    font-weight: 500;
  }

  .contact-card-front p {
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
  }

  .contact-chip {
    align-self: flex-start;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.2);
  }

  .contact-form-card {
    background: radial-gradient(circle at top right, rgb(255 105 237 / 28%), #00000000 55%), rgb(51 51 51 / 75%);
    border-radius: 26px;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), inset 0 0 30px rgba(255, 255, 255, 0.08);
  }

  .contact-form-card h2 {
    font-size: clamp(1.75rem, 5vw, 2.3rem);
    line-height: 1.1;
    margin: 0 0 2rem;
    font-family: "ibr", sans-serif;
  }

  .contact-form-card p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 var(--header-block-end);
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-form input:not([type="checkbox"]),
  .contact-form select {
    width: 100%;
    height: 46px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0 18px;
    font-size: 0.95rem;
    background: #f4f4f4;
    color: #1d1d1d;
  }

  .contact-form input::placeholder {
    color: #7a7a7a;
  }

  .contact-form select {
    appearance: none;
    background-image:
      linear-gradient(45deg, transparent 50%, #7a7a7a 50%),
      linear-gradient(135deg, #7a7a7a 50%, transparent 50%);
    background-position:
      calc(100% - 22px) 50%,
      calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 36px;
  }

  .contact-form input:not([type="checkbox"]):focus,
  .contact-form select:focus {
    outline: none;
    border-color: rgba(123, 77, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(123, 77, 255, 0.25);
  }

  .contact-consent-group {
    margin-top: 0.25rem;
  }

  .contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    text-align: left;
  }

  .contact-consent-group.is-invalid .contact-consent {
    border-color: rgba(255, 77, 77, 0.45);
  }

  .contact-consent input[type="checkbox"] {
    flex: 0 0 1.15rem;
    width: 1.15rem;
    height: 1.15rem;
    min-height: 0;
    max-width: 1.15rem;
    margin: 0.15rem 0 0;
    padding: 0;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.95);
    accent-color: #ff00b8;
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: checkbox;
  }

  .contact-consent__text {
    flex: 1;
    min-width: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
  }

  .contact-consent__text a {
    color: #ff5fce;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .contact-consent__text a:hover {
    color: #fff;
  }

  .contact-consent__error {
    position: static;
    display: block;
    margin-top: 0.35rem;
    min-height: 0;
    transform: none;
    text-align: left;
  }

  .contact-recaptcha-holder {
    display: none !important;
  }

  /* reCAPTCHA v3 badge — hidden per site design; verification still runs on submit */
  .grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    right: -9999px !important;
    bottom: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .contact-submit {
    align-self: center;
    min-width: 160px;
    padding: 12px 28px;
  }

  @media (max-width: 992px) {
    .contact-layout {
      flex-direction: column;
      text-align: center;
    }

    .contact-card-stack {
      height: 420px;
    }

    .contact-card-front {
      text-align: center;
      align-items: center;
    }

    .contact-chip {
      align-self: center;
    }

    .contact-form-card {
      padding: 32px 24px;
    }

    .contact-form-row {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .contact-left {
      display: none;
    }

    .contact-right {
      flex: 1;
      width: 100%;
    }

    .contact-layout {
      gap: 0;
    }
  }

  @media (max-width: 600px) {
    .contact-section .long-wave-holder {
      top: 120px;
    }
  }

  .comment-section {
    padding: var(--section-padding-y) 0;
    position: relative;
  }

  .comment-header {
    text-align: center;
  }

  

  .comment-swiper {
    padding: 30px 0 50px;
    
  }
  .comment-box-holder{
    padding-top: clamp(2.5rem, 6vw, 3.75rem);
  }
  .comment-swiper .swiper-wrapper {
    align-items: center;
  }

  .comment-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.65;
  }

  .comment-card {
    position: relative;
    width: 400px;
    min-height: 220px;
    padding: 28px 24px 24px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(120, 64, 135, 0.95), rgba(90, 40, 110, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    text-align: center;
    transition: transform 0.35s ease;
  }

  .comment-card::before,
  .comment-card::after {
    content: "“";
    position: absolute;
    top: 26px;
    font-size: 32px;
    color: #ff00c8;
  }

  .comment-card::before {
    left: 22px;
  }

  .comment-card::after {
    right: 22px;
    transform: scaleX(-1);
  }

  .comment-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #c9c9c9 45%, #6b6b6b 100%);
    margin: -52px auto 12px;
    border: 4px solid rgb(171 171 171);
    overflow: hidden;
  }
  .comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
  }

  .comment-stars {
    color: #ffc83d;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .comment-quote {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
  }

  .comment-name {
    color: #ff00c8;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 0.9rem;
  }

  .comment-role {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    margin-top: 6px;
  }

  .comment-swiper .swiper-slide-active {
    opacity: 1;
  }

  .comment-swiper .swiper-slide-active .comment-card {
    width: 450px;
    min-height: 250px;
    transform: translateY(-8px) scale(1.08);
  }

  .comment-pagination {
    position: relative;
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .comment-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
  }
  .comment-pagination{
    padding-top: 20px;
  }

  .comment-pagination .swiper-pagination-bullet-active {
    background: #ff00c8;
    box-shadow: 0 0 10px rgba(255, 0, 200, 0.6);
    transform: scale(1.2);
  }

  @media (max-width: 992px) {
    .comment-swiper {
      padding: 10px 0 40px;
    }

    .comment-card {
      width: min(320px, 88vw);
    }

    .comment-swiper .swiper-slide-active .comment-card {
      transform: translateY(0) scale(1.03);
    }
  }

  @media (max-width: 768px) {
    .comment-swiper {
      padding: 0 0 32px;
    }

    .comment-box-holder {
      padding-top: var(--header-block-end);
    }
  }

  .cta-section {
    padding: var(--section-padding-y) 0;
    position: relative;
  }

  .cta-card {
    position: relative;
    border-radius: 32px;
    padding: 5px 61px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(15, 10, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  }

  .cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../assets/background/photos/cta-bg.png) no-repeat center center;
    background-size: cover;
    opacity: 0.9;
    z-index: 0;
  }

  .cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
   
    z-index: 0;
  }

  .cta-left,
  .cta-right {
    position: relative;
    z-index: 1;
  }

  .cta-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: var(--header-title-gap);
  }



  .cta-right {
    flex: 0.9;
    position: relative;
    min-height: 300px;
    display: flex
;
    align-items: center;
    justify-content: center;
  }

  .cta-right-text {
    font-size: 10rem;
    font-weight: 400;
    color: #ff00c8;
    font-family: "oqi", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    opacity: 0.2;
  }

  .cta-right img, .cta-right-video {
    position: absolute;
    right: 100px;
    bottom: 50px;
    width: min(360px, 60vw);
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    background: transparent !important;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    z-index: 2;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .cta-right-video--screen-blend {
    mix-blend-mode: screen;
  }

  @media (max-width: 768px) {
    .cta-right-video {
      display: none !important;
    }

    .cta-right {
      min-height: 140px;
    }

    .cta-right-text {
      opacity: 0.28;
      font-size: 10rem;
      line-height: 0.95;
    }
  }

  @media (max-width: 992px) {
    .cta-card {
      padding: 36px 28px;
      flex-direction: column;
      text-align: center;
    }

    .cta-left {
      align-items: center;
    }

    .cta-left p {
      max-width: 520px;
    }

    .cta-right {
      width: 100%;
      min-height: 200px;
      justify-content: center;
      isolation: isolate;
    }

    .cta-right img, .cta-right-video {
      left: 50%;
      right: auto;
      transform: translate3d(-50%, 0, 0);
    }

    .cta-right-text {
      position: relative;
      left: auto;
      transform: none;
    }
  }

  @media (max-width: 600px) {
    .cta-card {
      padding: 28px 20px;
    }

    .cta-right img, .cta-right-video {
      width: min(300px, 80vw);
      bottom: 24px;
    }

    .cta-right {
      min-height: 120px;
    }
  }

  .resources-section {
    padding: var(--section-padding-y) 0;
    position: relative;
  }

  .resources-header {
    text-align: center;
  }

  .resources-section__foot {
    justify-content: center;
    margin-top: 2rem;
  }

  .resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 24px;
  }

  .resource-card {
    background: #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    padding: 15px;
  }

  a.resource-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  a.resource-card:focus-visible {
    outline: 2px solid #ff00b8;
    outline-offset: 4px;
  }

  .resource-card:hover {
    border-color: rgba(255, 0, 200, 0.3);
  }

  .resource-card.is-feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .resource-card:not(.is-feature) {
    grid-column: span 2;
    grid-row: span 1;
    flex-direction: row;
  }

  .resource-media {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .resource-card.is-feature .resource-media {
    flex: 1;
    min-height: 250px;
  }

  .resource-card:not(.is-feature) .resource-media {
    flex: 0 0 340px;
    width: 340px;
    min-width: 340px;
    max-width: 340px;
    align-self: center;
    aspect-ratio: 4 / 3;
    padding: 8px;
    box-sizing: border-box;
  }

  .resource-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    border-radius: 20px;
  }

  .resource-card:not(.is-feature) .resource-media img {
    object-fit: cover;
    border-radius: 16px;
  }

  .resource-body {
    padding: 24px;
    background: linear-gradient(135deg, rgba(80, 20, 90, 0.95), rgba(40, 10, 60, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-radius: 20px;
  }

  .resource-card.is-feature .resource-body {
    padding: 39px 25px;
    transform: translateY(-40px);
  }

  .resource-card:not(.is-feature) .resource-body {
    flex: 1;
    padding: 20px 24px;
  }

  .resource-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    font-weight: 500;
  }

  .resource-meta span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 14px;
    border-radius: 50px;
    color: #fff;
    white-space: nowrap;
  }

  .resource-body h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "gri", sans-serif;
  }

  .resource-body p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: auto;
  }

  @media (max-width: 992px) {
    .resources-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
    }

    .resource-card.is-feature,
    .resource-card:not(.is-feature) {
      grid-column: span 1;
      grid-row: auto;
    }

    .resource-card:not(.is-feature) {
      flex-direction: column;
    }

    .resource-card:not(.is-feature) .resource-media {
      flex: 0 0 auto;
      width: 100%;
      min-width: 0;
      max-width: none;
      aspect-ratio: auto;
      height: 280px;
    }

    .resource-card:not(.is-feature) .resource-media img {
      object-fit: cover;
    }
  }

  /* ===== FAQ SECTION ===== */
  .faq-section {
    padding: var(--section-padding-y) 0;
    position: relative;
  }

  .faq-header {
    text-align: center;
  }


  .faq-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .faq-item {
    width: 100%;
  }

  .faq-question {
    width: 100%;
    background: linear-gradient(90deg, #ff00c8 0%, #7b4dff 100%);
    border: none;
    border-radius: 999px;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .faq-question:hover {
    box-shadow: 0 10px 20px rgba(255, 0, 200, 0.2);
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: "";
    position: absolute;
    background: #ff00c8;
    border-radius: 2px;
  }

  .faq-icon::before {
    width: 12px;
    height: 2px;
  }

  .faq-icon::after {
    width: 2px;
    height: 12px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .faq-item.is-active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -24px;
    position: relative;
    z-index: 1;
  }

  .faq-item.is-active .faq-answer {
    max-height: 400px;
  }

  .faq-answer-inner {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 44px 32px 24px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1.05rem;
  }

  @media (max-width: 768px) {
    .faq-question {
      padding: 14px 24px;
      font-size: 1rem;
      gap: 15px;
    }

    .faq-icon {
      width: 22px;
      height: 22px;
    }

    .faq-answer-inner {
      padding: 36px 24px 20px;
      font-size: 0.95rem;
    }
  }

  @media (max-width: 768px) {
    .faq-list {
      gap: 36px;
    }
  }

  /* ===== FOOTER SECTION ===== */
  .main-footer {
    padding: var(--section-padding-y) 0 clamp(2rem, 5vw, 5rem);
    position: relative;
    text-align: center;
  }

  .footer-wave {
    position: absolute;
    width: 420px;
    pointer-events: none;
    z-index: 1;
  }

  

  .footer-wave-right {
    top: -50px;
    right: 0px;
  }

  .footer-wave img {
    width: 100%;
    height: auto;
  }

  .footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .footer-logo {
    width: 180px;
  }

  .footer-logo img {
    width: 100%;
    height: auto;
  }

  .footer-description {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 10px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }


  .social-icon:hover {
    transform: translateY(-5px) scale(1.1);
  }

  .social-icon img {
    width: 100%;
    height: auto;
  }

  .footer-divider-glow {
    width: 80%;
    max-width: 800px;
    height: 2px;
    background: radial-gradient(circle, rgba(255, 0, 200, 0.6) 0%, transparent 70%);
    margin: 20px 0;
    filter: blur(2px);
  }

  .footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
  }

  .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #ff00c8;
  }

  .dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
  }

  /* ===== STARFIELD (per-section; not full main) ===== */
  .starfield-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
  }

  /* Feather edges so stars don’t pop at boundaries (mask = soft vignette, not blur filter) */
  .starfield-container--fill,
  .starfield-container--patch {
    -webkit-mask-image: radial-gradient(
      ellipse 100% 92% at 50% 48%,
      #000 38%,
      #000 58%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 100% 92% at 50% 48%,
      #000 38%,
      #000 58%,
      transparent 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    mask-mode: alpha;
  }

  /* Fills parent <section> (hero) */
  .starfield-container--fill {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  /* Do not set position/z-index on all .hero children — it breaks layouts.
     Starfield is first in DOM; later siblings paint above it naturally. */

  /* About: 260×260 patch, bottom-left — tighter vignette than hero */
  .starfield-container--patch {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 260px;
    height: 260px;
    max-width: min(260px, calc(100vw - 32px));
    max-height: min(260px, calc(100vw - 32px));
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(
      ellipse 90% 90% at 50% 50%,
      #000 28%,
      #000 55%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 90% 90% at 50% 50%,
      #000 28%,
      #000 55%,
      transparent 100%
    );
  }
  .starfield-container--patch2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 260px;
    height: 260px;
    max-width: min(260px, calc(100vw - 32px));
    max-height: min(260px, calc(100vw - 32px));
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(
      ellipse 90% 90% at 50% 50%,
      #000 28%,
      #000 55%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 90% 90% at 50% 50%,
      #000 28%,
      #000 55%,
      transparent 100%
    );
  }

  /* .about-us: starfield patch comes before .overlay in DOM — no extra overlay rules needed */

  /* ===== BACKGROUND ANIMATION HELPERS ===== */
  #app {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  #canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .faq-section-content {
    position: relative;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .main-footer {
      padding-top: 8rem;
      padding-bottom: 3rem;
    }
    .footer-wave {
      width: 190px;
      bottom: -64px;
    }
    .footer-wave-right{
      top: -64px;
      right: 0px;
    }
    .footer-description {
      font-size: 1rem;
      padding: 0 20px;
    }
    .footer-divider-glow {
      width: 90%;
    }
  }
  .flex-1-3{
    flex: 1.3;
  }

/* ===== FORM VALIDATION & STATUS ===== */
.input-group {
    position: relative;
    width: 100%;
}

.error-msg {
  color: #ff4d4d;
  font-size: 0.75rem;
  position: absolute;
  top: 0;
  left: 15px;
  height: 18px;
  transform: translateY(-100%);
}

.form-status {
    margin-top: 15px;
    font-size: 0.95rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.form-status.success {
    color: #4dff88;
    opacity: 1;
}

.form-status.error {
    color: #ff4d4d;
    opacity: 1;
}

.contact-form .input-group input:not([type="checkbox"]),
.contact-form .input-group select {
    margin-bottom: 20px; /* Space for error message */
}

/* ===== AUDIO POPUP ===== */
.audio-popup {
    position: sticky;
    top: 42px;
    left: 50%;
    transform: translateX(-50%) translateY(100vh); /* Start off-screen at bottom */
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), 
                opacity 0.8s ease;
    transition-delay: 2s; /* 2 second delay as requested */
    width: fit-content;
    margin: 0 auto;
    pointer-events: none;
}

.audio-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* Slide to top: 42px (via sticky) */
    pointer-events: auto;
}

.audio-popup.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-100px);
    transition-delay: 0s; /* No delay when hiding */
    pointer-events: none;
}

.glossy-button {
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    cursor: pointer;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
}

.audio-popup.liquidGlass-wrapper {
    border-radius: 30px;
    overflow: hidden;
    isolation: isolate;
}

.audio-popup .liquidGlass-effect,
.audio-popup .liquidGlass-tint,
.audio-popup .liquidGlass-shine {
    border-radius: 30px;
}

.audio-popup .liquidGlass-effect {
    background: transparent;
    opacity: 1;
}

.audio-popup .liquidGlass-tint {
    background: rgba(255, 255, 255, 0.1);
}

.audio-popup .liquidGlass-shine {
    box-shadow:
        inset 2px 2px 6px rgba(255, 255, 255, 0.35),
        inset -1px -1px 4px rgba(0, 0, 0, 0.28),
        0 14px 40px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(255, 0, 170, 0.06);
}

.audio-popup-content {
    border-radius: 30px;
}

.audio-popup-text {
    display: flex;
    flex-direction: column;
    color: white;
    font-family: "ibr", sans-serif;
}

.audio-popup-text .main-text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.1;
}

.audio-popup-text .sub-text {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

.audio-popup-play {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(255, 0, 200, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-popup-play .liquidGlass-effect,
.audio-popup-play .liquidGlass-tint,
.audio-popup-play .liquidGlass-shine {
    border-radius: 50%;
}

.audio-popup-play .liquidGlass-effect {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    filter: url(#glass-distortion);
    opacity: 0.95;
    background: transparent;
}

.audio-popup-play .liquidGlass-tint {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.34) 0%,
        rgba(255, 0, 200, 0.18) 48%,
        rgba(123, 77, 255, 0.22) 100%
    );
}

.audio-popup-play .liquidGlass-shine {
    box-shadow:
        inset 2px 2px 5px rgba(255, 255, 255, 0.5),
        inset -1px -2px 4px rgba(0, 0, 0, 0.22);
}

.audio-popup-play .liquidGlass-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.audio-popup-play svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.audio-popup-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    background: black;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 5px;
}

.audio-popup-close:hover {
    transform: scale(1.1);
    background: #ff00c8;
}

.glossy-button:hover .audio-popup-play {
    transform: scale(1.08);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.4),
        0 0 24px rgba(255, 0, 200, 0.32);
}

@media (max-width: 600px) {
    .audio-popup {
        right: 20px;
        bottom: 20px;
    }
    .audio-popup-text .main-text {
        font-size: 1rem;
    }
}


/* Preloader */

/* Site Preloader */

html.preloader-skip #preloader {
  display: none !important;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #02050A;
  z-index: 999;
}
  
  
.loading {
    left: 50%;
    top: 50%;
    font-size: 100px;
    font-family: var(--rr-ff-heading);
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    overflow: hidden;
    transform: translate(-50%, -60%);
}
  
    
  .loading:before {
    color: #333;
    content: attr(data-loading-text);
  }
    
  .loading:after {
    top: 0;
    left: 0;
    width: 0;
    opacity: 1;
    color: var(--rr-color-common-white);
    overflow: hidden;
    position: absolute;
    content: attr(data-loading-text);
    animation: loading 6s infinite;
  }

    
  @keyframes loading {
    0% { 
      width: 0; 
    }
    100% {
      width: 100%; 
    }
  }

  @media (max-width: 768px) {
    #preloader .loading {
      font-size: 56px;
    }
  }

  @media (max-width: 480px) {
    #preloader .loading {
      font-size: 42px;
    }
  }