.section-gradient-bg {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at top left,
            rgba(0, 123, 255, .08),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(99, 102, 241, .08),
            transparent 35%
        ),
        #ffffff;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(13,110,253,.08);
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.05;
    color: #0f172a;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #64748b;
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-visual {
    position: relative;
    text-align: center;
}

.dashboard-image {
    border-radius: 24px;
    box-shadow:
        0 30px 60px rgba(0,0,0,.10);
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    z-index: 3;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 20px;
    padding: 18px 25px;
    box-shadow:
        0 20px 40px rgba(0,0,0,.08);
}

.floating-card h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #0f172a;
}

.floating-card span {
    font-size: 14px;
    color: #64748b;
}

.card-1 {
    top: 10%;
    left: -40px;
}

.card-2 {
    bottom: 25%;
    left: -60px;
}

.card-3 {
    top: 20%;
    right: -40px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(13,110,253,.20);
    top: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(99,102,241,.20);
    right: -80px;
    top: 200px;
    animation: float 12s ease-in-out infinite;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(14,165,233,.15);
    bottom: -80px;
    left: 40%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media(max-width:991px){

    .hero-section{
        padding:120px 0;
        min-height:auto;
    }

    .hero-title{
        font-size:3rem;
    }

    .hero-visual{
        margin-top:60px;
    }

    .floating-card{
        display:none;
    }
}

@media(max-width:576px){

    .hero-title{
        font-size:2.4rem;
    }

    .hero-description{
        font-size:1rem;
    }
}

.trust-section {
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
    background: transparent;
}

.btn-primary:hover {
    background-color: #6fad46;
    border-color: #6fad46;
}

.trust-wrapper {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow:
        0 25px 60px rgba(15,23,42,.08);
}

.trust-item {
    text-align: center;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(100,116,139,.15);
}

.trust-item h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.trust-item p {
    margin: 0;
    color: #64748b;
    font-size: .95rem;
    font-weight: 500;
}

@media(max-width:991px){

    .trust-section{
        margin-top:0;
        padding-top:60px;
    }

    .trust-wrapper{
        padding:40px 20px;
    }

    .trust-item:not(:last-child)::after{
        display:none;
    }

    .trust-item h2{
        font-size:2.2rem;
    }
}

.trust-item {
    transition: .3s;
}

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

.trust-item:hover h2 {
    color: #6fad46;
}

.journey-section{
    position:relative;
    padding: 70px 0;
}

.section-header{
    max-width:700px;
    margin:0 auto 20px;
    width: 100%;
}

.section-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(13,110,253,.08);
    color:#0d6efd;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.section-title{
    font-size:1.8rem;
    font-weight:800;
    margin:20px 0;
    color:#0f172a;
}

.section-description{
    color:#64748b;
    font-size:1rem;
}

.journey-timeline{
    position:relative;
    max-width:1000px;
    margin:auto;
}

.journey-timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:2px;
    height:100%;
    background:
        linear-gradient(
            to bottom,
            rgba(13,110,253,.2),
            rgba(13,110,253,.7),
            rgba(13,110,253,.2)
        );
}

.timeline-item{
    width:50%;
    position:relative;
    padding:0 50px;
    margin-bottom:60px;
}

.timeline-item.left{
    left:0;
}

.timeline-item.right{
    left:50%;
}

.timeline-card{
    background:#fff;
    padding:30px;
    border-radius:24px;
    border:1px solid #eef2f7;
    box-shadow:
        0 15px 40px rgba(15,23,42,.05);
    transition:.35s;
}

.timeline-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 30px 60px rgba(15,23,42,.10);
}

.year{
    display:inline-block;
    margin-bottom:15px;
    font-weight:700;
    color:#0d6efd;
}

.timeline-card h4{
    font-size:1.25rem;
    font-weight:700;
    margin-bottom:12px;
    color:#0f172a;
}

.timeline-card p{
    margin:0;
    color:#64748b;
}

.timeline-item::before{
    content:'';
    position:absolute;
    top:30px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#0d6efd;
    border:4px solid white;
    box-shadow:0 0 0 6px rgba(13,110,253,.15);
}

.timeline-item.left::before{
    right:-9px;
}

.timeline-item.right::before{
    left:-9px;
}

.services-section{
    padding:70px 0;
    position:relative;
}

.services-list{
    margin-top:70px;
}

.service-item{
    display:flex;
    align-items:center;
    gap:40px;

    padding:40px 0;

    border-bottom:1px solid rgba(15,23,42,.08);

    transition:.35s;
    cursor:pointer;
}

.service-item:hover{
    transform:translateX(15px);
}

.service-number{

    font-size:4rem;
    font-weight:800;

    color:rgba(13,110,253,.15);

    min-width:120px;

    transition:.35s;
}

.service-item:hover .service-number{

    color:#0d6efd;
}

.service-content{
    flex:1;
}

.service-content h3{

    font-size:1.75rem;

    font-weight:700;

    margin-bottom:12px;

    color:#0f172a;
}

.service-content p{
    margin:0;
    color:#64748b;
    max-width:650px;
}

.service-arrow{
    font-size:2rem;
    color:#0d6efd;
    opacity:.3;
    transition:.35s;
}

.service-item:hover .service-arrow{
    opacity:1;
    transform:translateX(10px);
}

.why-us-section{
    padding:100px 0;
}

.section-title{
    font-size:2rem;
    font-weight:700;
    color:#0f172a;
    margin:15px 0;
}

.section-description{
    font-size:.95rem;
    color:#64748b;
}

.feature-card{
    position:relative;

    height:100%;

    padding:35px 25px;

    background:rgba(255,255,255,.7);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:20px;

    transition:.35s;

    overflow:hidden;
}

.feature-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #0d6efd,
        #6366f1
    );

    transform:scaleX(0);

    transition:.35s;
}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 20px 50px rgba(15,23,42,.08);
}

.feature-card:hover::before{

    transform:scaleX(1);
}

.feature-icon{

    width:60px;
    height:60px;

    border-radius:15px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(13,110,253,.08);

    margin-bottom:20px;
}

.feature-icon i{

    font-size:1.5rem;

    color:#0d6efd;
}

.feature-card h4{

    font-size:1.1rem;

    font-weight:700;

    margin-bottom:12px;

    color:#0f172a;
}

.feature-card p{

    margin:0;

    font-size:.9rem;

    color:#64748b;

    line-height:1.8;
}

.feature-card:hover{

    box-shadow:
        0 20px 50px rgba(15,23,42,.08),
        0 0 30px rgba(13,110,253,.10);
}

.final-cta-section{
    padding-bottom: 60px;
}

.cta-wrapper{

    position:relative;

    overflow:hidden;

    padding:80px 50px;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e293b
        );

    box-shadow:
        0 30px 80px rgba(15,23,42,.15);
}

.cta-wrapper::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:
        rgba(13,110,253,.15);

    border-radius:50%;

    top:-120px;
    left:-120px;

    filter:blur(50px);
}

.cta-wrapper::after{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    background:
        rgba(99,102,241,.15);

    border-radius:50%;

    right:-100px;
    bottom:-100px;

    filter:blur(50px);
}

.cta-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:
        rgba(255,255,255,.08);

    color:#fff;

    font-size:.8rem;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;
}

.cta-title{

    color:#fff;

    font-size:2.3rem;

    font-weight:700;

    line-height:1.2;

    margin-bottom:20px;
}

.cta-description{

    color:
        rgba(255,255,255,.75);

    font-size:1rem;

    max-width:650px;

    margin:0 auto 35px;

    line-height:1.8;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;
}

.cta-buttons .btn{

    min-width:220px;

    border-radius:12px;

    padding:14px 24px;
}

.cta-buttons .btn-outline-light:hover{

    color:#0f172a;
}


/* ============================================================
   SyZure Hero — Premium Dark SaaS Style
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --sz-bg:          #09090b;
  --sz-surface:     #111113;
  --sz-border:      rgba(255,255,255,.08);

  /* Accent — electric indigo-to-cyan gradient */
  --sz-accent-a:    #6366f1;
  --sz-accent-b:    #06b6d4;
  --sz-accent-teal: #2dd4bf;

  --sz-text-primary:   #f4f4f5;
  --sz-text-secondary: rgba(244,244,245,.55);
  --sz-text-muted:     rgba(244,244,245,.35);

  /* Typography — editorial display pair */
  --sz-font-display: 'Sora', 'DM Sans', system-ui, sans-serif;
  --sz-font-body:    'DM Sans', system-ui, sans-serif;

  --sz-radius: 8px;
  --sz-hero-h: 100svh;
  --sz-hero-min: 680px;
}

/* ── Google Fonts import ────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');


/* ── Hero Wrapper ───────────────────────────────────────────── */
.sz-hero {
  position: relative;
  width: 100%;
  height: var(--sz-hero-h);
  min-height: var(--sz-hero-min);
  background: var(--sz-bg);
  overflow: hidden;
}

.sz-hero-swiper,
.sz-hero .swiper-wrapper,
.sz-hero .swiper-slide {
  height: 100%;
  width: 100%;
}


/* ── Slide Layers ───────────────────────────────────────────── */

/* Background photo — moved via JS parallax */
.sz-slide__bg {
  position: absolute;
  inset: -8% 0;          /* overshoot top/bottom for parallax travel */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform .05s linear;
}

/* Dark + gradient overlay */
.sz-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(9,9,11,.92)  0%,
      rgba(9,9,11,.72) 50%,
      rgba(9,9,11,.42) 100%
    ),
    linear-gradient(
      180deg,
      transparent 40%,
      rgba(9,9,11,.9) 100%
    );
  z-index: 1;
}

/* Teal-tinted overlay variant for slide 2 */
.sz-slide__overlay--teal {
  background:
    linear-gradient(
      105deg,
      rgba(6,14,20,.94)  0%,
      rgba(6,14,20,.74) 50%,
      rgba(6,14,20,.44) 100%
    ),
    linear-gradient(
      180deg,
      transparent 40%,
      rgba(6,14,20,.9) 100%
    );
}

/* Subtle noise grain — adds premium texture depth */
.sz-slide__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
  pointer-events: none;
}

/* Z-2 utility (Bootstrap doesn't ship this) */
.z-2 { z-index: 2; }


/* ── Eyebrow Label ──────────────────────────────────────────── */
.sz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sz-font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sz-text-muted);
  margin-bottom: 1.25rem;
  padding: .35rem .85rem;
  border: 1px solid var(--sz-border);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  width: fit-content;
}

.sz-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sz-accent-a), var(--sz-accent-b));
  flex-shrink: 0;
}


/* ── Main Headline ──────────────────────────────────────────── */
.sz-headline {
  font-family: var(--sz-font-display);
  font-size: clamp(2.6rem, 3.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--sz-text-primary);
  margin-bottom: 1.5rem;
}

/* Gradient accent line */
.sz-headline--accent {
  background: linear-gradient(90deg, var(--sz-accent-a) 0%, var(--sz-accent-b) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sz-headline--teal {
  background: linear-gradient(90deg, var(--sz-accent-b) 0%, var(--sz-accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ── Subheadline ────────────────────────────────────────────── */
.sz-sub {
  font-family: var(--sz-font-body);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--sz-text-secondary);
  max-width: 520px;
  margin-bottom: 2.25rem;
}

.sz-sub strong {
  color: var(--sz-text-primary);
  font-weight: 500;
}


/* ── CTA Buttons ────────────────────────────────────────────── */
.sz-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}

.sz-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sz-font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  border-radius: var(--sz-radius);
  padding: .7rem 1.4rem;
  transition: all .22s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  cursor: pointer;
}

/* Primary */
.sz-btn--primary {
  background: linear-gradient(135deg, var(--sz-accent-a), var(--sz-accent-b));
  color: #fff;
  border: none;
  box-shadow: 0 0 0 0 rgba(99,102,241,.4);
}

.sz-btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(99,102,241,.35);
}

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

.sz-btn--primary svg {
  transition: transform .2s;
}

.sz-btn--primary:hover svg {
  transform: translateX(3px);
}

/* Ghost */
.sz-btn--ghost {
  background: rgba(255,255,255,.06);
  color: var(--sz-text-primary);
  border: 1px solid var(--sz-border);
  backdrop-filter: blur(8px);
}

.sz-btn--ghost:hover {
  color: #fff;
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-1px);
}


/* ── Trust Strip ────────────────────────────────────────────── */
.sz-trust {
  font-family: var(--sz-font-body);
  font-size: .75rem;
  font-weight: 400;
  color: var(--sz-text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: .01em;
  margin-bottom: 0;
}

.sz-trust__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sz-accent-a), var(--sz-accent-b));
  flex-shrink: 0;
  animation: sz-pulse 2.5s ease-in-out infinite;
}

.sz-trust__dot--teal {
  background: linear-gradient(135deg, var(--sz-accent-b), var(--sz-accent-teal));
}

@keyframes sz-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,.5); }
  50%       { box-shadow: 0 0 0 5px rgba(99,102,241,.0); }
}


/* ── Swiper Navigation ──────────────────────────────────────── */
.sz-nav {
  position: absolute;
  bottom: 2.25rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.sz-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sz-border);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  color: var(--sz-text-secondary);
  cursor: pointer;
  transition: all .2s;
}

.sz-nav__btn:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: var(--sz-text-primary);
}

/* Pagination bullets */
.sz-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.25);
  opacity: 1;
  transition: all .3s;
  margin: 0 2px !important;
}

.sz-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, var(--sz-accent-a), var(--sz-accent-b));
  width: 36px;
}


/* ── Swiper fade transition tweak ───────────────────────────── */
.sz-hero-swiper .swiper-slide {
  opacity: 0 !important;
  transition: opacity .7s ease !important;
}

.sz-hero-swiper .swiper-slide-active {
  opacity: 1 !important;
}


/* ── Animate.css override — no layout shift ─────────────────── */
.sz-hero .animate__animated {
  animation-fill-mode: both;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  :root {
    --sz-hero-h: 100svh;
    --sz-hero-min: 580px;
  }

  .sz-headline {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .sz-nav {
    bottom: 1.5rem;
    right: 1rem;
  }

  .sz-cta-group {
    flex-direction: column;
  }

  .sz-btn {
    justify-content: center;
  }
}

@media (max-width: 479.98px) {
  .sz-trust {
    flex-wrap: wrap;
    row-gap: .25rem;
  }
}
/* ============================================================
   SyZure Stats Strip — Glassmorphism Trust Bar
   Inherits CSS variables from hero-section.css
   ============================================================ */

/*
   If this file is loaded standalone (without hero-section.css),
   uncomment the token block below:

:root {
  --sz-bg:           #09090b;
  --sz-accent-a:     #6366f1;
  --sz-accent-b:     #06b6d4;
  --sz-text-primary: #f4f4f5;
  --sz-text-secondary: rgba(244,244,245,.55);
  --sz-text-muted:   rgba(244,244,245,.35);
  --sz-border:       rgba(255,255,255,.08);
  --sz-font-display: 'Sora', system-ui, sans-serif;
  --sz-font-body:    'DM Sans', system-ui, sans-serif;
  --sz-radius:       8px;
}
*/

/* ── Section wrapper ─────────────────────────────────────────
   Negative margin pulls it up to overlap the hero's bottom edge.
   z-index: 10 keeps it visually above the hero photo.          */
.sz-stats-wrap {
  position: relative;
  z-index: 10;
  margin-top: -52px;   /* hero overlap */
  padding-bottom: 0;
}


/* ── Glass card ──────────────────────────────────────────────
   The card itself is the single visual element.
   No per-stat card nesting — one cohesive pill.               */
.sz-stats-card {
  position: relative;
  background: rgba(15, 15, 18, 0.72);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;

  /* Layered shadow: tight dark base + wide indigo glow */
  box-shadow:
    0 2px 4px  rgba(0, 0, 0, .45),
    0 8px 32px rgba(0, 0, 0, .35),
    0 0  80px  rgba(99, 102, 241, .06);
}


/* ── Top accent line — gradient hairline ─────────────────────*/
.sz-stats-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(99, 102, 241, .7) 30%,
    rgba(6, 182, 212, .7)  70%,
    transparent 100%
  );
  z-index: 2;
}


/* ── Individual stat cell ────────────────────────────────────*/
.sz-stat {
  position: relative;
  padding: 2rem 1.75rem;
}

/* Hover lift — subtle glass shimmer */
.sz-stat:hover .sz-stat__inner {
  transform: translateY(-2px);
}

.sz-stat__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}


/* ── Icon ────────────────────────────────────────────────────*/
.sz-stat__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(99, 102, 241, .1);
  border: 1px solid rgba(99, 102, 241, .18);
  color: rgba(99, 102, 241, .9);
  transition: background .25s, border-color .25s, color .25s;
}

.sz-stat__icon svg {
  width: 18px;
  height: 18px;
}

.sz-stat:hover .sz-stat__icon {
  background: var(--bs-yellow);
  border-color: var(--bs-yellow);
  color: #fff;
}


/* ── Body text ───────────────────────────────────────────────*/
.sz-stat__body {
  min-width: 0;
}

.sz-stat__number {
  font-family: var(--sz-font-display, 'Sora', system-ui);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--sz-text-primary, #f4f4f5);
  margin: 0 0 .3rem;
  display: flex;
  align-items: baseline;
  gap: .15rem;

  /* Gradient on the number itself */
  background: linear-gradient(110deg, #e0e7ff 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* The small unit label ("Yrs") beside big number */
.sz-stat__unit {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  opacity: .6;
}

/* 24/7 — no counter, fixed badge style */
.sz-stat__number--badge span {
  font-family: var(--sz-font-display, 'Sora', system-ui);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  background: linear-gradient(110deg, #e0e7ff 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sz-stat__label {
  font-family: var(--sz-font-body, 'DM Sans', system-ui);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sz-text-muted, rgba(244,244,245,.35));
  margin: 0;
}


/* ── Vertical separator between stats ───────────────────────*/
.sz-stat__sep {
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, .08) 40%,
    rgba(255, 255, 255, .08) 60%,
    transparent 100%
  );
}


/* ── Counter entrance animation ──────────────────────────────
   Each stat fades+rises once IntersectionObserver fires.     */
.sz-stat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

.sz-stat.sz-stat--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays injected via JS data attribute */
.sz-stat[data-delay="1"] { transition-delay: .05s; }
.sz-stat[data-delay="2"] { transition-delay: .15s; }
.sz-stat[data-delay="3"] { transition-delay: .25s; }
.sz-stat[data-delay="4"] { transition-delay: .35s; }


/* ── Responsive ──────────────────────────────────────────────*/
@media (max-width: 767.98px) {
  .sz-stats-wrap {
    margin-top: -36px;
  }

  .sz-stat {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }

  /* Remove side separators on mobile — bottom borders take over */
  .sz-stat__sep { display: none; }

  /* Last two cells: no bottom border */
  .sz-stat:nth-child(3),
  .sz-stat:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 479.98px) {
  .sz-stats-card {
    border-radius: 12px;
  }

  .sz-stat__inner {
    gap: .75rem;
  }

  .sz-stat__icon {
    width: 34px;
    height: 34px;
  }
}
.cs-section{
    padding:50px 0;
    background:#fff;
}

.cs-eyebrow{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#eef4ff;
    color:#2563eb;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.cs-heading{
    font-size:35px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
    line-height:1.15;
}

.cs-subtitle{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
}

.cs-card{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:20px;

    padding:32px;

    height:100%;

    background:#fff;

    border:1px solid #e5e7eb;
    border-radius:20px;

    transition:.35s ease;

    overflow:hidden;
}

.cs-card:hover{
    transform:translateY(-5px);

    border-color:#bfdbfe;

    box-shadow:
        0 20px 40px rgba(37,99,235,.08);
}

.cs-icon{
    width:58px;
    height:58px;

    min-width:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:#f8fafc;

    color:var(--bs-primary);

    font-size:24px;

    transition:.35s;
}

.cs-card:hover .cs-icon{
    background:var(--bs-yellow);
    color:#fff;
}

.cs-content{
    flex:1;
}

.cs-content h4{
    font-size:1.15rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.cs-content p{
    margin:0;
    color:#64748b;
    line-height:1.7;
}

.cs-arrow{
    color:#94a3b8;
    font-size:20px;

    transition:.3s;
}

.cs-card:hover .cs-arrow{
    color:#2563eb;
    transform:translate(4px,-4px);
}

[data-cs-reveal]{
    opacity:0;
    transform:translateY(30px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

[data-cs-reveal].active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:991px){

    .cs-section{
        padding:30px 0;
    }

    .cs-heading{
        font-size:2.2rem;
    }
}

@media(max-width:576px){

    .cs-heading{
        font-size:1.8rem;
    }

    .cs-card{
        padding:24px;
    }

    .cs-icon{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:20px;
    }
}
.wc-section{
    padding:50px 0;
    background:#fff;
}

.wc-eyebrow{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#eef4ff;
    color:#2563eb;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.wc-heading{
    font-size:35px;
    font-weight:800;
    color:#0f172a;
    line-height:1.15;
    margin-bottom:20px;
}

.wc-subtitle{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
}

.wc-card{
    position:relative;

    height:100%;

    padding:35px 28px;

    border-radius:22px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(226,232,240,.8);

    overflow:hidden;

    transition:.35s ease;
}

.wc-card:hover{

    transform:translateY(-8px);

    border-color:rgba(59,130,246,.25);

    box-shadow:
        0 20px 40px rgba(15,23,42,.06),
        0 0 30px rgba(37,99,235,.10);
}

.wc-top-line{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #06b6d4
        );
}

.wc-icon{
    width:62px;
    height:62px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            rgba(37,99,235,.08),
            rgba(6,182,212,.08)
        );

    color:#2563eb;

    font-size:26px;

    margin-bottom:25px;

    transition:.35s;
}

.wc-card:hover .wc-icon{

    transform:scale(1.08);

    background:
        linear-gradient(
            135deg,
            rgba(37,99,235,.12),
            rgba(6,182,212,.12)
        );
}

.wc-card h4{

    font-size:1.15rem;
    font-weight:700;

    color:#0f172a;

    margin-bottom:14px;
}

.wc-card p{

    margin:0;

    color:#64748b;

    line-height:1.8;

    font-size:.95rem;
}

/* Reveal */

[data-wc-reveal]{
    opacity:0;
    transform:translateY(30px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

[data-wc-reveal].active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:991px){

    .wc-section{
        padding:80px 0;
    }

    .wc-heading{
        font-size:2rem;
    }
}

@media(max-width:576px){

    .wc-heading{
        font-size:1.75rem;
    }

    .wc-card{
        padding:28px 24px;
    }
}

.portfolio-section{
    background:#fff;
}

.section-badge{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:#f4f7fb;
    color:#2563eb;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:35px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.section-subtitle{
    max-width:650px;
    margin:auto;
    color:#64748b;
}

.portfolio-filter button{
    border:none;
    background:#f8fafc;
    padding:10px 22px;
    border-radius:30px;
    margin:5px;
    font-weight:600;
    color:#475569;
    transition:.3s;
}

.portfolio-filter button.active,
.portfolio-filter button:hover{
    background:#2563eb;
    color:#fff;
}

.portfolio-card{
    background:#fff;
    border:1px solid #e9eef5;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 8px 30px rgba(15,23,42,.05);
}

.portfolio-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(37,99,235,.12);
}

.portfolio-image{
    position:relative;
    overflow:hidden;
}

.portfolio-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

.portfolio-overlay{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.75);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.portfolio-card:hover .portfolio-overlay{
    opacity:1;
}

.portfolio-btn{
    background:#fff;
    color:#0f172a;
    text-decoration:none;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
}

.portfolio-content{
    padding:24px;
}

.portfolio-category{
    color:#2563eb;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.portfolio-content h5{
    margin-top:10px;
    margin-bottom:12px;
    font-weight:700;
    color:#0f172a;
}

.portfolio-content p{
    color:#64748b;
    margin:0;
    line-height:1.7;
}

.reveal-item{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}

.reveal-item.show{
    opacity:1;
    transform:translateY(0);
}

.tech-stack-section{
    background:#fff;
    overflow:hidden;
}

.tech-marquee{
    position:relative;
    overflow:hidden;
    padding:10px 0;
}

.tech-track{
    display:flex;
    align-items:center;
    gap:70px;
    width:max-content;
    animation:techScroll 35s linear infinite;
}

.tech-logo{
    flex-shrink:0;
}

.tech-logo img{
    height:42px;
    width:auto;
    display:block;

    filter:grayscale(100%);
    opacity:.65;

    transition:all .35s ease;
}

.tech-logo:hover img{
    filter:grayscale(0%);
    opacity:1;
    transform:translateY(-3px);
}

@keyframes techScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

.tech-marquee:hover .tech-track{
    animation-play-state:paused;
}

.cta-section{
    background:#ffffff;
}

.cta-wrapper{
    position:relative;
    overflow:hidden;

    padding:90px 40px;

    border-radius:32px;

    background:linear-gradient(
        135deg,
        #0f172a 0%,
        #172554 50%,
        #1e3a8a 100%
    );

    box-shadow:
        0 30px 80px rgba(15,23,42,.18);

    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.cta-wrapper.show{
    opacity:1;
    transform:translateY(0);
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:auto;
}

.cta-badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    color:#cbd5e1;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

.cta-title{
    color:#fff;

    font-size:clamp(2.2rem,5vw,4rem);

    line-height:1.15;

    font-weight:700;

    margin-bottom:25px;
}

.cta-text{
    max-width:700px;
    margin:auto;

    color:rgba(255,255,255,.75);

    font-size:18px;
    line-height:1.8;

    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.cta-btn-primary{
    padding:14px 30px;

    border-radius:12px;

    background:#fff;
    color:#0f172a;

    font-weight:600;

    transition:.3s;
}

.cta-btn-primary:hover{
    transform:translateY(-3px);

    background:#ffffff;
    color:#0f172a;

    box-shadow:
        0 12px 30px rgba(255,255,255,.18);
}

.cta-btn-secondary{
    padding:14px 30px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.2);

    color:#fff;

    font-weight:600;

    backdrop-filter:blur(10px);

    background:rgba(255,255,255,.05);

    transition:.3s;
}

.cta-btn-secondary:hover{
    color:#fff;

    transform:translateY(-3px);

    background:rgba(255,255,255,.10);
}

.cta-orb{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
}

.orb-1{
    width:300px;
    height:300px;

    top:-100px;
    left:-80px;

    background:rgba(59,130,246,.35);

    animation:floatOrb 8s ease-in-out infinite;
}

.orb-2{
    width:250px;
    height:250px;

    bottom:-80px;
    right:-60px;

    background:rgba(99,102,241,.35);

    animation:floatOrb 10s ease-in-out infinite;
}

@keyframes floatOrb{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0);
    }

}

@media(max-width:768px){

    .cta-wrapper{
        padding:70px 25px;
    }

    .cta-title{
        font-size:2rem;
    }

    .cta-text{
        font-size:16px;
    }

}
.contact-hero-section{
    position:relative;
    overflow:hidden;

    padding:120px 0 90px;

}

.contact-hero-badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:#eff6ff;

    color:#2563eb;

    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;

    margin-bottom:20px;
}

.contact-hero-title{
    font-size:35px;

    font-weight:700;

    line-height:1.15;

    color:#0f172a;

    margin-bottom:20px;
}

.contact-hero-description{
    max-width:700px;

    margin:0 auto 25px;

    font-size:18px;
    line-height:1.8;

    color:#64748b;
}

.contact-breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    font-size:15px;
}

.contact-breadcrumb a{
    text-decoration:none;
    color:#2563eb;
    font-weight:500;
}

.contact-breadcrumb span{
    color:#94a3b8;
}

/* Background Orbs */

.contact-hero-section .orb-1{
    position:absolute;

    width:280px;
    height:280px;

    top:-100px;
    left:-80px;

    border-radius:50%;

    background:rgba(59,130,246,.12);

    filter:blur(80px);
}

.contact-hero-section .orb-2{
    position:absolute;

    width:250px;
    height:250px;

    right:-80px;
    top:20px;

    border-radius:50%;

    background:rgba(99,102,241,.10);

    filter:blur(90px);
}

@media(max-width:768px){

    .contact-hero-section{
        padding:100px 0 70px;
    }

    .contact-hero-title{
        font-size:2rem;
    }

    .contact-hero-description{
        font-size:16px;
    }

}
.office-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:20px;

    padding:25px;

    height:auto;

    transition:.35s;

    box-shadow:
        0 10px 30px rgba(15,23,42,.04);
}

.office-card:hover{

    transform:translateY(-5px);

    box-shadow:
        0 20px 50px rgba(15,23,42,.08);
}

.office-badge{

    display:inline-block;

    padding:6px 14px;

    border-radius:30px;

    background:rgba(13,110,253,.08);

    color:#0d6efd;

    font-size:.75rem;

    font-weight:600;

    margin-bottom:15px;
}

.product_link {
    text-decoration: none;
    color: #212529;
    border-radius: 10px;;
}
.product_icon {
    width: 50px;
}

.wc-story-section{

    position:relative;
}

.wc-story-section .container:first-child{

    padding-top:120px;
    padding-bottom:80px;
}

.wc-story-card{

    position:relative;

    height:100vh;

    overflow:hidden;
}

.wc-bg{

    position:absolute;

    inset:0;

    background-size:cover;
    background-position:center;

    transform:scale(1.15);

    transition:
        transform 1.5s ease;
}

.wc-story-card.active .wc-bg{

    transform:scale(1);
}

.wc-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.65)
        );
}

.wc-content{

    position:relative;

    z-index:5;

    height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:#fff;

    max-width:700px;

    margin:auto;
}

.wc-content span{

    font-size:14px;

    letter-spacing:4px;

    margin-bottom:20px;

    color:rgba(255,255,255,.8);
}

.wc-content h3{

    font-size:4rem;

    font-weight:800;

    margin-bottom:20px;
}

.wc-content p{

    font-size:1.1rem;

    line-height:1.9;

    color:rgba(255,255,255,.85);
}

.wc-content{

    opacity:0;

    transform:translateY(80px);

    transition:
        all .9s ease;
}

.wc-story-card.active .wc-content{

    opacity:1;

    transform:translateY(0);
}
