
@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Gravitas+One&family=Grenze+Gotisch:wght@100..900&family=Nata+Sans:wght@100..900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ── GLOBAL ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 1.1;
  color: #0c0c0c;
}


    body {
      font-family: "Inter", sans-serif;
  /* font-weight: 500; */
      background-color: #F3F3F3;
      color: #0c0c0c;
      overflow-x: hidden;
      line-height: 1.5;
    }

h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p { color: black; }

a { color: #a78bfa; }

/* ── SCROLL PADDING (offset for sticky header) ── */
[id] { scroll-margin-top: 80px; }

main{
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
}

 /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: smooth; }

    img, video { max-width: 100%; display: block; }



    h1 {
     font-size: clamp(2rem, 5vw, 3.5rem);
     font-weight: 700;
     line-height: 1.2;
     min-height: 1.2em; /* ya jo bhi expected height ho */
   }

    /* ── LOADER ── */
    #loader {
      position: fixed;
      inset: 0;
      background: #f8f8f8;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    #loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

    #loader-logo {
      width: 160px;
      animation: loaderPulse 1s ease-in-out infinite alternate;
    }
    @keyframes loaderPulse {
      from { opacity: 0.4; transform: scale(0.96); }
      to   { opacity: 1;   transform: scale(1);    }
    }

    /* ── HEADER — absolute so hero bg shows through ── */
#site-header {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 100;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    background: transparent;
}

    /* Sticky clone that appears on scroll */
    #site-header.sticky {
      position: fixed;
      /* background: rgba(20, 20, 24, 0.151); */
      border-radius: 20px;
    background: #FBFBFB;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.07);
      animation: slideDown 0.3s ease forwards;
    }
    @keyframes slideDown {
      from { transform: translateY(-100%); }
      to   { transform: translateY(0); }
    }

    .nav-inner {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    /* ── LOGO ── */
    #header-logo {
      height: 70px;
      width: auto;
      flex-shrink: 0;
      opacity: 1;
      transform: translateY(-8px);
      transition: opacity 0.45s ease 0.15s, transform 0.45s ease 0.15s;
    }
    #header-logo.visible { opacity: 1; transform: translateY(0); }

    /* ── DESKTOP NAV ── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      list-style: none;
    }
    .nav-links a {
      color: #0d0d0e;
      text-decoration: none;
      font-size: 14px;
      letter-spacing: 0.02em;
      position: relative;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1.5px;
      background: linear-gradient(90deg, #6366f1, #a78bfa);
      transition: width 0.25s ease;
      border-radius: 2px;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }

    /* CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.5rem 2.2rem !important;

  color: #111827 !important;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;

  border: none;
  border-radius: 999px;

  background: linear-gradient(
    180deg,
    #9affd9 0%,
    #82ffcd 45%,
    #63eeb5 100%
  );

  box-shadow:
    0 0 30px rgba(130, 255, 205, 0.40),
    0 8px 24px rgba(70, 210, 160, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.55);

  position: relative;
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.03)
  );

  pointer-events: none;
}

/* .nav-cta::after {
  content: "";
  position: absolute;
  top: 6%;
  left: 8%;
  width: 84%;
  height: 42%;

  border-radius: 999px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0)
  );

  pointer-events: none;
} */

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(45, 140, 255, 0.6),
    0 12px 30px rgba(0, 90, 255, 0.45),
    inset 0 1px 1px rgba(255,255,255,0.4);
}

    /* ── HAMBURGER ── */
    #menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      padding: 8px;
      background: #009688;
      border: 1px solid #63eeb5;
      border-radius: 8px;
      cursor: pointer;
      flex-shrink: 0;
    }
    #menu-btn span {
      display: block;
      height: 1.5px;
      background: #e2e8f0;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    }
    #menu-btn span:nth-child(3) { width: 65%; }
    #menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    #menu-btn.open span:nth-child(2) { opacity: 0; }
    #menu-btn.open span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

    /* ── MOBILE DRAWER ── */
    #mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: rgba(18, 18, 22, 0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 1rem 2rem 2rem;
      flex-direction: column;
      z-index: 99;
    }
    #mobile-menu.open { display: flex; }

    #mobile-menu a {
      color: #cbd5e1;
      text-decoration: none;
      font-size: 1rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s, padding-left 0.2s;
    }
    #mobile-menu a:last-child { border-bottom: none; }
    #mobile-menu a:hover { color: #fff; padding-left: 8px; }
    #mobile-menu .nav-cta {
      margin-top: 1rem;
      text-align: center;
      padding: 0.8rem 1.25rem !important;
      border-bottom: none !important;
      border-radius: 6px;
    }

    /* ── SKIP LINK ── */
    /* .skip-link {
      position: absolute;
      top: -100%; left: 1rem;
      background: #6366f1; color: #fff;
      padding: 0.5rem 1rem; border-radius: 4px;
      z-index: 9999; text-decoration: none; font-size: 0.875rem;
    }
    .skip-link:focus { top: 1rem; } */

    
/* ============================================================
   MEGA MENU — append to your existing nav CSS (do not replace it)
   Relies on #site-header already being position:absolute/fixed,
   so no extra wrapping container is introduced anywhere.
   ============================================================ */

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  background: none;
  border: none;
  color: #141414;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.mega-trigger:hover,
.mega-trigger[aria-expanded="true"] { color: #fff; }

.mega-trigger .chevron {
  color: #64748b;
  transition: transform 0.25s ease, color 0.25s ease;
}
.mega-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  color: #a78bfa;
}

/* Panel is positioned relative to #site-header (nearest positioned
   ancestor) so it always spans the same width as the header,
   whether the header is in its absolute (top) or sticky (fixed) state. */
.mega-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
}

.has-mega.open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  padding: 2.25rem 2rem;
  background: rgba(15, 16, 24, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.mega-links { display: flex; gap: 3rem; flex: 1; }
.mega-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 200px;
}

.mega-links a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14.5px;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
}
.mega-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-left: 0.9rem;
}

.mega-feature {
  width: 260px;
  flex-shrink: 0;
  padding-left: 2.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.mega-feature img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.mega-feature h3 {
  color: #f1f5f9;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 0.4rem;
  line-height: 1.35;
}
.mega-feature p {
  color: black;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 0.9rem;
}
.mega-feature .mega-cta {
  display: inline-block;
  color: #7dabff;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
}
.mega-feature .mega-cta:hover { color: #a78bfa; }

@media (max-width: 1100px) {
  .mega-feature { display: none; }
}

/* Hide desktop mega nav, show hamburger — merge with whatever
   breakpoint you already use to switch to the mobile drawer. */
@media (max-width: 900px) {
  .main-nav { display: none; }
  #menu-btn { display: flex; }
}
@media (min-width: 901px) {
  #mobile-menu { display: none !important; }
}

/* ============================================================
   MOBILE DRAWER — overflow fix + icon-based redesign
   Overrides the base #mobile-menu rules from your main CSS
   (keep this block after that file so it takes precedence).
   ============================================================ */
#mobile-menu {
  top: 82px;            /* clears the 72px header + 10px gap */
  bottom: 0;             /* constrains height so it can scroll */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 1.25rem 2.5rem;
  gap: 0.35rem;
}

/* Top-level rows (About, each category summary, Contact) */
.mobile-link,
.mobile-accordion summary {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.6rem;
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: none !important;
  cursor: pointer;
}
.mobile-link:hover,
.mobile-accordion summary:hover { background: rgba(255,255,255,0.04); }

.mobile-link i,
.mobile-accordion summary > i:first-child {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
background: rgb(0 0 0);
    color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
}

.mobile-accordion summary span { flex: 1; }
.mobile-accordion summary::-webkit-details-marker { display: none; }
.mobile-accordion summary::after { content: none; } /* replaced by fa-chevron below */

.mobile-chevron {
  font-size: 12px !important;
  color: #64748b !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  transition: transform 0.25s ease;
}
.mobile-accordion[open] .mobile-chevron { transform: rotate(180deg); color: #a78bfa !important; }

/* Submenu block — visually nested and separated from the parent row */
.mobile-submenu {
  margin: 0.15rem 0 0.4rem 1.1rem;
  padding-left: 0.6rem;
  border-left: 2px solid rgba(167, 139, 250, 0.3);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 0 8px 8px 0;
}
.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.6rem;
  font-size: 0.88rem;
  color: black;
  text-decoration: none;
  border-bottom: none;
  transition: color 0.2s, background 0.2s;
}
.mobile-submenu a i { font-size: 9px; color: #64748b; }
.mobile-submenu a:hover { color: #fff; background: rgba(255,255,255,0.04); border-radius: 6px; }
.mobile-submenu a:last-child { padding-bottom: 0.6rem; }

.mobile-accordion { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

#mobile-menu .nav-cta {
  margin-top: 0.75rem;
  justify-content: center;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mega-panel,
  .mega-trigger .chevron,
  .mobile-chevron {
    transition: none !important;
  }
}


/* breadcrum */


/* ══════════════════════════════════
   REUSABLE PAGE HERO
   ══════════════════════════════════ */
#services-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 1rem;
}

#services-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.page-breadcrumb { margin-bottom: 1rem; }
.page-breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.page-breadcrumb li   { font-size: 0.8rem; color: #64748b; }
.page-breadcrumb a    { color: black; text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: #c4b5fd; }
.page-breadcrumb span[aria-current] { color: #c4b5fd; }
.page-breadcrumb i    { font-size: 0.6rem; color: #475569; }

.page-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #818cf8;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 0.28rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.page-hero-content h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  background: linear-gradient(180deg,#fff 0%,#f1f1f4 40%,#c7caf5 75%,#818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-content p {
  font-size: 0.92rem;
  color: black;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}


/* breadcrum */












 /* ── HERO — takes full viewport, header overlaps it ── */
#hero {
  /* min-height: 600px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 3rem;
  position: relative;
  overflow: hidden; /* showcase grid/image fades, shouldn't overflow page */
}
/* #hero::after{
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg, #1E1E21, rgba(0, 0, 255, 0));
  background: red;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
} */

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 500px;
  pointer-events: none;
  z-index: 0;
}

/* Content above canvas */
#hero > .hero-content { position: relative; z-index: 1; width: 100%; }

/* ── Showcase area: grid background + floating code screenshot ── */
.hero-showcase {
  position: relative;
  margin: 5rem auto 0;
  width: 100%;
  max-width: 90%;
  height: 380px;
}

/* Grid background image — sits behind, fades at edges */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: url('../image/element/herobg1.png'); /* ← your grid image here */
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  z-index: 0;
}

/* Code screenshot — floats above the grid, overlapping upward */
.hero-code-img {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1;
  /* border: 1px solid; */
  overflow: hidden; /* scaled box safely contain ho */
}

/* ── Responsive: shrink showcase + code image width on smaller screens ── */
/* Media queries se sirf .hero-showcase aur .hero-code-img ki target WIDTH control karo, transform mat lagao */
@media (max-width: 768px) {
  .hero-showcase {
    height: 280px;
    margin-top: 2rem;
    width: 100%;
  }
  .hero-code-img {
    width: 88%;
  }
}

@media (max-width: 480px) {
  .hero-showcase {
    height: 148px;
    margin-top: 5.5rem;
  }
    .hero-code-img {
        width: 76%;
        top: -35px;
        border-radius: 6px;
    }

  .btn-outline {
    display: inline-block;
    padding: 0.5rem 0.5rem;
  }
}
.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #82FFCD;
  color: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: #82FFCD;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  color: #131212;
}





/* hero end */




/* client probblem */

/* ==========================================================
   PROBLEMS / CHALLENGES — GLASS / MINT STYLE
   ========================================================== */

#problems {
  padding: 5rem 1.5rem 6rem;

  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(130, 255, 205, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(130, 255, 205, 0.05),
      transparent 28%
    );
}


/* Heading */
.problems-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.problems-tag {
  display: inline-block;

  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: #111827;

  background: #82FFCD;

  padding: 0.35rem 0.65rem;

  border-radius: 20px;

  margin-bottom: 1rem;

  box-shadow:
    0 5px 15px rgba(130, 255, 205, 0.18);
}

.problems-heading h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;

  color: #171b26;

  letter-spacing: -0.025em;
}


/* ==========================================================
   CONTENT GRID
   ========================================================== */

.stack-section {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  max-width: 1100px;

  margin: 0 auto;

  align-items: start;
}


/* Sticky image */
.stack-sticky-image {
  position: sticky;
  top: 12rem;
  align-self: start;
}

.stack-sticky-image img {
  width: 100%;
  height: auto;

  border-radius: 18px;

  display: block;

  /* border: 1px solid rgba(255, 255, 255, 0.75); */
/* 
  box-shadow:
    0 18px 45px rgba(30, 40, 55, 0.10),
    0 5px 15px rgba(30, 40, 55, 0.05); */
}


/* ==========================================================
   GLASS CARDS
   ========================================================== */

.stack-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stack-card {
  position: sticky;

  min-height: 130px;

  padding: 1.5rem 1.75rem;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 0.5rem;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(130, 255, 205, 0.14),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.84),
      rgba(245, 250, 248, 0.64)
    );

  border: 1px solid rgba(255, 255, 255, 0.8);

  border-radius: 16px;

  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);

  box-shadow:
    0 12px 32px rgba(30, 40, 55, 0.07),
    0 3px 10px rgba(30, 40, 55, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* Hover */
.stack-card:hover {
  transform: translateY(-4px);

  border-color: rgba(130, 255, 205, 0.55);

  box-shadow:
    0 18px 40px rgba(30, 40, 55, 0.09),
    0 5px 18px rgba(130, 255, 205, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* Glass shine */
.stack-card::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: 15px;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.48),
      transparent 36%
    );

  pointer-events: none;
}


/* Ambient mint glow */
.stack-card::after {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  right: -45px;
  bottom: -50px;

  border-radius: 50%;

  background: rgba(130, 255, 205, 0.11);

  filter: blur(28px);

  pointer-events: none;
}


/* Card heading */
.stack-card h3 {
  position: relative;
  z-index: 2;

  font-size: 1rem;
  font-weight: 600;

  color: #171b26;

  margin: 0;
}


/* Card description */
.stack-card p {
  position: relative;
  z-index: 2;

  font-size: 0.85rem;

  color: #687083;

  line-height: 1.5;

  margin: 0;
}


/* Card link */
.stack-card-link {
  position: relative;
  z-index: 2;

  font-size: 0.8rem;

  color: #3cae82;

  text-decoration: none;

  margin-top: 0.25rem;

  transition: color 0.25s ease;
}

.stack-card-link:hover {
  color: #16875d;
  text-decoration: underline;
}


/* ==========================================================
   CARD NUMBER
   ========================================================== */

.stack-card-num {
  position: absolute;

  right: 1.25rem;
  bottom: -0.99rem;

  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;

  color: transparent;

  -webkit-text-stroke: 1px rgba(60, 174, 130, 0.22);

  pointer-events: none;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 768px) {

  .stack-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stack-sticky-image {
    position: relative;
    top: 0;
  }

  .stack-card {
    position: relative;

    min-height: auto;

    padding: 1.25rem 1.5rem;
  }
}

/* client probblem end*/

/* how we build */
/* ==========================================================
   HOW WE BUILD — GLASS / MINT STYLE
   ========================================================== */

#how-we-build {
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
/* 
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(130, 255, 205, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(130, 255, 205, 0.05),
      transparent 28%
    ); */
}

.build-card {
  position: relative;

  width: 100%;
  max-width: 1100px;
  min-height: 460px;

  border-radius: 20px;
  overflow: hidden;

  background-image:
    
    url('../image/howwe.webp');

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  /* border: 1px solid rgba(130, 255, 205, 0.22); */

  /* box-shadow:
    0 20px 50px rgba(30, 40, 55, 0.10),
    0 0 35px rgba(130, 255, 205, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.55); */
}


/* Soft mint atmosphere */
.build-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(130, 255, 205, 0.14),
      transparent 45%
    );

  pointer-events: none;
}


/* Bottom ambient glow */
.build-card::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 180px;

  left: 50%;
  bottom: -100px;

  transform: translateX(-50%);

  background: rgba(130, 255, 205, 0.12);

  filter: blur(55px);

  pointer-events: none;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.build-content {
  position: relative;
  z-index: 2;

  text-align: center;

  max-width: 560px;

  padding: 2rem 1.5rem;
}

.build-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);

  font-weight: 700;
  line-height: 1.3;

  color: #171b26;

  letter-spacing: -0.025em;

  margin-bottom: 1rem;
}

.build-content p {
  font-size: 0.9rem;

  color: #687083;

  line-height: 1.6;

  margin-bottom: 1.5rem;
}


/* ==========================================================
   GLASS BUTTON
   ========================================================== */

.build-btn {
  display: inline-block;

  background:
    linear-gradient(
      135deg,
      #9affd9 0%,
      #82ffcd 50%,
      #63eeb5 100%
    );

  border: 1px solid rgba(130, 255, 205, 0.7);

  color: #111827;

  font-size: 0.85rem;
  font-weight: 600;

  padding: 0.65rem 1.5rem;

  border-radius: 999px;

  text-decoration: none;

  box-shadow:
    0 8px 22px rgba(130, 255, 205, 0.20),
    inset 0 1px 1px rgba(255, 255, 255, 0.65);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.build-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 28px rgba(130, 255, 205, 0.28),
    0 0 20px rgba(130, 255, 205, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.75);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 768px) {

  #how-we-build {
    padding: 3rem 1rem;
  }

  .build-card {
    min-height: 480px;
    border-radius: 16px;
  }

  .build-content {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {

  .build-card {
    min-height: 400px;

    background-position: center bottom;
  }
}
/* how we build */
/* ==========================================================
   TECH STACK — GLASS / MINT STYLE
   ========================================================== */

#tech-stack {
  padding: 4rem 1.5rem;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(130, 255, 205, 0.07),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(130, 255, 205, 0.05),
      transparent 28%
    );
}


/* Heading */
.stack-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.stack-heading h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #171b26;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.stack-heading p {
  font-size: 0.9rem;
  color: #687083;
  line-height: 1.6;
}


/* Marquee wrapper */
.marquee-wrap {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.marquee-track {
  flex: 1;
  overflow: hidden;
  display: flex;
}

.marquee-track .marquee-inner {
  display: flex;
  gap: 14px;
  width: max-content;
  flex-shrink: 0;
}


/* Edge fading */
.marquee-left {
  mask-image:
    linear-gradient(
      to right,
      transparent,
      black 15%,
      black 85%,
      transparent
    );

  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent,
      black 15%,
      black 85%,
      transparent
    );
}

.marquee-right {
  mask-image:
    linear-gradient(
      to left,
      transparent,
      black 15%,
      black 85%,
      transparent
    );

  -webkit-mask-image:
    linear-gradient(
      to left,
      transparent,
      black 15%,
      black 85%,
      transparent
    );
}


/* Marquee animations */
.marquee-left .marquee-inner {
  animation: scroll-to-right 32s linear infinite;
}

.marquee-right .marquee-inner {
  animation: scroll-to-left 32s linear infinite;
}

@keyframes scroll-to-right {
  from {
    transform: translateX(-33.3333%);
  }

  to {
    transform: translateX(0%);
  }
}

@keyframes scroll-to-left {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-33.3333%);
  }
}


/* ==========================================================
   TECHNOLOGY ICON GLASS BOX
   ========================================================== */

.icon-box {
  position: relative;

  width: 56px;
  height: 56px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(130, 255, 205, 0.14),
      transparent 55%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(245, 250, 248, 0.62)
    );

  border: 1px solid rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  box-shadow:
    0 8px 22px rgba(30, 40, 55, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-4px);

  border-color: rgba(130, 255, 205, 0.6);

  box-shadow:
    0 12px 28px rgba(30, 40, 55, 0.09),
    0 5px 18px rgba(130, 255, 205, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.icon-box i {
  font-size: 26px;
}


/* ==========================================================
   CENTER LOGO
   ========================================================== */

.marquee-center-logo {
  position: relative;

  width: 152px;
  height: 72px;

  border-radius: 18px;

  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(130, 255, 205, 0.20),
      transparent 55%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.88),
      rgba(242, 249, 246, 0.68)
    );

  border: 1px solid rgba(130, 255, 205, 0.55);

  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);

  box-shadow:
    0 15px 35px rgba(30, 40, 55, 0.09),
    0 0 30px rgba(130, 255, 205, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  margin: 0 -2px;

  z-index: 2;

  overflow: hidden;
}


/* Center logo glass shine */
.marquee-center-logo::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: 17px;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.5),
      transparent 38%
    );

  pointer-events: none;
}


/* Center mint glow */
.marquee-center-logo::after {
  content: "";

  position: absolute;

  width: 90px;
  height: 90px;

  right: -35px;
  bottom: -45px;

  border-radius: 50%;

  background: rgba(130, 255, 205, 0.14);

  filter: blur(25px);

  pointer-events: none;
}

.marquee-center-logo img {
  position: relative;
  z-index: 2;

  width: 160px;
  height: 46px;

  object-fit: contain;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  .marquee-left .marquee-inner,
  .marquee-right .marquee-inner {
    animation: none;
  }
}

@media (max-width: 768px) {

  .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .icon-box i {
    font-size: 20px;
  }

  .marquee-center-logo {
    width: 116px;
    height: 56px;
    border-radius: 15px;
  }

  .marquee-center-logo img {
    width: 100px;
    height: 40px;
  }
}





/* ==========================================================
   CASE STUDIES — Modern Light Glass / Mint
   ========================================================== */

#cs-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 1.5rem 6.5rem;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(130, 255, 205, 0.10),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(130, 255, 205, 0.07),
      transparent 26%
    ),
    #f8f9fc;
}


/* ==========================================================
   HEADING
   ========================================================== */

#cs-section .cs-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.cs-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #111827;
  background: linear-gradient(
    180deg,
    #9affd9 0%,
    #82ffcd 50%,
    #63eeb5 100%
  );

  padding: 0.42rem 0.75rem;
  border-radius: 999px;

  margin-bottom: 1rem;

  box-shadow:
    0 6px 18px rgba(130, 255, 205, 0.20),
    inset 0 1px 1px rgba(255, 255, 255, 0.65);
}

#cs-section .cs-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;

  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.045em;

  color: #171b26;

  margin: 0.75rem 0 0.85rem;
}

#cs-section .cs-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;

  max-width: 610px;
  margin: 0 auto;

  font-size: 0.92rem;
  font-weight: 400;
  color: #687083;
  line-height: 1.7;
}


/* ==========================================================
   GRID
   ========================================================== */

#cs-section .cs-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 1.75rem;

  max-width: 1100px;
  margin: 0 auto;
}


/* ==========================================================
   CARD
   ========================================================== */

#cs-section .cs-card {
  position: relative;

  display: flex;
  flex-direction: column;

  gap: 1.2rem;

  padding: 1.65rem 1.75rem 1.75rem;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(130, 255, 205, 0.13),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.90),
      rgba(247, 251, 249, 0.72)
    );

  border: 1px solid rgba(255, 255, 255, 0.90);
  border-radius: 20px;

  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);

  box-shadow:
    0 20px 50px rgba(30, 40, 55, 0.08),
    0 4px 14px rgba(30, 40, 55, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(130, 255, 205, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* Mint ambient glow */

#cs-section .cs-card::after {
  content: "";
  position: absolute;

  width: 180px;
  height: 180px;

  right: -80px;
  bottom: -90px;

  background: rgba(130, 255, 205, 0.15);

  border-radius: 50%;

  filter: blur(35px);

  pointer-events: none;
  z-index: 0;
}


/* Shine */

#cs-section .cs-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.30) 45%,
    rgba(130, 255, 205, 0.10) 50%,
    transparent 60%
  );

  transform: skewX(-18deg);

  pointer-events: none;

  transition: left 0.8s ease;

  z-index: 1;
}

#cs-section .cs-card:hover::before {
  left: 150%;
}

#cs-section .cs-card:hover {
  transform: translateY(-6px);

  border-color: rgba(130, 255, 205, 0.48);

  box-shadow:
    0 28px 65px rgba(30, 40, 55, 0.11),
    0 8px 25px rgba(130, 255, 205, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* ==========================================================
   CARD TOP
   ========================================================== */

#cs-section .cs-card-top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}


/* ==========================================================
   BADGE
   ========================================================== */

#cs-section .cs-badge {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;

  gap: 0.5rem;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 0.82rem;
  font-weight: 700;

  color: #111827;

  background:
    linear-gradient(
      180deg,
      #9affd9 0%,
      #82ffcd 50%,
      #63eeb5 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.85);

  border-radius: 999px;

  padding: 0.55rem 0.95rem;

  letter-spacing: -0.01em;

  box-shadow:
    0 7px 20px rgba(130, 255, 205, 0.20),
    inset 0 1px 1px rgba(255, 255, 255, 0.65);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#cs-section .cs-card:hover .cs-badge {
  transform: translateY(-2px);

  box-shadow:
    0 10px 25px rgba(130, 255, 205, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.70);
}

#cs-section .cs-badge i {
  font-size: 0.78rem;
}


/* ==========================================================
   NUMBER
   ========================================================== */

#cs-section .cs-num {
  position: relative;
  z-index: 2;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(3.5rem, 6vw, 4.5rem);
  font-weight: 800;

  line-height: 0.9;

  color: transparent;

  -webkit-text-stroke: 1.5px rgba(23, 27, 38, 0.10);

  user-select: none;

  margin-top: -0.1rem;

  transition:
    -webkit-text-stroke-color 0.3s ease,
    transform 0.3s ease;
}

#cs-section .cs-card:hover .cs-num {
  -webkit-text-stroke-color: rgba(130, 255, 205, 0.55);
  transform: translateY(-2px);
}


/* ==========================================================
   SUMMARY
   ========================================================== */

#cs-section .cs-summary {
  position: relative;
  z-index: 2;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 0.88rem;
  font-weight: 400;

  color: #687083;

  line-height: 1.7;

  margin: 0;
}


/* ==========================================================
   TWO COLUMN CONTENT
   ========================================================== */

#cs-section .cs-cols {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1px 1fr;

  gap: 0 1.25rem;

  align-items: start;
}

#cs-section .cs-divider {
  width: 1px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(23, 27, 38, 0.10) 20%,
    rgba(23, 27, 38, 0.10) 80%,
    transparent
  );

  align-self: stretch;
}


/* ==========================================================
   COLUMN TITLES
   ========================================================== */

#cs-section .cs-col-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;

  font-size: 0.92rem;
  font-weight: 700;

  color: #171b26;

  margin: 0 0 0.4rem;

  letter-spacing: -0.015em;
}

#cs-section .cs-col-text {
  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 0.78rem;
  font-weight: 400;

  color: #687083;

  line-height: 1.65;

  margin: 0;
}


/* ==========================================================
   RESULTS
   ========================================================== */

#cs-section .cs-results-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;

  font-size: 0.92rem;
  font-weight: 700;

  color: #171b26;

  margin: 0 0 0.7rem;
}


/* ==========================================================
   PILLS
   ========================================================== */

#cs-section .cs-pills {
  display: flex;

  flex-wrap: wrap;

  gap: 0.55rem;
}

#cs-section .cs-pill {
  position: relative;

  display: inline-flex;
  align-items: center;

  gap: 0.25rem;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 0.66rem;
  font-weight: 600;

  color: #3c8f70;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(239, 251, 246, 0.75)
    );

  padding: 0.40rem 0.72rem;

  border-radius: 999px;

  white-space: nowrap;

  border: 1px solid rgba(130, 255, 205, 0.35);

  box-shadow:
    0 4px 12px rgba(30, 40, 55, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

#cs-section .cs-pill:hover {
  transform: translateY(-2px);

  color: #16875d;

  border-color: rgba(130, 255, 205, 0.75);

  background:
    linear-gradient(
      135deg,
      rgba(154, 255, 217, 0.35),
      rgba(255, 255, 255, 0.90)
    );

  box-shadow:
    0 7px 18px rgba(130, 255, 205, 0.12);
}

#cs-section .cs-pill i {
  font-size: 0.62rem;
  opacity: 0.9;
}


/* ==========================================================
   CTA
   ========================================================== */

#cs-section .cs-cta {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.5rem;

  background:
    linear-gradient(
      180deg,
      #9affd9 0%,
      #82ffcd 48%,
      #63eeb5 100%
    );

  color: #111827;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 0.86rem;
  font-weight: 700;

  text-decoration: none;

  padding: 0.82rem 1.35rem;

  border-radius: 999px;

  margin-top: 0.2rem;

  letter-spacing: -0.01em;

  border: 1px solid rgba(255, 255, 255, 0.75);

  box-shadow:
    0 10px 25px rgba(130, 255, 205, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.65);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#cs-section .cs-cta:hover {
  color: #111827;

  transform: translateY(-2px);

  box-shadow:
    0 14px 32px rgba(130, 255, 205, 0.32),
    0 4px 12px rgba(30, 40, 55, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.75);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

  #cs-section .cs-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

}


@media (max-width: 600px) {

  #cs-section {
    padding: 4.5rem 1rem 5rem;
  }

  #cs-section .cs-heading {
    margin-bottom: 2.75rem;
  }

  #cs-section .cs-card {
    padding: 1.4rem;
    border-radius: 18px;
  }

  #cs-section .cs-cols {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  #cs-section .cs-divider {
    display: none;
  }

  #cs-section .cs-pill {
    font-size: 0.68rem;
    padding: 0.38rem 0.68rem;
  }

  #cs-section .cs-num {
    font-size: 3.5rem;
  }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  #cs-section .cs-card,
  #cs-section .cs-card::before,
  #cs-section .cs-badge,
  #cs-section .cs-num,
  #cs-section .cs-pill,
  #cs-section .cs-cta {
    transition: none !important;
  }

}




/* FAQ */
#faq-section {
  padding: 5rem 1.5rem 6rem;

  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(130, 255, 205, 0.07),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(130, 255, 205, 0.05),
      transparent 28%
    );
}

#faq-section .faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

#faq-section .faq-left {
  position: sticky;
  top: 6rem;
}

#faq-section .faq-heading {
  font-size: clamp(1.6rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.3;
  color: #171b26;
  margin-bottom: 2rem;
}

#faq-section .faq-illustration {
  width: 100%;
  max-width: 390px;
  height: auto;
  display: block;
}

#faq-section .faq-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}


/* ── FAQ Glass Card ── */
#faq-section .faq-item {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(130, 255, 205, 0.13),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(245, 250, 248, 0.62)
    );

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;

  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);

  box-shadow:
    0 10px 30px rgba(30, 40, 55, 0.06),
    0 3px 10px rgba(30, 40, 55, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

#faq-section .faq-item:hover {
  transform: translateY(-2px);

  border-color: rgba(130, 255, 205, 0.5);

  box-shadow:
    0 15px 35px rgba(30, 40, 55, 0.08),
    0 5px 15px rgba(130, 255, 205, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* Active FAQ */
#faq-section .faq-item.active {
  border-color: rgba(130, 255, 205, 0.65);

  box-shadow:
    0 15px 38px rgba(30, 40, 55, 0.08),
    0 5px 18px rgba(130, 255, 205, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* Question */
#faq-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  background: none;
  border: none;

  cursor: pointer;
  text-align: left;

  padding: 1.1rem 1.25rem;

  font-size: 0.9rem;
  font-weight: 600;
  color: #171b26;

  font-family: inherit;
}


/* FAQ Icon */
#faq-section .faq-icon {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 50%;

  font-size: 0.8rem;
  color: #171b26;

  background: rgba(130, 255, 205, 0.20);

  border: 1px solid rgba(130, 255, 205, 0.30);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

#faq-section .faq-item.active .faq-icon {
  transform: rotate(45deg);

  color: #111827;

  background: #82FFCD;

  border-color: #82FFCD;

  box-shadow:
    0 4px 12px rgba(130, 255, 205, 0.25);
}


/* Answer */
#faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#faq-section .faq-answer p {
  font-size: 0.85rem;
  color: #687083;
  line-height: 1.6;

  padding: 0 1.25rem 1.1rem;
  margin: 0;
}


/* ── Subtle glass shine ── */
#faq-section .faq-item::before {
  content: "";
  position: absolute;

  inset: 1px;

  border-radius: 15px;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.42),
    transparent 35%
  );

  pointer-events: none;
}


/* ── Mint ambient glow ── */
#faq-section .faq-item::after {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  right: -45px;
  bottom: -50px;

  border-radius: 50%;

  background: rgba(130, 255, 205, 0.10);

  filter: blur(28px);

  pointer-events: none;
}


@media (max-width: 900px) {
  #faq-section .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #faq-section .faq-left {
    position: relative;
    top: 0;
    text-align: center;
  }

  #faq-section .faq-illustration {
    margin: 0 auto;
  }
}


@media (max-width: 480px) {
  #faq-section .faq-question {
    font-size: 0.85rem;
    padding: 1rem;
  }

  #faq-section .faq-icon {
    width: 26px;
    height: 26px;
  }
}



/* ==========================================================
   CTA FOOTER — GLASS / MINT STYLE
   ========================================================== */

#cta-section {
  position: relative;

  padding: 4rem 1.5rem 0;

  overflow: hidden;

  /* background:
    radial-gradient(
      circle at 50% 100%,
      rgba(130, 255, 205, 0.12),
      transparent 45%
    ),
    #f8f9fc; */
}


/* ==========================================================
   CTA CARD
   ========================================================== */

#cta-section .cta-card {
  position: relative;

  max-width: 1100px;

  margin: 0 auto;

  min-height: 280px;

  border-radius: 24px 24px 0 0;

  display: flex;

  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 3.5rem 1.5rem;

  flex-direction: column;

  overflow: hidden;

  background:
    radial-gradient(
      ellipse 75% 100% at 50% 0%,
      rgba(130, 255, 205, 0.25),
      transparent 68%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(238, 249, 244, 0.78)
    );

  border: 1px solid rgba(130, 255, 205, 0.35);

  border-bottom: none;

  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);

  box-shadow:
    0 -5px 35px rgba(130, 255, 205, 0.08),
    0 20px 50px rgba(30, 40, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* Top glass shine */
#cta-section .cta-card::before {
  content: "";

  position: absolute;

  inset: 1px;

  border-radius: 23px 23px 0 0;

  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.55),
      transparent 35%
    );

  pointer-events: none;
}


/* Bottom mint glow */
#cta-section .cta-card::after {
  content: "";

  position: absolute;

  width: 420px;
  height: 180px;

  left: 50%;
  bottom: -120px;

  transform: translateX(-50%);

  background: rgba(130, 255, 205, 0.22);

  filter: blur(65px);

  pointer-events: none;
}


/* ==========================================================
   CTA CONTENT
   ========================================================== */

#cta-section .cta-card h2 {
  position: relative;
  z-index: 2;

  font-size: clamp(1.6rem, 4vw, 2.5rem);

  font-weight: 700;

  color: #171b26;

  letter-spacing: -0.025em;

  margin-bottom: 0.75rem;
}

#cta-section .cta-card p {
  position: relative;
  z-index: 2;

  font-size: 0.95rem;

  color: #687083;

  line-height: 1.6;

  margin-bottom: 1.75rem;

  max-width: 480px;

  margin-inline: auto;
}


/* ==========================================================
   CTA BUTTON
   ========================================================== */

#cta-section .cta-btn {
  position: relative;
  z-index: 2;

  display: inline-block;

  padding: 0.85rem 2rem;

  background:
    linear-gradient(
      135deg,
      #9affd9 0%,
      #82ffcd 50%,
      #63eeb5 100%
    );

  color: #111827;

  border: 1px solid rgba(130, 255, 205, 0.75);

  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;

  font-size: 0.95rem;

  box-shadow:
    0 10px 28px rgba(130, 255, 205, 0.24),
    0 0 25px rgba(130, 255, 205, 0.10),
    inset 0 1px 1px rgba(255, 255, 255, 0.65);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#cta-section .cta-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 14px 34px rgba(130, 255, 205, 0.32),
    0 0 30px rgba(130, 255, 205, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 480px) {

  #cta-section {
    padding: 3rem 1rem 0;
  }

  #cta-section .cta-card {
    min-height: 220px;

    padding: 2.75rem 1.25rem;

    border-radius: 18px 18px 0 0;
  }

  #cta-section .cta-card::before {
    border-radius: 17px 17px 0 0;
  }
}




/* ==========================================================
   FOOTER — GLASS / MINT STYLE
   ========================================================== */

#site-footer {
  position: relative;

  padding: 4rem 1.5rem 0;

  overflow: hidden;

  /* background:
    radial-gradient(
      circle at 8% 10%,
      rgba(130, 255, 205, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 60%,
      rgba(130, 255, 205, 0.06),
      transparent 30%
    ),
    #f8f9fc; */
}


/* Large ambient footer glow */
#site-footer::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 300px;

  left: 50%;
  bottom: -220px;

  transform: translateX(-50%);

  background: rgba(130, 255, 205, 0.14);

  filter: blur(90px);

  pointer-events: none;
}


/* ==========================================================
   FOOTER TOP
   ========================================================== */

#site-footer .footer-top {
  position: relative;
  z-index: 2;

  max-width: 1100px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1.6fr 1fr 1fr 1fr;

  gap: 2.5rem;

  padding-bottom: 2.5rem;
}


/* ==========================================================
   BRAND
   ========================================================== */

#site-footer .footer-logo {
  display: flex;

  align-items: center;

  gap: 0.6rem;

  margin-bottom: 1rem;
}

#site-footer .footer-logo img {
  border-radius: 7px;
}

#site-footer .footer-logo span {
  font-size: 1.05rem;

  font-weight: 700;

  color: #171b26;
}

#site-footer .footer-tagline {
  font-size: 0.85rem;

  color: #687083;

  line-height: 1.6;

  max-width: 320px;

  margin-bottom: 1.25rem;
}


/* ==========================================================
   SOCIAL ICONS — GLASS
   ========================================================== */

#site-footer .footer-socials {
  display: flex;

  gap: 0.65rem;
}

#site-footer .footer-socials a {
  position: relative;

  width: 38px;
  height: 38px;

  border-radius: 11px;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(245, 250, 248, 0.62)
    );

  border: 1px solid rgba(255, 255, 255, 0.8);

  color: #687083;

  text-decoration: none;

  font-size: 0.9rem;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 6px 18px rgba(30, 40, 55, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

#site-footer .footer-socials a:hover {
  transform: translateY(-4px);

  background: #82FFCD;

  border-color: rgba(130, 255, 205, 0.75);

  color: #111827;

  box-shadow:
    0 10px 24px rgba(130, 255, 205, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}


/* ==========================================================
   FOOTER COLUMNS
   ========================================================== */

#site-footer .footer-col {
  display: flex;

  flex-direction: column;

  gap: 0.65rem;
}

#site-footer .footer-col h4 {
  font-size: 0.85rem;

  font-weight: 700;

  color: #171b26;

  margin-bottom: 1rem;

  text-transform: uppercase;

  letter-spacing: 0.04em;
}


/* Links */
#site-footer .footer-col a {
  position: relative;

  width: fit-content;

  font-size: 0.85rem;

  color: #687083;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

#site-footer .footer-col a:hover {
  color: #238b68;

  transform: translateX(3px);
}


/* ==========================================================
   FOOTER BOTTOM
   ========================================================== */

#site-footer .footer-bottom {
  position: relative;

  z-index: 2;

  max-width: 1100px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 1rem;

  flex-wrap: wrap;

  padding: 1.5rem 0;

  border-top: 1px solid rgba(23, 27, 38, 0.08);
}

#site-footer .footer-bottom span {
  font-size: 0.8rem;

  color: #64748b;
}

#site-footer .footer-bottom-links {
  display: flex;

  gap: 1.5rem;
}

#site-footer .footer-bottom-links a {
  font-size: 0.8rem;

  color: #64748b;

  text-decoration: none;

  text-decoration-color: rgba(100, 116, 139, 0.4);

  transition: color 0.25s ease;
}

#site-footer .footer-bottom-links a:hover {
  color: #238b68;
}


/* ==========================================================
   LARGE WATERMARK
   ========================================================== */

#site-footer .footer-watermark {
  position: relative;

  z-index: 1;

  font-size: clamp(3rem, 14vw, 9rem);

  font-weight: 800;

  line-height: 1;

  text-align: center;

  white-space: nowrap;

  user-select: none;

  margin-top: 1rem;

  transform: translateY(28%);

  /* Mint glass shine */
  background:
    linear-gradient(
      100deg,
      rgba(23, 27, 38, 0.035) 0%,
      rgba(23, 27, 38, 0.035) 35%,

      rgba(130, 255, 205, 0.35) 46%,

      rgba(130, 255, 205, 0.95) 50%,

      rgba(130, 255, 205, 0.35) 54%,

      rgba(23, 27, 38, 0.035) 65%,
      rgba(23, 27, 38, 0.035) 100%
    );

  background-size: 300% 100%;

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;

  -webkit-text-fill-color: transparent;

  animation:
    footer-shine-sweep 4s ease-in-out infinite;
}


@keyframes footer-shine-sweep {
  0% {
    background-position: 200% 50%;
  }

  100% {
    background-position: -100% 50%;
  }
}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  #site-footer .footer-watermark {
    animation: none;

    background-position: 50% 50%;
  }

  #site-footer .footer-socials a,
  #site-footer .footer-col a {
    transition: none;
  }
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

  #site-footer .footer-top {
    grid-template-columns: 1fr 1fr;

    gap: 2rem;
  }

  #site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

  #site-footer {
    padding: 3rem 1.25rem 0;
  }

  #site-footer .footer-top {
    grid-template-columns: 1fr 1fr;

    gap: 1.75rem;
  }

  #site-footer .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    text-align: left;
  }

  #site-footer .footer-bottom-links {
    gap: 1.1rem;
  }

  #site-footer .footer-watermark {
    font-size: clamp(2.5rem, 16vw, 5rem);

    transform: translateY(20%);
  }
}





/* ==========================================================
   CLIENTS — GLASS / MINT STYLE
   ========================================================== */

#clients-section {
  padding: 1rem 1.5rem 1rem;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(130, 255, 205, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(130, 255, 205, 0.05),
      transparent 28%
    );
}


/* Heading */
#clients-section .clients-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

#clients-section .clients-heading h2 {
  font-family: "Plus Jakarta Sans","Helvetica Neue",Helvetica,Arial,sans-serif;

  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 700;

  color: #171b26;

  margin: 1rem 0 0.75rem;

  letter-spacing: -0.025em;
}

#clients-section .clients-heading p {
  font-size: 0.9rem;

  color: #687083;

  line-height: 1.6;
}


/* ==========================================================
   MARQUEE
   ========================================================== */

#clients-section .clients-marquee-wrap {
  display: flex;
  flex-direction: column;

  gap: 1.25rem;

  max-width: 1100px;
  margin: 0 auto;
}

#clients-section .clients-row {
  overflow: hidden;

  mask-image:
    linear-gradient(
      to right,
      transparent,
      black 8%,
      black 92%,
      transparent
    );

  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent,
      black 8%,
      black 92%,
      transparent
    );
}

#clients-section .clients-track {
  display: flex;

  gap: 14px;

  width: max-content;
}

#clients-section .clients-track-rtl {
  animation: clients-scroll-rtl 35s linear infinite;
}

#clients-section .clients-track-ltr {
  animation: clients-scroll-ltr 35s linear infinite;
}


/* Hover: pause only current row */
#clients-section .clients-row:hover .clients-track {
  animation-play-state: paused;
}


@keyframes clients-scroll-rtl {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-33.3333%);
  }
}

@keyframes clients-scroll-ltr {
  from {
    transform: translateX(-33.3333%);
  }

  to {
    transform: translateX(0%);
  }
}


/* ==========================================================
   CLIENT LOGO GLASS CARD
   ========================================================== */

#clients-section .client-logo {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.5rem;

  flex-shrink: 0;

  height: 64px;

  padding: 0 1.5rem;

  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(130, 255, 205, 0.13),
      transparent 50%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.84),
      rgba(245, 250, 248, 0.64)
    );

  border: 1px solid rgba(255, 255, 255, 0.8);

  border-radius: 14px;

  text-decoration: none;

  color: #171b26;

  font-size: 0.95rem;
  font-weight: 600;

  white-space: nowrap;

  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);

  box-shadow:
    0 10px 28px rgba(30, 40, 55, 0.07),
    0 3px 10px rgba(30, 40, 55, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


/* Glass shine */
#clients-section .client-logo::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: 13px;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.48),
      transparent 38%
    );

  pointer-events: none;
}


/* Mint ambient glow */
#clients-section .client-logo::after {
  content: "";

  position: absolute;

  width: 70px;
  height: 70px;

  right: -30px;
  bottom: -35px;

  border-radius: 50%;

  background: rgba(130, 255, 205, 0.10);

  filter: blur(22px);

  pointer-events: none;
}


/* Logo image */
#clients-section .client-logo img {
  position: relative;
  z-index: 2;

  height: 37px;
  width: auto;

  object-fit: contain;

  opacity: 0.9;

  border-radius: 4px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}


/* Hover */
#clients-section .client-logo:hover {
  transform: translateY(-4px) scale(1.03);

  border-color: rgba(130, 255, 205, 0.60);

  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(130, 255, 205, 0.18),
      transparent 52%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(245, 251, 248, 0.72)
    );

  box-shadow:
    0 15px 34px rgba(30, 40, 55, 0.09),
    0 5px 18px rgba(130, 255, 205, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

#clients-section .client-logo:hover img {
  transform: scale(1.04);
  opacity: 1;
}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  #clients-section .clients-track {
    animation: none;
  }

  #clients-section .client-logo,
  #clients-section .client-logo img {
    transition: none;
  }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 768px) {

  #clients-section .client-logo {
    height: 52px;

    padding: 0 1.1rem;

    font-size: 0.85rem;

    border-radius: 12px;
  }

  #clients-section .client-logo img {
    height: 20px;
  }
}



/* services */
/* ==========================================================
   SERVICES — GLASS / MINT STYLE
   ========================================================== */

#services {
  padding: 4rem 1.5rem;

  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(130, 255, 205, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(130, 255, 205, 0.05),
      transparent 28%
    );
}


/* ==========================================================
   OUTER GLASS CONTAINER
   ========================================================== */

#services .services-card-outer {
  max-width: 1150px;

  margin: 0 auto;

  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(130, 255, 205, 0.16),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(245, 250, 248, 0.62)
    );

  border: 1px solid rgba(255, 255, 255, 0.8);

  border-radius: 28px;

  padding: 3rem 2.5rem 3.5rem;

  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);

  box-shadow:
    0 20px 55px rgba(30, 40, 55, 0.10),
    0 5px 18px rgba(30, 40, 55, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(130, 255, 205, 0.08);

  position: relative;
  overflow: hidden;
}


/* Soft ambient glow */
#services .services-card-outer::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -100px;
  top: -120px;

  border-radius: 50%;

  background: rgba(130, 255, 205, 0.12);

  filter: blur(65px);

  pointer-events: none;
}


/* ==========================================================
   HEADING
   ========================================================== */

#services .services-heading {
  position: relative;
  z-index: 2;

  text-align: center;

  max-width: 620px;

  margin: 0 auto 2.5rem;
}

#services .services-heading h2 {
  font-family: "Plus Jakarta Sans","Helvetica Neue",Helvetica,Arial,sans-serif;

  font-size: clamp(1.5rem, 3.5vw, 2.1rem);

  font-weight: 700;

  color: #171b26;

  margin: 1rem 0 0.75rem;

  line-height: 1.3;

  letter-spacing: -0.025em;
}

#services .services-heading p {
  font-size: 0.88rem;

  color: #687083;

  line-height: 1.6;
}


/* ==========================================================
   SERVICES GRID
   ========================================================== */

#services .services-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;
}

#services .services-grid .service-card:nth-child(4) {
  grid-column: 1 / 2;
}

#services .services-grid .service-card:nth-child(5) {
  grid-column: 2 / 4;
}


/* ==========================================================
   SERVICE CARD — GLASS
   ========================================================== */

#services .service-card {
  position: relative;

  border-radius: 18px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(130, 255, 205, 0.15),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.88),
      rgba(245, 250, 248, 0.68)
    );

  border: 1px solid rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  box-shadow:
    0 10px 30px rgba(30, 40, 55, 0.07),
    0 3px 10px rgba(30, 40, 55, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* Glass shine */
#services .service-card::before {
  content: "";

  position: absolute;

  inset: 1px;

  border-radius: 17px;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.50),
      transparent 38%
    );

  pointer-events: none;

  z-index: 1;
}


/* Mint glow */
#services .service-card::after {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  right: -50px;
  bottom: -55px;

  border-radius: 50%;

  background: rgba(130, 255, 205, 0.12);

  filter: blur(30px);

  pointer-events: none;

  z-index: 0;
}


#services .service-card.in-view {
  opacity: 1;

  transform: translateY(0);
}


/* Hover */
#services .service-card:hover {
  transform: translateY(-5px);

  border-color: rgba(130, 255, 205, 0.58);

  box-shadow:
    0 18px 40px rgba(30, 40, 55, 0.09),
    0 6px 20px rgba(130, 255, 205, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* ==========================================================
   FEATURE / ACCENT CARD
   ========================================================== */

#services .service-card-accent {
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(130, 255, 205, 0.24),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(238, 255, 248, 0.95),
      rgba(230, 249, 241, 0.72)
    );

  border-color: rgba(130, 255, 205, 0.42);

  box-shadow:
    0 12px 34px rgba(30, 40, 55, 0.08),
    0 5px 20px rgba(130, 255, 205, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

#services .service-card-accent:hover {
  border-color: rgba(130, 255, 205, 0.72);

  box-shadow:
    0 20px 44px rgba(30, 40, 55, 0.10),
    0 7px 24px rgba(130, 255, 205, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}


/* ==========================================================
   CARD CONTENT
   ========================================================== */

#services .service-card-top {
  position: relative;
  z-index: 2;

  padding: 1.5rem 1.5rem 0;
}

#services .service-card-top h3 {
  font-family: "Plus Jakarta Sans","Helvetica Neue",Helvetica,Arial,sans-serif;

  font-size: 1.1rem;

  font-weight: 700;

  color: #171b26;

  margin-bottom: 0.3rem;
}

#services .service-subtitle {
  font-size: 0.78rem;

  color: #687083;
}


/* ==========================================================
   STATS
   ========================================================== */

#services .service-stats {
  position: relative;
  z-index: 2;

  display: flex;

  gap: 0;

  padding: 1.1rem 1.5rem 1.4rem;
}

#services .service-stat {
  flex: 1;

  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

#services .service-stat:first-child {
  border-right: 1px solid rgba(23, 27, 38, 0.08);

  padding-right: 1rem;
}

#services .service-stat:last-child {
  padding-left: 1rem;
}

#services .service-stat-num {
  font-family: "Plus Jakarta Sans","Helvetica Neue",Helvetica,Arial,sans-serif;

  font-size: 1.4rem;

  font-weight: 700;

  color: #171b26;
}

#services .service-stat-label {
  font-size: 0.72rem;

  color: #687083;

  line-height: 1.3;
}


/* ==========================================================
   SERVICE IMAGE
   ========================================================== */

#services .service-img {
  position: relative;
  z-index: 2;

  height: 170px;

  margin: 0 0.75rem 0.75rem;

  border-radius: 12px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.65);
}

#services .service-img::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(130, 255, 205, 0.10) 0%,
      transparent 35%
    );

  pointer-events: none;
}

#services .service-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

#services .service-card:hover .service-img img {
  transform: scale(1.06);
}


/* ==========================================================
   CTA
   ========================================================== */

#services .services-cta-wrap {
  position: relative;
  z-index: 2;

  display: flex;

  justify-content: center;

  margin-top: 2.5rem;
}

#services .services-cta {
  display: inline-block;

  background:
    linear-gradient(
      135deg,
      #9affd9 0%,
      #82ffcd 50%,
      #63eeb5 100%
    );

  color: #111827;

  font-size: 0.85rem;

  font-weight: 600;

  padding: 0.75rem 1.75rem;

  border-radius: 999px;

  text-decoration: none;

  border: 1px solid rgba(130, 255, 205, 0.7);

  box-shadow:
    0 8px 22px rgba(130, 255, 205, 0.20),
    inset 0 1px 1px rgba(255, 255, 255, 0.65);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#services .services-cta:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 28px rgba(130, 255, 205, 0.28),
    0 0 20px rgba(130, 255, 205, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.75);
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  #services .service-card {
    opacity: 1;

    transform: none;

    transition: none;
  }
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

  #services .services-card-outer {
    padding: 2.5rem 1.5rem 3rem;

    border-radius: 20px;
  }

  #services .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  #services .services-grid .service-card:nth-child(4),
  #services .services-grid .service-card:nth-child(5) {
    grid-column: auto;
  }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

  #services {
    padding: 3rem 1rem;
  }

  #services .services-grid {
    grid-template-columns: 1fr;
  }

  #services .services-card-outer {
    padding: 2rem 1rem 2.5rem;
  }
}


    /* ── OTHER SECTIONS ── */

    .lazy-section {
      content-visibility: auto;
      contain-intrinsic-size: 0 600px;
      padding: 5rem 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }







.heighlight{
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
padding: 5px;
border-radius: 20px;
}






