:root {
  --primary: #ef2d19;
  --secondary: #003e5e;
  --accent: #F5B400;
  --dark: #0f172a;
  --bg: #f8fafc;
  --ink: #1e293b;
}
/* ================= CUSTOM RED SCROLLBAR (NO BUTTONS) ================= */
/* Enable smooth scrolling baseline */


.w-full{
  width: 100%;
}
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

::-webkit-scrollbar-track {
  background: #003e5e;
}

::-webkit-scrollbar-thumb {
  background: #F5B400;
  border-radius: 9999px;
  border: 2px solid #0f172a;
}

::-webkit-scrollbar-thumb:hover {
  background: #F5B400;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #F5B400 #0f172a;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.font-heading {
  font-family: "Manrope", sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.facet-divider {
  position: relative;
  height: 120px;
  width: 100%;
  overflow: hidden;
}
.facet-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.glass-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
/* .glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(245, 180, 0, 0.35) 0%,
    rgba(13, 122, 70, 0) 22%
  );
  clip-path: polygon(0 0, 32% 0, 14% 100%, 0 100%);
  pointer-events: none;
} */
.glass-panel-light {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.prism-edge {
  position: relative;
}
.prism-edge::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #f5b400 0%,
    #28a745 35%,
    #0d7a46 70%,
    transparent 100%
  );
  opacity: 0.85;
}

.refract-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;
  background:
    linear-gradient(
      115deg,
      transparent 42%,
      rgba(245, 180, 0, 0.35) 46%,
      transparent 50%
    ),
    linear-gradient(
      115deg,
      transparent 58%,
      rgba(40, 167, 69, 0.3) 62%,
      transparent 66%
    );
  transition: transform 0.4s ease-out;
}

.grid-texture {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.grid-texture-dark {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* .particle {
  position: absolute;
  border-radius: 9999px;
  background: rgba(245, 180, 0, 0.55);
  filter: blur(0.5px);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) translateX(20px);
    opacity: 0;
  }
} */

.magnetic-btn {
  transition:
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s ease;
}

.split-line {
  overflow: hidden;
}
.split-line span {
  display: inline-block;
  will-change: transform;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.counter-block {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
}

.process-line {
  background: linear-gradient(90deg, #0d7a46, #28a745, #f5b400);
}

.card-hover-zoom {
  overflow: hidden;
}
.card-hover-zoom img {
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card-hover-zoom:hover img {
  transform: scale(1.08);
}

.clip-diagonal-r {
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.clip-diagonal-l {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.clip-hero-card {
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

::selection {
  background: var(--accent);
  color: var(--dark);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.loader-fixed {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Capsule header: floating pill at top, morphs to full-width bar on scroll ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0;
}
#header-inner {
  margin: 1.25rem auto 0;
  max-width: 1240px;
  width: 100%;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.18);
  transition:
    margin 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#header-inner .header-row {
  height: 4.5rem;
  padding: 0 1.25rem 0 1.75rem;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#header-inner.is-scrolled {
  margin-top: 0;
  max-width: 100%;
  border-radius: 0;
  background: white;
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);

  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

#header-inner.is-scrolled .header-row {
  height: 5rem;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  #header-inner .header-row {
    padding-left: 2.25rem;
    padding-right: 1.75rem;
  }
  #header-inner.is-scrolled .header-row {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  
}

@media (min-width:100px) and (max-width:721px) {
  #header-inner{
    background: #003e5e ;
    border-radius: 0px;
    margin: 0px;
  }
  #about-heading {
    line-height: 40px !important;
}
}
.outlined-text {
  font-family: "Bungee Outline", sans-serif;
}

/* Key Feature Section */
.grid-texture {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.stats-bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}

.stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(6, 12, 24, 0.719) 0%,
      rgba(8, 16, 30, 0.651) 40%,
      rgba(6, 12, 24, 0.719) 100%
    ),
    linear-gradient(
      100deg,
      rgba(6, 14, 28, 0.671) 0%,
      rgba(10, 22, 38, 0.55) 55%,
      rgba(6, 14, 28, 0.644) 100%
    );
}


.stats-overlay-key {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(6, 12, 24, 0.45) 0%,
      rgba(8, 16, 30, 0.38) 40%,
      rgba(6, 12, 24, 0.45) 100%
    ),
    linear-gradient(
      100deg,
      rgba(6, 14, 28, 0.42) 0%,
      rgba(10, 22, 38, 0.32) 55%,
      rgba(6, 14, 28, 0.40) 100%
    );
}


.glow {
  will-change: transform;
}

.stat-highlight {
  background: linear-gradient(
    135deg,
    rgba(239, 45, 25, 0.7) 0%,
    rgba(194, 31, 16, 0.7) 100%
  );
  box-shadow: 0 24px 50px -20px rgba(239, 45, 25, 0.45);
}

/* ---------- Text Gap reveal ---------- *
       Each word starts pushed apart with an oversized right-margin
       "gap" and 0 opacity. On scroll, the gap collapses to its normal
       size while the word fades/settles in, staggered left → right. */
.gap-word {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity, margin-right;
}

/* Why Choose */
/* ---------- Text Gap reveal ---------- *
       Each word starts pushed apart (extra right-margin "gap") and
       faded out, then the gaps close and words fade in, staggered
       left to right. Pure CSS + GSAP, no paid SplitText plugin needed. */
.gap-word {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity, margin-right;
}

.card-hover-zoom img {
  transition: transform 0.8s ease;
}

.card-hover-zoom:hover img {
  transform: scale(1.06);
}
#about-heading{
  line-height: 60px;
}


.animate-404 {
  animation: little404Move 6s ease-in-out infinite;
}

@keyframes little404Move {

  /* Stay still */
  0%,
  70% {
    transform: translate3d(0, 0, 0);
  }

  /* Small movement */
  75% {
    transform: translate3d(4px, -5px, 0);
  }

  80% {
    transform: translate3d(-4px, 3px, 0);
  }

  85% {
    transform: translate3d(2px, -2px, 0);
  }

  /* Return and stay */
  90%,
  100% {
    transform: translate3d(0, 0, 0);
  }

}
.glass-panel {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.16) 0%,
    rgba(255,255,255,0.06) 60%,
    rgba(255,255,255,0.10) 100%
  );
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    inset 0 1px 1px rgba(255,255,255,0.5),
    inset 0 -1px 1px rgba(255,255,255,0.05);
}

/* bright thin line along the top edge, like light hitting a glass rim */
.glass-edge {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
}

/* soft diagonal streak of reflected light, the classic "glass" tell */
.glass-sheen {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 45%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0.15) 55%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(8deg);
  pointer-events: none;
}

.punchline-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  border-top: 1.5px solid var(--accent, #34d399);
  border-right: 1.5px solid var(--accent, #34d399);
  border-top-right-radius: 12px;
  pointer-events: none;
}

.punchline-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  border-bottom: 1.5px solid var(--accent, #34d399);
  border-left: 1.5px solid var(--accent, #34d399);
  border-bottom-left-radius: 12px;
  pointer-events: none;
}

.clip-hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }


  .media-card-bg{
    background-image: url(../images/background-image.jpg);
    background-size: cover;
  }

  /* Hero Slider Text */
  .hero-line {
  animation: heroFade 9s infinite;
}
.hero-line:nth-child(1) { animation-delay: 0s; }
.hero-line:nth-child(2) { animation-delay: 3s; }
.hero-line:nth-child(3) { animation-delay: 6s; }
.hero-heading .hero-title{
  line-height: 60px !important;
}
@keyframes heroFade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  28%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}