
    /* ═══════════════════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --bg: #f5f5f5;
      --purple: #452659;
      --purple-d: #2d1840;
      --pink: #8c3659;
      --muted: #9a8194;
      --white: #ffffff;
      --text: #1a0f28;
      --text-s: #5b4668;
      --border: rgba(69, 38, 89, .1);
      --border-m: rgba(69, 38, 89, .2);
      --glow: rgba(140, 54, 89, .3);
      --glow-p: rgba(69, 38, 89, .2);
      --r: 24px;
      --r-sm: 14px;
      --r-xs: 10px;
      --sh: 0 8px 40px rgba(69, 38, 89, .10);
      --sh-lg: 0 24px 80px rgba(69, 38, 89, .18);
      --sh-glow: 0 0 40px rgba(140, 54, 89, .25), 0 8px 32px rgba(69, 38, 89, .2);
      --nav: 72px;
      --ease: cubic-bezier(.4, 0, .2, 1);
      --t: .35s;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans: 'Syne', system-ui, sans-serif;
    }
    /* loader bacground */
    /* LOADER */
#loader{
  position:fixed;
  inset:0;
  background:#ffffff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  z-index:9999;
}

/* BACKGROUND LOGO */
.loader-bg-logo{
  position:absolute;
  width:320px;
  opacity:0.08;
  animation:rotateLogo 20s linear infinite;
  pointer-events:none;
}

/* TEXT */
.ld-logo{
  position:relative;
  font-size:32px;
  font-weight:700;
  letter-spacing:1px;
  z-index:2;
}

/* TRACK */
.ld-track{
  width:260px;
  height:6px;
  background:#fffcfc;
  border-radius:30px;
  overflow:hidden;
  margin-top:25px;
  position:relative;
  z-index:2;
}

/* LOADING BAR */
.ld-bar{
  width:40%;
  height:100%;
  background:linear-gradient(90deg,#fbfbfb,#ffffff);
  border-radius:30px;
  animation:loading 2s infinite ease-in-out;
}

/* BAR ANIMATION */
@keyframes loading{
  0%{
    transform:translateX(-100%);
  }
  100%{
    transform:translateX(300%);
  }
}

/* ROTATING LOGO */
@keyframes rotateLogo{
  from{
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
}

    html {
      scroll-behavior: smooth;
      font-size: 16px
    }

    body {
      font-family: var(--font-sans);
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6
    }

    img {
      display: block;
      max-width: 100%;
      height: auto
    }

    a {
      text-decoration: none;
      color: inherit
    }

    ul {
      list-style: none
    }

    button {
      font-family: var(--font-sans);
      cursor: pointer;
      border: none;
      background: none
    }
/* logo */
    /* ═══════════════════════════════════════════
    /* NAV LOGO */
.nav-logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

/* LOGO IMAGE */
.nav-logo img{
  width: 106px;
  height:70px;
  object-fit:contain;
}

/* LOGO TEXT */
.nav-logo span{
  font-size:20px;
  font-weight:700;
  color:#111;
  letter-spacing:0.5px;
}

/* MOBILE */
@media(max-width:768px){

  .nav-logo img{
    width:110px;
    height:70px;
  }

  .nav-logo span{
    font-size:15px;
  }

}
   TYPOGRAPHY
═══════════════════════════════════════════ */
    .serif {
      font-family: var(--font-serif)
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--pink);
      background: rgba(140, 54, 89, .08);
      padding: 6px 16px;
      border-radius: 50px;
      border: 1px solid rgba(140, 54, 89, .2);
    }

    .tag::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--pink);
      flex-shrink: 0
    }

    h2.sec-ttl {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      color: var(--purple);
      line-height: 1.1;
      margin: 14px 0 18px
    }

    .sec-sub {
      font-size: .95rem;
      color: var(--text-s);
      line-height: 1.8;
      max-width: 520px
    }

    .container {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 28px
    }

    section {
      padding: 100px 0
    }

    /* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: 50px;
      font-family: var(--font-sans);
      font-size: .83rem;
      font-weight: 700;
      letter-spacing: .03em;
      border: none;
      cursor: pointer;
      transition: all var(--t) var(--ease);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--purple);
      color: var(--white)
    }

    .btn-primary:hover {
      background: var(--pink);
      transform: translateY(-3px);
      box-shadow: 0 12px 36px var(--glow)
    }

    .btn-outline {
      background: transparent;
      color: var(--purple);
      border: 1.5px solid var(--border-m)
    }

    .btn-outline:hover {
      border-color: var(--purple);
      background: rgba(69, 38, 89, .05);
      transform: translateY(-2px)
    }

    .btn-white {
      background: var(--white);
      color: var(--purple)
    }

    .btn-white:hover {
      background: var(--bg);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .12)
    }

    /* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--purple);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 22px;
      z-index: 9999;
      transition: opacity .6s var(--ease), visibility .6s var(--ease);
    }

    #loader.hide {
      opacity: 0;
      visibility: hidden;
      pointer-events: none
    }

    .ld-logo {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      color: var(--white);
      font-style: italic;
      letter-spacing: .02em
    }

    .ld-track {
      width: 160px;
      height: 1.5px;
      background: rgba(255, 255, 255, .15);
      border-radius: 2px;
      overflow: hidden
    }

    .ld-bar {
      height: 100%;
      background: linear-gradient(90deg, var(--pink), var(--white));
      border-radius: 2px;
      animation: ldAnim 1.8s var(--ease) forwards
    }

    @keyframes ldAnim {
      from {
        width: 0
      }

      to {
        width: 100%
      }
    }

    .ld-sub {
      font-size: .72rem;
      color: rgba(255, 255, 255, .5);
      letter-spacing: .14em;
      text-transform: uppercase
    }

    /* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      height: var(--nav);
      background: transparent;
      transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
    }

    #nav.scrolled {
      background: rgba(245, 245, 245, .94);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--border)
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      height: var(--nav);
      gap: 20px
    }

    .nav-logo {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      color: var(--purple);
      flex-shrink: 0;
      font-weight: 600;
      font-style: italic;
      transition: opacity var(--t)
    }

    .nav-logo:hover {
      opacity: .75
    }

    .nav-links {
      display: flex;
      gap: 32px;
      margin-left: auto
    }

    .nav-links a {
      font-size: .78rem;
      font-weight: 600;
      color: var(--text-s);
      letter-spacing: .04em;
      text-transform: uppercase;
      position: relative;
      transition: color var(--t)
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--pink);
      transition: width var(--t) var(--ease);
      border-radius: 2px
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--purple)
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%
    }

    .nav-cta {
      margin-left: 16px
    }

    /* Hamburger */
    .hbtn {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      z-index: 901;
      margin-left: auto
    }

    .hbtn span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--purple);
      border-radius: 2px;
      transition: all var(--t) var(--ease)
    }

    .hbtn.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px)
    }

    .hbtn.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0)
    }

    .hbtn.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px)
    }

    /* Mobile nav */
    .mob-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26, 15, 40, .5);
      z-index: 940;
      opacity: 0;
      visibility: hidden;
      transition: all var(--t) var(--ease);
      backdrop-filter: blur(4px)
    }

    .mob-overlay.open {
      opacity: 1;
      visibility: visible
    }

    .mob-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(320px, 88vw);
      height: 100dvh;
      background: var(--white);
      z-index: 950;
      display: flex;
      flex-direction: column;
      padding: 88px 32px 48px;
      gap: 2px;
      transition: right .4s var(--ease);
      box-shadow: -12px 0 60px rgba(69, 38, 89, .2);
    }

    .mob-nav.open {
      right: 0
    }

    .mob-close {
      position: absolute;
      top: 22px;
      right: 22px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(69, 38, 89, .07);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--purple);
      transition: background var(--t)
    }

    .mob-close:hover {
      background: rgba(69, 38, 89, .14)
    }

    .mob-nav a:not(.btn) {
      display: block;
      padding: 14px 0;
      font-size: .9rem;
      font-weight: 600;
      color: var(--text-s);
      border-bottom: 1px solid var(--border);
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: color var(--t)
    }

    .mob-nav a:not(.btn):hover {
      color: var(--purple)
    }

    .mob-nav .btn {
      margin-top: 24px;
      justify-content: center;
      padding: 14px 28px
    }

    /* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
    #hero {
      min-height: 100dvh;
      position: relative;
      overflow: hidden;
      background: var(--purple-d);
      display: flex;
      align-items: center;
      padding: 0;
    }

    .hero-img-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(45, 24, 64, .96) 0%, rgba(69, 38, 89, .82) 40%, rgba(140, 54, 89, .6) 100%),
        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1800&q=80&auto=format&fit=crop') center/cover no-repeat;
      transform: scale(1.04);
      transition: transform 8s ease-out;
    }

    #hero.loaded .hero-img-bg {
      transform: scale(1)
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(140, 54, 89, .25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(69, 38, 89, .3) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-grid-pat {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
    }

    .hero-body {
      position: relative;
      z-index: 5;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 80px;
      align-items: center;
      padding-top: var(--nav);
      min-height: 100dvh;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px
    }

    .h-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--pink);
      animation: hPulse 2s ease infinite
    }

    @keyframes hPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .6;
        transform: scale(1.5)
      }
    }

    .h-eyetxt {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6)
    }

    .hero-h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.8rem, 5.5vw, 5.2rem);
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 24px;
      font-weight: 600
    }

    .hero-h1 .hl {
      color: rgba(197, 142, 174, 1);
      font-style: italic
    }

    .hero-p {
      font-size: 1rem;
      color: rgba(255, 255, 255, .72);
      line-height: 1.85;
      max-width: 480px;
      margin-bottom: 40px;
      font-weight: 400
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap
    }

    .hero-slide {
      display: none
    }

    .hero-slide.active {
      display: block;
      animation: hSlideIn .6s var(--ease)
    }

    @keyframes hSlideIn {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    /* Hero right card */
    .hero-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--r);
      padding: 36px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      animation: heroFloat 5s ease-in-out infinite;
    }

    @keyframes heroFloat {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-14px)
      }
    }

    .hcard-ico {
      font-size: 2.2rem;
      margin-bottom: 18px
    }

    .hcard-title {
      font-family: var(--font-serif);
      font-size: 1.9rem;
      color: var(--white);
      margin-bottom: 10px;
      line-height: 1.15
    }

    .hcard-sub {
      font-size: .82rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.7;
      margin-bottom: 24px
    }

    .hcard-pills {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .hpill {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 50px;
      transition: all var(--t);
    }

    .hpill:hover {
      background: rgba(255, 255, 255, .12);
      border-color: rgba(255, 255, 255, .22);
      transform: translateX(4px)
    }

    .hpill-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--pink);
      flex-shrink: 0
    }

    .hpill span {
      font-size: .78rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .8);
      letter-spacing: .04em
    }

    /* Hero dots */
    .hero-dots {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10
    }

    .hdot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .25);
      border: none;
      cursor: pointer;
      transition: all var(--t)
    }

    .hdot.active {
      background: var(--white);
      width: 26px;
      border-radius: 4px
    }

    /* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
    #about {
      background: var(--bg)
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center
    }

    .about-img-wrap {
      position: relative
    }

    .about-img {
      width: 100%;
      height: 480px;
      border-radius: var(--r);
      overflow: hidden;
      background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
      position: relative;
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .85;
      mix-blend-mode: overlay
    }

    .about-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(69, 38, 89, .7), rgba(140, 54, 89, .4));
      display: flex;
      align-items: flex-end;
      padding: 36px;
    }

    .about-img-badge {
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--r-sm);
      padding: 20px 24px;
    }

    .aib-num {
      font-family: var(--font-serif);
      font-size: 2.4rem;
      color: var(--white);
      line-height: 1
    }

    .aib-label {
      font-size: .72rem;
      color: rgba(255, 255, 255, .65);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-top: 4px
    }

    .about-deco {
      position: absolute;
      top: -20px;
      right: -20px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: rgba(140, 54, 89, .15);
      border: 1px solid rgba(140, 54, 89, .2);
      animation: spin 20s linear infinite;
    }

    .about-deco::after {
      content: '';
      position: absolute;
      top: 12px;
      left: 12px;
      right: 12px;
      bottom: 12px;
      border-radius: 50%;
      border: 1px dashed rgba(140, 54, 89, .3)
    }

    @keyframes spin {
      to {
        transform: rotate(360deg)
      }
    }

    .about-checks {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 28px
    }

    .about-checks li {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      font-size: .9rem;
      color: var(--text-s);
      line-height: 1.6
    }

    .chk {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple), var(--pink));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .65rem;
      color: var(--white);
      flex-shrink: 0;
      margin-top: 1px
    }

    /* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
    #services {
      background: var(--white);
    }

    .services-hd {
      text-align: center;
      max-width: 580px;
      margin: 0 auto 64px
    }

    /* Desktop grid */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

    .svc-feat {
      grid-column: span 3;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 36px;
      padding: 40px 48px;
      background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%);
   

    }

    .svc-card {
      border-radius: var(--r);
      padding: 34px 28px;
      border: 1px solid var(--border);
       background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%);
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .svc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
       background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%);
      opacity: 0;
      
    }

    .svc-ico-wrap {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      /* background: rgba(69, 38, 89, .08); */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      transition: all var(--t) var(--ease)
    }

    .svc-name {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      color: var(--white);
      margin-bottom: 10px;
      font-weight: 600
    }

    .svc-desc {
      font-size: .83rem;
      color: var(--white);
      line-height: 1.75
    }

    /* Featured card */
    .svc-feat {
      border-radius: var(--r);
      border: none;
      overflow: hidden;
      position: relative
    }

    .svc-feat::after {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .04)
      
    }

    .svc-feat .svc-name,
    .svc-feat .svc-desc {
      color: var(--white)
    }

    .svc-feat .svc-desc {
      opacity: .82
    }

    .svc-feat-ico {
      width: 72px;
      height: 72px;
      background: rgba(255, 255, 255, .12);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.2rem;
      flex-shrink: 0
    }

    .svc-feat-badge {
      background: rgba(255, 255, 255, .14);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 50px;
      padding: 10px 22px;
      font-size: .76rem;
      font-weight: 700;
      color: var(--white);
      white-space: nowrap;
      letter-spacing: .06em
    }

    /* Mobile scroll carousel */
    .svc-scroll {
      display: none;
      overflow-x: auto;
      gap: 18px;
      padding-bottom: 18px;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      scrollbar-width: none
    }

    .svc-scroll::-webkit-scrollbar {
      display: none
    }

    .svc-scroll-card {
      min-width: 260px;
      max-width: 275px;
      flex-shrink: 0;
      scroll-snap-align: start;
      background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%);
      border-radius: var(--r);
      padding: 28px 24px;
      border: 1px solid var(--border)
    }

    .svc-scroll-feat {
      min-width: 300px;
      max-width: 320px;
      flex-shrink: 0;
      scroll-snap-align: start;
      background: linear-gradient(135deg, var(--purple), var(--pink));
      border-radius: var(--r);
      padding: 28px 24px
    }

    .svc-scroll-feat .svc-name,
    .svc-scroll-feat .svc-desc {
      color: var(--white)
    }

    .svc-scroll-feat .svc-desc {
      opacity: .82
    }

    .svc-scroll-feat .svc-ico-wrap {
      background: rgba(255, 255, 255, .15);
      
    }

    /* ═══════════════════════════════════════════
   RECRUITMENT PROCESS — INTERACTIVE NODES
═══════════════════════════════════════════ */
    #process {
      background: var(--bg);
      overflow: hidden;
      position: relative
    }

    .process-hd {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 80px;
      position: relative;
      z-index: 2
    }

    /* Floating ambient orbs */
    .proc-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      animation: orbFloat var(--dur, 8s) ease-in-out infinite
    }

    .proc-orb-1 {
      width: 400px;
      height: 400px;
      background: rgba(69, 38, 89, .12);
      top: -100px;
      right: -150px;
      --dur: 9s
    }

    .proc-orb-2 {
      width: 300px;
      height: 300px;
      background: rgba(140, 54, 89, .1);
      bottom: -80px;
      left: -100px;
      --dur: 11s;
      animation-delay: -4s
    }

    @keyframes orbFloat {

      0%,
      100% {
        transform: translateY(0) scale(1)
      }

      50% {
        transform: translateY(-30px) scale(1.05)
      }
    }

    /* SVG canvas for animated lines */
    .proc-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1
    }

    /* Node grid */
    .proc-nodes {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      align-items: center;
    }

    .proc-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 12px;
      position: relative;
      cursor: pointer;
    }

    /* Connector dots between nodes */
    .proc-node:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 48px;
      right: -12px;
      width: 24px;
      height: 2px;
      background: linear-gradient(90deg, rgba(69, 38, 89, .2), rgba(140, 54, 89, .4));
      z-index: 3;
    }

    .proc-orb-ring {
      position: relative;
      width: 96px;
      height: 96px;
      margin-bottom: 22px;
    }

    .proc-orb-outer {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1.5px solid rgba(140, 54, 89, .2);
      animation: ringPulse 3s ease-in-out infinite;
      animation-delay: var(--delay, 0s);
    }

    .proc-orb-mid {
      position: absolute;
      inset: 10px;
      border-radius: 50%;
      border: 1px dashed rgba(69, 38, 89, .15);
      animation: ringPulse 3s ease-in-out infinite reverse;
      animation-delay: var(--delay, 0s);
    }

    @keyframes ringPulse {

      0%,
      100% {
        transform: scale(1);
        opacity: .6
      }

      50% {
        transform: scale(1.08);
        opacity: 1
      }
    }

    .proc-bubble {
      position: absolute;
      inset: 18px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: var(--sh);
      transition: all .4s var(--ease);
    }

    .proc-node:hover .proc-bubble {
      background: linear-gradient(135deg, var(--purple), var(--pink));
      border-color: transparent;
      box-shadow: 0 0 0 8px rgba(140, 54, 89, .12), var(--sh-lg);
      transform: scale(1.08);
    }

    .proc-node:hover .proc-bubble-emoji {
      filter: brightness(100)
    }

    .proc-step-num {
      position: absolute;
      top: -4px;
      right: -4px;
      width: 22px;
      height: 22px;
      background: var(--pink);
      border-radius: 50%;
      font-size: .6rem;
      font-weight: 800;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 4;
      box-shadow: 0 2px 8px var(--glow);
    }

    .proc-label {
      font-weight: 700;
      font-size: .85rem;
      color: var(--purple);
      margin-bottom: 8px;
      transition: color var(--t)
    }

    .proc-desc {
      font-size: .75rem;
      color: var(--text-s);
      line-height: 1.65;
      max-width: 130px
    }

    .proc-node:hover .proc-label {
      color: var(--pink)
    }

    /* Active connector glow line */
    .proc-line-glow {
      stroke: url(#lineGrad);
      stroke-width: 2;
      fill: none;
      stroke-dasharray: 8 6;
      animation: dashFlow 2s linear infinite;
    }

    @keyframes dashFlow {
      to {
        stroke-dashoffset: -28
      }
    }

    /* Mobile process (stacked) */
    .proc-mobile {
      display: none;
      flex-direction: column;
      gap: 14px;
      position: relative;
      z-index: 2
    }

    .proc-m-step {
      background: var(--white);
      border-radius: var(--r-sm);
      padding: 22px 24px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      border: 1px solid var(--border);
      transition: all var(--t);
    }

    .proc-m-step:hover {
      border-color: var(--border-m);
      box-shadow: var(--sh);
      transform: translateX(4px)
    }

    .proc-m-bubble {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--purple), var(--pink));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }

    .proc-m-title {
      font-weight: 700;
      font-size: .9rem;
      color: var(--purple);
      margin-bottom: 5px
    }

    .proc-m-desc {
      font-size: .8rem;
      color: var(--text-s);
      line-height: 1.65
    }

    /* ═══════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════ */
    #industries {
      background: var(--white)
    }

    .ind-hd {
      text-align: center;
      max-width: 520px;
      margin: 0 auto 56px
    }

    .ind-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px
    }

    .ind-card {
      background: var(--bg);
      border-radius: var(--r);
      padding: 36px 20px 28px;
      text-align: center;
      border: 1px solid var(--border);
      transition: all var(--t) var(--ease);
      position: relative;
      overflow: hidden;
    }

    .ind-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--r);
      background: linear-gradient(135deg, var(--purple), var(--pink));
      opacity: 0;
      transition: opacity var(--t);
    }

    .ind-card:hover::before {
      opacity: 1
    }

    .ind-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--sh-glow);
      border-color: transparent
    }

    .ind-card:hover .ind-ico,
    .ind-card:hover .ind-name {
      position: relative;
      z-index: 1
    }

    .ind-card:hover .ind-name {
      color: var(--white)
    }

    .ind-ico {
      font-size: 2.4rem;
      margin-bottom: 16px;
      transition: transform var(--t)
    }

    .ind-card:hover .ind-ico {
      transform: scale(1.15)
    }

    .ind-name {
      font-size: .85rem;
      font-weight: 700;
      color: var(--purple);
      letter-spacing: .03em;
      transition: color var(--t);
      position: relative;
      z-index: 1
    }

    /* ═══════════════════════════════════════════
   VISION & MISSION
═══════════════════════════════════════════ */
    #vismis {
      background: var(--bg)
    }

    .vm-hd {
      text-align: center;
      margin-bottom: 56px
    }

    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px
    }

    .vm-card {
      border-radius: var(--r);
      padding: 52px 44px;
      position: relative;
      overflow: hidden
    }

    .vm-vision {
      background: linear-gradient(140deg, var(--purple-d) 0%, var(--purple) 50%, rgba(140, 54, 89, .8) 100%)
    }

    .vm-mission {
      background: var(--white);
      border: 1px solid var(--border)
    }

    .vm-deco {
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .06);
      pointer-events: none
    }

    .vm-deco::after {
      content: '';
      position: absolute;
      top: 30px;
      left: 30px;
      right: 30px;
      bottom: 30px;
      border-radius: 50%;
      border: 1px dashed rgba(255, 255, 255, .04)
    }

    .vm-ico {
      font-size: 2.4rem;
      margin-bottom: 20px
    }

    .vm-eyebrow {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 12px
    }

    .vm-vision .vm-eyebrow {
      color: rgba(255, 255, 255, .5)
    }

    .vm-mission .vm-eyebrow {
      color: var(--muted)
    }

    .vm-title {
      font-family: var(--font-serif);
      font-size: 2.1rem;
      line-height: 1.15;
      margin-bottom: 18px
    }

    .vm-vision .vm-title {
      color: var(--white)
    }

    .vm-mission .vm-title {
      color: var(--purple)
    }

    .vm-text {
      font-size: .88rem;
      line-height: 1.85
    }

    .vm-vision .vm-text {
      color: rgba(255, 255, 255, .72)
    }

    .vm-mission .vm-text {
      color: var(--text-s)
    }

    /* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
    #contact {
      background: var(--white)
    }

    .contact-hd {
      text-align: center;
      max-width: 500px;
      margin: 0 auto 60px
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start
    }

    /* Map */
    .map-wrap {
      border-radius: var(--r);
      overflow: hidden;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
    }

    .map-embed {
      width: 100%;
      height: 320px;
      border: none;
      display: block;
      filter: grayscale(20%) contrast(1.05);
    }

    .map-footer {
      padding: 22px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap
    }

    .map-addr {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .map-addr-ico {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(69, 38, 89, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0
    }

    .map-addr-txt {
      font-size: .8rem;
      color: var(--text-s);
      line-height: 1.5
    }

    .map-addr-txt strong {
      display: block;
      font-size: .85rem;
      color: var(--text);
      margin-bottom: 2px
    }

    /* Form */
    .form-wrap {
      background: var(--bg);
      border-radius: var(--r);
      padding: 44px 40px;
      border: 1px solid var(--border)
    }

    .form-wrap h3 {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      color: var(--purple);
      margin-bottom: 28px
    }

    .frow {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 16px
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 7px
    }

    .fl {
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--text-s)
    }

    .fi,
    .fsel,
    .fta {
      padding: 13px 17px;
      border: 1.5px solid var(--border);
      border-radius: var(--r-xs);
      font-family: var(--font-sans);
      font-size: .85rem;
      color: var(--text);
      background: var(--white);
      outline: none;
      transition: border-color var(--t), box-shadow var(--t);
      width: 100%;
    }

    .fi:focus,
    .fsel:focus,
    .fta:focus {
      border-color: var(--purple);
      box-shadow: 0 0 0 3px rgba(69, 38, 89, .08)
    }

    .fta {
      resize: vertical;
      min-height: 115px
    }

    .fg-full {
      margin-bottom: 22px
    }

    .form-msg {
      display: none;
      margin-top: 16px;
      padding: 14px 20px;
      background: rgba(16, 185, 129, .07);
      border: 1px solid rgba(16, 185, 129, .2);
      border-radius: var(--r-xs);
      color: #059669;
      font-size: .85rem;
      font-weight: 600;
      text-align: center;
    }

    /* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
    footer {
      background: var(--purple-d);
      color: var(--white);
      padding: 72px 0 0
    }

    .ft-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 56px
    }

    .ft-logo {
      font-family: var(--font-serif);
      font-size: 1.35rem;
      margin-bottom: 14px;
      font-style: italic
    }

    .ft-desc {
      font-size: .82rem;
      opacity: .65;
      line-height: 1.8;
      max-width: 260px
    }

    .ft-col-h {
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      opacity: .45;
      margin-bottom: 20px
    }

    .ft-links li+li {
      margin-top: 12px
    }

    .ft-links a {
      font-size: .82rem;
      opacity: .65;
      transition: opacity var(--t)
    }

    .ft-links a:hover {
      opacity: 1
    }

    .ft-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .75rem;
      opacity: .5;
      flex-wrap: wrap;
      gap: 12px
    }

    .ft-bottom a {
      opacity: 1;
      transition: opacity var(--t)
    }

    .ft-bottom a:hover {
      opacity: .75
    }

    .ft-bottom-links {
      display: flex;
      gap: 20px
    }

    /* WhatsApp */
    #wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 800;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 4px 24px rgba(37, 211, 102, .45);
      transition: all var(--t) var(--ease);
    }

    #wa:hover {
      transform: scale(1.12);
      box-shadow: 0 8px 32px rgba(37, 211, 102, .55)
    }

    /* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
    .rv,
    .rv-l,
    .rv-r {
      opacity: 0;
      transition: opacity .7s var(--ease), transform .7s var(--ease)
    }

    .rv {
      transform: translateY(30px)
    }

    .rv-l {
      transform: translateX(-30px)
    }

    .rv-r {
      transform: translateX(30px)
    }

    .rv.on,
    .rv-l.on,
    .rv-r.on {
      opacity: 1;
      transform: none
    }

    .d1 {
      transition-delay: .0s
    }

    .d2 {
      transition-delay: .09s
    }

    .d3 {
      transition-delay: .18s
    }

    .d4 {
      transition-delay: .27s
    }

    .d5 {
      transition-delay: .36s
    }

    /* ═══════════════════════════════════════════
   DIVIDERS
═══════════════════════════════════════════ */
    .sec-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-m), transparent);
      margin: 0 auto;
      max-width: 800px
    }

    /* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
    @media(max-width:1024px) {
      .svc-grid {
        grid-template-columns: 1fr 1fr
      }

      .svc-feat {
        grid-column: span 2;
        grid-template-columns: auto 1fr;
        gap: 24px
      }

      .svc-feat .svc-feat-badge {
        display: none
      }

      .ind-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px
      }
    }

    @media(max-width:900px) {
      :root {
        --nav: 66px
      }

      .hero-body {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 120px 28px 80px
      }

      .hero-right {
        display: none
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px
      }

      .about-img {
        height: 340px
      }

      .proc-nodes {
        display: none
      }

      .proc-mobile {
        display: flex
      }

      .vm-grid {
        grid-template-columns: 1fr
      }

      .contact-grid {
        grid-template-columns: 1fr
      }

      section {
        padding: 80px 0
      }
    }

    @media(max-width:768px) {

      .nav-links,
      .nav-cta {
        display: none
      }

      .hbtn {
        display: flex
      }

      .svc-grid {
        display: none
      }

      .svc-scroll {
        display: flex
      }

      .ind-grid {
        grid-template-columns: 1fr 1fr
      }

      .frow {
        grid-template-columns: 1fr
      }

      .hero-h1 {
        font-size: 2.4rem
      }

      section {
        padding: 72px 0
      }
    }

    @media(max-width:540px) {
      .hero-h1 {
        font-size: 2rem
      }

      h2.sec-ttl {
        font-size: 2rem
      }

      .vm-card {
        padding: 36px 28px
      }

      .form-wrap {
        padding: 32px 24px
      }

      .map-footer {
        flex-direction: column;
        align-items: flex-start
      }

      .ind-grid {
        grid-template-columns: 1fr 1fr
      }

      .ft-grid {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .ft-bottom {
        flex-direction: column;
        align-items: flex-start
      }

      .hero-btns {
        flex-direction: column
      }

      .hero-btns .btn {
        justify-content: center
      }
    }

    @media(max-width:380px) {
      .ind-grid {
        grid-template-columns: 1fr
      }
    }
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(160deg, #cce8f8 0%, #ddf0fb 40%, #eaf4ff 70%, #f5f0ff 100%);
    min-height: 100vh;
    padding-bottom: 48px;
  }

  /* ── NAV ── */
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255,255,255,0.5);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 15px;
    color: #222;
  }
  .logo svg { width: 22px; height: 22px; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; }

  /* ── HERO ── */
  .hero {
    text-align: center;
    padding: 40px 28px 28px;
  }
  .hero h1 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    letter-spacing: -0.3px;
  }
  .hero p {
    font-size: 13px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
  }

  /* ── SECTION LABEL ── */
  .section-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    margin: 28px 0 20px;
  }

  /* ── ICON ROWS ── */
  .icons-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 0 16px;
    flex-wrap: wrap;
    margin-bottom: 4px;
  }
  .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 64px;
  }
  .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .icon-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.11);
  }
  .icon-box svg { width: 30px; height: 30px; }

  .names-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 10px 16px 0;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .name-item {
    width: 64px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
  }

  /* ── DIVIDER ── */
  .sec-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #5da8e0, #b28cf5);
    border-radius: 4px;
    margin: 8px auto 32px;
  }

  /* ── VM CARDS ── */
  .vm-grid {
    display: grid;
    flex-direction: column;
    gap: 16px;
    padding: 25px 18px;
  }
  .vm-card {
    border-radius: 20px;
    padding: 24px 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
  }
  .vm-vision {
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(221,240,251,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.9);
  }
  .vm-mission {
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(245,240,255,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.9);
  }

  /* decorative blob */
  .vm-card::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    top: -40px;
    right: -30px;
    opacity: 0.18;
  }
  .vm-vision::before { background: #5da8e0; }
  .vm-mission::before { background: #b28cf5; }

  .vm-ico-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 24px;
  }
  .vm-vision .vm-ico-wrap { background: rgba(93,168,224,0.15); }
  .vm-mission .vm-ico-wrap { background: rgba(178,140,245,0.15); }

  .vm-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .vm-vision .vm-eyebrow { color: #3a8ec4; }
  .vm-mission .vm-eyebrow { color: #8a5ce0; }

  .vm-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .vm-card-text {
    font-size: 13px;
    color: #444;
    line-height: 1.65;
  }
  .social-icons{
  display:flex;
  gap:14px;
  margin-top:20px;
}

.social-icons a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:18px;
  text-decoration:none;
  transition:0.4s ease;
  border:1px solid rgba(255,255,255,0.12);
}

.social-icons a:hover{
  transform:translateY(-5px) scale(1.08);
  background:#ffffff;
  color:#111;
  box-shadow:0 10px 25px rgba(255,255,255,0.18);
}