
:root {
    --bg: #f5f7fa;
    --bg2: #eef1f6;
    --bg3: #e8ecf3;
    --accent: #1a2640;
    --accent-light: #243352;
    --accent-xlight: rgba(26,38,64,0.08);
    --card: #ffffff;
    --text: #1a2640;
    --muted: #5a6a82;
    --border: #dce3ef;
    --white: #ffffff;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.6; }

  /* SQUARE GRID TEXTURE */
  .grid-texture {
    background-color: var(--bg);
    background-image:
      linear-gradient(rgba(26,38,64,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,38,64,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .grid-texture-dark {
    background-color: var(--accent);
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 70px;
    box-shadow: 0 1px 12px rgba(26,38,64,0.07);
  }
  .nav-logo img { height: 44px; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    background: var(--accent); color: #fff;
    padding: 10px 22px; border-radius: 6px;
    font-weight: 700; font-size: 14px; text-decoration: none;
    transition: background .2s;
  }
  .nav-cta:hover { background: var(--accent-light); }

  /* ── HERO ── */
 .hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 72px 5% 60px;
  gap: 60px;
  position: relative;
  overflow: hidden;

  background-color: #fff;
  background-image:
    radial-gradient(circle at 78% 42%, rgba(26, 38, 64, 0.22) 0%, rgba(26, 38, 64, 0.10) 28%, transparent 55%),
    radial-gradient(circle at 92% 20%, rgba(37, 99, 235, 0.16) 0%, transparent 35%),
    linear-gradient(rgba(26,38,64,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,38,64,0.055) 1px, transparent 1px);
  background-size: auto, auto, 40px 40px, 40px 40px;
}

  .marketplace-float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.marketplace-float-icons img {
  position: absolute;
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 9px;
  box-shadow: 0 10px 30px rgba(26,38,64,0.14);
  animation: floatIcon 5s ease-in-out infinite;
}

.marketplace-float-icons img:nth-child(1) { top: 10%; left: 8%; animation-delay: 0s; }
.marketplace-float-icons img:nth-child(2) { top: 18%; right: 12%; animation-delay: .8s; }
.marketplace-float-icons img:nth-child(3) { bottom: 20%; left: 10%; animation-delay: 1.4s; }
.marketplace-float-icons img:nth-child(4) { bottom: 14%; right: 16%; animation-delay: 2s; }
.marketplace-float-icons img:nth-child(5) { top: 46%; right: 5%; animation-delay: 2.6s; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
  /* soft radial wash so text stays readable */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 70% at 20% 50%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.6) 55%, transparent 100%);
    pointer-events: none;
  }
  .hero-left { flex: 1; max-width: 560px; position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-xlight); border: 1px solid rgba(26,38,64,0.2);
    color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 800; line-height: 1.1;
    color: var(--accent); margin-bottom: 18px;
  }
  .hero h1 span { color: #2563eb; }
  .hero p { font-size: 17px; color: var(--muted); margin-bottom: 34px; max-width: 460px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
  .btn-primary {
    background: var(--accent); color: #fff;
    padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px;
    text-decoration: none; transition: all .2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,38,64,0.25); }
  .btn-outline {
    border: 1.5px solid var(--border); color: var(--text);
    padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 15px;
    text-decoration: none; transition: all .2s; display: inline-block; background: #fff;
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
  .hero-trust { display: flex; align-items: center; gap: 12px; }
  .stars { color: #f59e0b; font-size: 17px; letter-spacing: 1px; }
  .trust-text { font-size: 13px; color: var(--muted); }
  .trust-text strong { color: var(--text); }

  /* right panel */
  .hero-right {
    flex: 1; display: flex; justify-content: center; align-items: center;
    position: relative; z-index: 1;
  }
 .hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 680px;
}
 .hero-img-card {
    background: var(--accent);
    background-image:
      linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    border-radius: 30px;
    padding: 55px;
    min-height: 480px;
    box-shadow: 0 20px 60px rgba(26,38,64,0.25);
    position: relative;
    overflow: hidden;
}
  .hero-img-card::after {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  }
  .hero-card-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
  .hero-card-title { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.3; }
  .hero-card-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
  .platform-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .ptag {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600;
    padding: 5px 12px; border-radius: 100px; transition: all .2s;
  }
  .ptag:hover { background: rgba(255,255,255,0.2); color: #fff; }
  /* floating stat chips */
  .float-chip {
    position: absolute; background: #fff;
    border-radius: 12px; padding: 10px 16px;
    box-shadow: 0 8px 24px rgba(26,38,64,0.15);
    display: flex; align-items: center; gap: 10px;
  }
  .float-chip .chip-num { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--accent); }
  .float-chip .chip-lbl { font-size: 11px; color: var(--muted); }
  .chip-1 { top: -18px; left: -24px; }
  .chip-2 { bottom: -18px; right: -24px; }

  /* STATS BAR */
  .stats-bar {
    background: var(--accent);
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 36px 5%;
  }
  .stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
  .stat-item { text-align: center; }
  .stat-num { font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800; color: #fff; }
  .stat-label { font-size: 13px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

  /* BRANDS */
  .brands-section { padding: 36px 5%; background: var(--bg2); border-bottom: 1px solid var(--border); overflow: hidden; }
  .brands-label { text-align: center; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 22px; }
  .platform-logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; justify-content: center; }
.platform-logos img{
    height: 38px;
    opacity: 1;
    transition: all .35s ease;
    cursor: pointer;
}
  .platform-logos img {
  height: 38px;
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

  /* SECTIONS */
  section { padding: 80px 5%; }
  .section-eyebrow { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700; margin-bottom: 10px; }
  .section-title { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: var(--accent); line-height: 1.15; margin-bottom: 14px; }
  .section-sub { font-size: 16px; color: var(--muted); max-width: 600px; }

  /* ABOUT */
  .about { background: var(--bg2); }
  .about-inner { display: flex; gap: 64px; align-items: center; flex-wrap: wrap; }
  .about-left { flex: 1; min-width: 300px; }
  .about-right { flex: 1; min-width: 300px; }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
  .feat-item {
    background: var(--card); border: 1px solid var(--border); border-radius: 12px;
    padding: 18px; display: flex; gap: 12px; align-items: flex-start;
    transition: border-color .2s, box-shadow .2s;
  }
  .feat-item:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(26,38,64,0.1); }
  .feat-icon { width: 36px; height: 36px; background: var(--accent-xlight); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
  .feat-text { font-size: 13px; color: var(--text); font-weight: 600; line-height: 1.4; }
  .about-quote-card {
    background: var(--accent);
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    border-radius: 20px; padding: 36px;
    box-shadow: 0 12px 40px rgba(26,38,64,0.2);
  }
  .about-quote { font-size: 19px; font-weight: 700; color: #fff; line-height: 1.5; margin-bottom: 28px; }
  .about-quote span { color: rgba(255,255,255,0.65); }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 48px; }
  .service-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 28px; transition: all .2s; text-decoration: none; color: inherit; display: block;
  }
  .service-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,38,64,0.12); }
  .service-card-icon { font-size: 30px; margin-bottom: 14px; }
  .service-card h3 { font-size: 17px; font-weight: 700; color: var(--accent); margin-bottom: 9px; }
  .service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .service-card .learn-more { color: var(--accent); font-size: 13px; font-weight: 700; margin-top: 16px; display: inline-flex; align-items: center; gap: 4px; }

  /* OMS */
  .oms { background: var(--bg2); }
  .oms-inner { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
  .oms-left { flex: 1; min-width: 280px; }
  .oms-right { flex: 1.2; min-width: 280px; }
  .oms-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
  .oms-feat {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; padding: 18px; transition: border-color .2s;
  }
  .oms-feat:hover { border-color: var(--accent); }
  .oms-num { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--accent); opacity: 0.25; width: 36px; flex-shrink: 0; }
  .oms-feat-text h4 { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 3px; }
  .oms-feat-text p { font-size: 13px; color: var(--muted); }
  .oms-visual {
    background: var(--accent);
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    border-radius: 20px; padding: 28px;
    box-shadow: 0 16px 48px rgba(26,38,64,0.2);
  }
  .dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
  .dash-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
  .dash-live { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
  .dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
  .dash-stat { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 14px; }
  .dash-stat-n { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; }
  .dash-stat-l { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
  .dash-orders { display: flex; flex-direction: column; gap: 8px; }
  .dash-order { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.07); border-radius: 8px; padding: 10px 14px; }
  .dash-order-id { font-size: 12px; color: rgba(255,255,255,0.6); }
  .dash-status { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
  .s-done { background: rgba(34,197,94,0.2); color: #4ade80; }
  .s-ship { background: rgba(99,150,255,0.2); color: #93b4ff; }
  .s-proc { background: rgba(251,191,36,0.2); color: #fde68a; }

  /* CLIENTS */
  .clients-grid { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; justify-content: center; }
  .client-logo {
    background: var(--card); border: 1.5px solid var(--border); border-radius: 12px;
    padding: 18px 30px; font-size: 14px; font-weight: 700; color: var(--muted);
    transition: all .2s; min-width: 140px; text-align: center;
  }
  .client-logo:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 4px 16px rgba(26,38,64,0.1); }

  /* WHY */
  .why { background: var(--bg2); }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 48px; }
  .why-item {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 26px; text-align: center; transition: all .2s;
  }
  .why-item:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(26,38,64,0.1); }
  .why-icon { font-size: 34px; margin-bottom: 14px; }
  .why-item h3 { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 7px; }
  .why-item p { font-size: 13px; color: var(--muted); }

  /* FAQ */
  .faq-list { max-width: 760px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
  .faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .faq-q {
    width: 100%; text-align: left; padding: 18px 22px; cursor: pointer;
    background: none; border: none; color: var(--accent); font-size: 15px; font-weight: 600;
    display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit;
  }
  .faq-q .arrow { color: var(--accent); font-size: 20px; transition: transform .2s; flex-shrink: 0; }
  .faq-q.open .arrow { transform: rotate(45deg); }
  .faq-a { padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; display: none; }
  .faq-a.open { display: block; }

  /* CONTACT */
  .contact { background: var(--bg3); }
  .contact-inner { display: flex; gap: 60px; flex-wrap: wrap; }
  .contact-left { flex: 1; min-width: 280px; }
  .contact-right { flex: 1; min-width: 280px; }
  .contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
  .contact-info-icon { width: 40px; height: 40px; background: var(--accent-xlight); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .contact-info-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
  .contact-info-val { font-size: 14px; color: var(--text); font-weight: 600; }
  .contact-form { display: flex; flex-direction: column; gap: 14px; }
  .contact-form input, .contact-form textarea {
    background: var(--white); border: 1.5px solid var(--border); border-radius: 10px;
    padding: 13px 16px; color: var(--text); font-size: 14px; font-family: inherit;
    outline: none; transition: border-color .2s; width: 100%;
  }
  .contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
  .contact-form textarea { min-height: 110px; resize: vertical; }
  .contact-form button {
    background: var(--accent); color: #fff; border: none; border-radius: 10px;
    padding: 14px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit;
    transition: background .2s;
  }
  .contact-form button:hover { background: var(--accent-light); }

  /* FOOTER */
  footer {
    background: var(--accent);
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 56px 5% 32px;
  }
  .footer-top { display: flex; gap: 56px; flex-wrap: wrap; margin-bottom: 40px; }
  .footer-brand { flex: 1.5; min-width: 220px; }
  .footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(10); }
  .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 300px; line-height: 1.7; }
  .footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
    background:rgba(255,255,255,.08);
}

.instagram{
    color:#E4405F;
}

.linkedin{
    color:#0A66C2;
}

.youtube{
    color:#FF0000;
}

.whatsapp{
    color:#25D366;
}

.social-btn:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.15);
}
  .footer-col { flex: 1; min-width: 150px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color .2s; }
  .footer-col ul li a:hover { color: #fff; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
  .footer-legal { display: flex; gap: 20px; }
  .footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; transition: color .2s; }
  .footer-legal a:hover { color: #fff; }

  /* WHATSAPP */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 54px; height: 54px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; font-size: 26px;
    transition: transform .2s;
  }
  .wa-float:hover { transform: scale(1.1); }

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }

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

@media (max-width: 768px) {
  .hero-banner-card {
    min-height: 520px;
    max-width: 100%;
  }

  .dashboard-mockup {
    left: 25px;
    top: 80px;
    width: 220px;
  }

  .hero-phone {
    right: 25px;
    top: 240px;
    width: 180px;
    height: 260px;
  }
}

.dashboard-mockup.image-box {
  z-index: 5;
}

.premium-hero-visual::before{
    content:'';
    position:absolute;
    width:650px;
    height:650px;
    border:2px solid rgba(26,38,64,.08);
    border-radius:50%;
    right:50px;
    top:-40px;
    z-index:-1;
}

.premium-hero-visual::after{
    content:'';
    position:absolute;
    width:520px;
    height:520px;
    border:2px dashed rgba(26,38,64,.08);
    border-radius:50%;
    right:115px;
    top:25px;
    z-index:-1;
}

.hero-main-image {
  position: absolute;
  right: 20px;
  top: 80px;
  width: 560px;
  height: 360px;
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
0 35px 100px rgba(26,38,64,.18),
0 0 120px rgba(26,38,64,.22);
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 45px rgba(26,38,64,0.16);
   z-index: 20 !important;
}

.stat-card span {
  width: 44px;
  height: 44px;
  background: #1a2640;
  color: #fff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card strong {
  font-size: 28px;
  color: #1a2640;
  line-height: 1;
}

.stat-card p {
  font-size: 12px;
  color: #5a6a82;
  margin: 4px 0 0;
}

.stat-growth {
  left: 20px;
  top: 55px;
}

.stat-sellers {
  right: -25px;
  top: 245px;
}

.floating-market-icons img {
  position: absolute;
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 14px 35px rgba(26,38,64,0.15);
  z-index: 30 !important;
  animation: floatIcon 4s ease-in-out infinite;
}

.floating-market-icons img:nth-child(1) {
  left: 155px;
  top: 130px;
}

.floating-market-icons img:nth-child(2) {
  left: 250px;
  top: 95px;
  animation-delay: .8s;
}

.floating-market-icons img:nth-child(3) {
  right: 105px;
  top: 90px;
  animation-delay: 1.4s;
}

.market-strip {
  position: absolute;
  left: 95px;
  bottom: 35px;
  background: #1a2640;
  color: #fff;
  border-radius: 18px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 18px 40px rgba(26,38,64,0.22);
   z-index: 25 !important;
}

.market-strip img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

.market-strip strong {
  font-size: 13px;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }

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

.hero::after{
    content:'';
    position:absolute;
    right:-250px;
    top:-150px;
    width:1100px;
    height:1100px;
    border-radius:50%;

   background:
radial-gradient(
    circle,
    rgba(26,38,64,0.65) 0%,
    rgba(26,38,64,0.45) 20%,
    rgba(26,38,64,0.25) 40%,
    rgba(26,38,64,0.10) 60%,
    transparent 80%
);
    filter: blur(80px);
    z-index:0;
    pointer-events:none;
}

.hero-left,
.hero-right{
    position:relative;
    z-index:2;
}
.hero-right {
  justify-content: center;
}

.premium-hero-visual {
  position: relative;
  width: 620px;
  height: 430px;
  transform: translateX(-20px);
}

.hero-main-image {
  position: absolute;
  right: 20px;
  top: 70px;
  width: 520px;
  height: 330px;
  border-radius: 36px;
  
}

.stat-growth {
  left: 40px;
  top: 35px;
}

.stat-sellers {
  right: -5px;
  top: 215px;
}

.market-strip {
  left: 110px;
  bottom: 15px;
}

.floating-market-icons img:nth-child(1) {
  left: 135px;
  top: 105px;
}

.floating-market-icons img:nth-child(2) {
  left: 235px;
  top: 75px;
}

.floating-market-icons img:nth-child(3) {
  right: 80px;
  top: 75px;
}

.hero-bg-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-icons img {
  position: absolute;
  width: 62px;
  height: 62px;
  object-fit: contain;
  background: rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 10px;
  opacity: 0.22;
filter: blur(1.5px);
transform: scale(0.95);
  box-shadow: 0 20px 50px rgba(26,38,64,0.12);
  animation: bgFloat 7s ease-in-out infinite;
}

/* Amazon - circle ke left bahar */
.hero-bg-icons img:nth-child(1) {
  left: 53%;
  top: 52%;
}

/* Myntra - circle ke upper left */
.hero-bg-icons img:nth-child(2) {
  left: 58%;
  top: 8%;
  animation-delay: 1s;
}

/* Nykaa - circle ke right side */
.hero-bg-icons img:nth-child(3) {
  right: 6%;
  top: 52%;
  animation-delay: 2s;
}

/* Ajio - circle ke bottom side */
.hero-bg-icons img:nth-child(4) {
  right: 14%;
  bottom: 8%;
  animation-delay: 3s;
}

@keyframes bgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}
.hero-left,
.hero-right {
  position: relative;
  z-index: 5;
}

.hero-main-image {
  background: #fff;
  overflow: hidden;
   z-index: 2 !important;
}

.hero-main-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.hero-right {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 10 !important;
}

.premium-hero-visual {
  display: block !important;
  position: relative !important;
  width: 620px !important;
  height: 430px !important;
  z-index: 20 !important;
  overflow: visible !important;
}

.hero-main-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.premium-hero-visual {
  position: relative !important;
  width: 620px !important;
  height: 430px !important;
  overflow: visible !important;
}

.hero-main-image {
  display: block !important;
  position: absolute !important;
  right: 20px !important;
  top: 70px !important;
  width: 520px !important;
  height: 330px !important;
  background: #fff !important;
  border-radius: 36px !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.hero-main-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.stat-card {
  z-index: 50 !important;
}

.market-strip {
  z-index: 60 !important;
}

.floating-market-icons img {
  z-index: 70 !important;
}

.directors-section {
  background: var(--bg2);
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.director-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 16px 45px rgba(26,38,64,0.08);
  transition: all .3s ease;
}

.director-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(26,38,64,0.14);
  border-color: var(--accent);
}

.director-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 5px solid rgba(26,38,64,0.08);
}

.director-card h3 {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 4px;
}

.director-card span {
  display: block;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.director-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .directors-grid {
    grid-template-columns: 1fr;
  }
}
.why {
  padding-bottom: 90px !important;
}

.directors-section {
  background: #ffffff !important;
  padding: 100px 5% !important;
  margin-top: 0 !important;
  border-top: 1px solid #dce3ef;
  position: relative;
  z-index: 10;
  clear: both;
}

.directors-section .section-title {
  margin-bottom: 16px;
}

.directors-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 55px !important;
}

.director-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 16px 45px rgba(26,38,64,0.08);
}

@media (max-width: 768px) {
  .directors-grid {
    grid-template-columns: 1fr;
  }
}
/* HERO LOAD ANIMATION */
.hero-left .hero-badge,
.hero-left h1,
.hero-left p,
.hero-btns,
.hero-trust,
.premium-hero-visual {
  opacity: 0;
}

body.hero-loaded .hero-badge {
  animation: slideDownFade .7s ease forwards;
}

body.hero-loaded .hero-left h1 {
  animation: slideLeftFade .9s ease forwards;
  animation-delay: .15s;
}

body.hero-loaded .hero-left p {
  animation: slideLeftFade .8s ease forwards;
  animation-delay: .35s;
}

body.hero-loaded .hero-btns {
  animation: slideUpFade .8s ease forwards;
  animation-delay: .55s;
}

body.hero-loaded .hero-trust {
  animation: slideUpFade .8s ease forwards;
  animation-delay: .75s;
}

body.hero-loaded .premium-hero-visual {
  animation: heroVisualIn 1s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .35s;
}

body.hero-loaded .stat-card {
  animation: popCard .65s ease forwards;
}

body.hero-loaded .stat-growth {
  animation-delay: 1s;
}

body.hero-loaded .stat-sellers {
  animation-delay: 1.15s;
}

body.hero-loaded .market-strip {
  animation: popCard .65s ease forwards;
  animation-delay: 1.25s;
}

@keyframes slideLeftFade {
  from {
    opacity: 0;
    transform: translateX(-45px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateX(45px) scale(.92);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-20px) scale(1);
    filter: blur(0);
  }
}

@keyframes popCard {
  from {
    opacity: 0;
    transform: scale(.75) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  filter: blur(6px);
  transition: all 0.9s cubic-bezier(.2,.8,.2,1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.platform-logos img:hover{
    transform: translateY(-8px) scale(1.12);
    filter: drop-shadow(0 12px 25px rgba(26,38,64,.20));
}
/* UNIVERSAL HOVER EFFECT */

.why-item,
.director-card,
.service-card,
.stat-card,
.market-strip,
.platform-logos img,
.btn,
.btn-primary,
.btn-secondary,
.cta-btn,
.footer-socials a {
    transition: all .35s cubic-bezier(.2,.8,.2,1);
}

/* Cards */
.why-item:hover,
.director-card:hover,
.service-card:hover,
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26,38,64,.15);
}

/* Buttons */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(26,38,64,.18);
}

/* Marketplace Logos */
.platform-logos img:hover {
    transform: translateY(-8px) scale(1.12);
    filter: drop-shadow(0 12px 25px rgba(26,38,64,.18));
}

/* Footer Icons */
.footer-socials a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Market Strip */
.market-strip:hover {
    transform: translateY(-6px);
}

/* Stats Cards */
.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
}
@media (max-width: 992px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    gap: 40px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns,
  .hero-trust {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
  }

  .premium-hero-visual {
    width: 100% !important;
    max-width: 520px;
    height: 360px !important;
    transform: none !important;
  }

  .hero-main-image {
    width: 100% !important;
    height: 280px !important;
    right: 0 !important;
    top: 60px !important;
  }

  .stat-growth {
    left: 0 !important;
    top: 20px !important;
  }

  .stat-sellers {
    right: 0 !important;
    top: 210px !important;
  }

  .market-strip {
    left: 20px !important;
    bottom: 0 !important;
  }

  .directors-grid,
  .why-grid,
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .premium-hero-visual {
    height: 330px !important;
  }

  .hero-main-image {
    height: 240px !important;
    border-radius: 24px !important;
  }

  .stat-card {
    transform: scale(.85);
  }

  .stat-growth {
    left: -10px !important;
  }

  .stat-sellers {
    right: -10px !important;
    top: 185px !important;
  }

  .floating-market-icons img {
    width: 38px !important;
    height: 38px !important;
  }

  .market-strip {
    transform: scale(.85);
    left: 0 !important;
  }
}

/* =========================================
   OFFICE LOCATIONS
========================================= */

.office-locations {
  margin-top: 70px;
  width: 100%;
}

.office-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
}

.office-heading h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.2;
  color: var(--accent);
  margin-bottom: 10px;
}

.office-heading p {
  font-size: 14px;
  color: var(--muted);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.office-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}

.office-card:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 38, 64, 0.3);
  box-shadow: 0 14px 40px rgba(26, 38, 64, 0.10);
}

.office-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.office-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;

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

  background: var(--accent-xlight);
  border-radius: 12px;
  font-size: 21px;
}

.office-type {
  display: block;
  color: #2563eb;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 3px;
}

.office-card h4 {
  font-family: 'Syne', sans-serif;
  color: var(--accent);
  font-size: 19px;
  line-height: 1.3;
  margin: 0;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.office-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.office-detail p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.gst-detail {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.gst-detail strong {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.8px;
}


/* Tablet */
@media (max-width: 900px) {

  .office-grid {
    grid-template-columns: 1fr 1fr;
  }

}


/* Mobile */
@media (max-width: 650px) {

  .office-locations {
    margin-top: 50px;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }

  .office-card {
    padding: 22px;
  }

  .office-heading h3 {
    font-size: 27px;
  }

}
/* ==================================================
   OUR OFFICES SECTION
================================================== */

.offices-section {
  background: #ffffff;
  padding: 90px 5%;
  position: relative;
}

.offices-container {
  max-width: 1250px;
  margin: 0 auto;
}


/* HEADER */

.offices-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.offices-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}


/* GRID */

.offices-grid {
  display: grid;

  /* IMPORTANT — 3 OFFICE IN ONE ROW */
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}


/* OFFICE CARD */

.office-card {
  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 18px;

  padding: 25px;

  position: relative;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* TOP BLUE LINE */

.office-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: var(--accent);
}


/* HOVER */

.office-card:hover {

  transform: translateY(-6px);

  border-color: rgba(26, 38, 64, 0.25);

  box-shadow:
    0 16px 40px rgba(26, 38, 64, 0.10);
}


/* OFFICE HEADER */

.office-top {

  display: flex;

  align-items: center;

  gap: 13px;

  padding-bottom: 18px;

  margin-bottom: 18px;

  border-bottom: 1px solid var(--border);
}


/* LOCATION ICON */

.office-icon {

  width: 46px;
  height: 46px;

  min-width: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 11px;

  background: var(--accent-xlight);

  font-size: 20px;
}


/* HEAD / BRANCH OFFICE */

.office-tag {

  display: block;

  color: #2563eb;

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  margin-bottom: 3px;
}


/* CITY */

.office-top h3 {

  font-family: 'Syne', sans-serif;

  color: var(--accent);

  font-size: 17px;

  line-height: 1.3;

  margin: 0;
}


/* ADDRESS */

.office-address {

  margin-bottom: 16px;
}

.office-address span,
.office-gst span {

  display: block;

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1.3px;

  color: var(--muted);

  margin-bottom: 5px;
}

.office-address p {

  color: var(--text);

  font-size: 13px;

  line-height: 1.65;

  margin: 0;
}


/* GST BOX */

.office-gst {

  background: var(--bg);

  border: 1px solid var(--border);

  padding: 11px 13px;

  border-radius: 9px;
}

.office-gst strong {

  display: block;

  color: var(--accent);

  font-size: 13px;

  letter-spacing: 0.6px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

  .offices-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .offices-section {

    padding: 65px 5%;

  }

  .offices-grid {

    grid-template-columns: 1fr;

  }

  .offices-header {

    margin-bottom: 35px;

  }

  .office-card {

    padding: 22px;

  }

}

/* ==========================================================
   E-COMMERCE MANAGEMENT SERVICE PAGE
========================================================== */


/* ==========================================================
   ACTIVE NAV
========================================================== */

.nav-links a.active-nav {
  color: var(--accent);
  font-weight: 700;
}



/* ==========================================================
   COMMON CONTAINER
========================================================== */

.service-content-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}



/* ==========================================================
   SERVICE HERO
========================================================== */

.service-detail-hero {
  position: relative;
  overflow: hidden;

  min-height: 720px;

  display: flex;
  align-items: center;

  padding: 90px 5%;

  background-color: #ffffff;

  background-image:
    radial-gradient(
      circle at 82% 35%,
      rgba(37, 99, 235, 0.12),
      transparent 35%
    ),
    linear-gradient(
      rgba(26, 38, 64, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(26, 38, 64, 0.045) 1px,
      transparent 1px
    );

  background-size:
    auto,
    40px 40px,
    40px 40px;
}



.service-detail-hero::before {

  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  border: 1px solid rgba(37, 99, 235, 0.10);

  border-radius: 50%;

  right: -180px;
  top: -180px;

  pointer-events: none;
}



.service-detail-hero-inner {

  width: 100%;

  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, 0.95fr);

  gap: 75px;

  align-items: center;

  position: relative;

  z-index: 2;
}



.service-detail-hero-left {

  max-width: 650px;
}



.service-page-badge {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: var(--accent-xlight);

  border:
    1px solid
    rgba(26, 38, 64, 0.15);

  color: var(--accent);

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1.6px;

  padding: 7px 14px;

  border-radius: 100px;

  margin-bottom: 23px;
}



.service-page-badge::before {

  content: "";

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #2563eb;
}



.service-detail-hero h1 {

  font-family:
    'Syne',
    sans-serif;

  font-size:
    clamp(
      42px,
      5.2vw,
      72px
    );

  font-weight: 800;

  line-height: 1.02;

  letter-spacing: -2px;

  color: var(--accent);

  margin-bottom: 23px;
}



.service-detail-hero h1 span {

  color: #2563eb;
}



.service-hero-description {

  max-width: 600px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.8;

  margin-bottom: 31px;
}



.service-hero-buttons {

  display: flex;

  align-items: center;

  gap: 13px;

  flex-wrap: wrap;

  margin-bottom: 32px;
}



.service-platform-list {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 8px;
}



.service-platform-list span {

  background: #ffffff;

  border:
    1px solid
    var(--border);

  border-radius: 100px;

  color: var(--muted);

  font-size: 11px;

  font-weight: 600;

  padding: 6px 12px;
}



/* ==========================================================
   HERO RIGHT DASHBOARD
========================================================== */

.service-detail-hero-right {

  position: relative;
}



.service-dashboard-card {

  position: relative;

  background: var(--accent);

  border-radius: 25px;

  padding: 28px;

  color: #ffffff;

  overflow: hidden;

  box-shadow:
    0 25px 70px
    rgba(26, 38, 64, 0.25);

  background-image:
    linear-gradient(
      rgba(255,255,255,0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.045) 1px,
      transparent 1px
    );

  background-size:
    32px 32px;
}



.service-dashboard-card::before {

  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background:
    rgba(
      37,
      99,
      235,
      0.22
    );

  filter: blur(60px);

  right: -110px;

  top: -120px;
}



.service-dashboard-head {

  position: relative;

  z-index: 2;

  display: flex;

  justify-content:
    space-between;

  align-items:
    flex-start;

  gap: 15px;

  margin-bottom: 25px;
}



.mini-label {

  display: block;

  color:
    rgba(
      255,
      255,
      255,
      0.48
    );

  font-size: 9px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  font-weight: 700;

  margin-bottom: 6px;
}



.service-dashboard-head h3 {

  font-family:
    'Syne',
    sans-serif;

  font-size: 21px;

  line-height: 1.3;

  color: #fff;
}



.live-chip {

  flex-shrink: 0;

  background:
    rgba(
      34,
      197,
      94,
      0.12
    );

  border:
    1px solid
    rgba(
      34,
      197,
      94,
      0.25
    );

  color: #86efac;

  font-size: 10px;

  font-weight: 700;

  padding: 5px 10px;

  border-radius: 100px;
}



.service-dashboard-grid {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 11px;

  margin-bottom: 14px;
}



.service-mini-card {

  display: flex;

  align-items: center;

  gap: 12px;

  background:
    rgba(
      255,
      255,
      255,
      0.07
    );

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.09
    );

  border-radius: 13px;

  padding: 16px;
}



.mini-icon {

  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 9px;

  background:
    rgba(
      255,
      255,
      255,
      0.10
    );

  font-size: 17px;
}



.service-mini-card strong {

  display: block;

  color: #ffffff;

  font-size: 12px;

  margin-bottom: 2px;
}



.service-mini-card span {

  display: block;

  color:
    rgba(
      255,
      255,
      255,
      0.45
    );

  font-size: 10px;
}



.service-dashboard-bottom {

  position: relative;

  z-index: 2;

  display: flex;

  gap: 13px;

  align-items:
    flex-start;

  background:
    rgba(
      255,
      255,
      255,
      0.06
    );

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.09
    );

  border-radius: 13px;

  padding: 16px;
}



.dashboard-bottom-icon {

  width: 40px;
  height: 40px;

  flex-shrink: 0;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #2563eb;

  border-radius: 10px;

  font-size: 17px;
}



.service-dashboard-bottom strong {

  display: block;

  font-size: 12px;

  margin-bottom: 3px;
}



.service-dashboard-bottom p {

  font-size: 10px;

  color:
    rgba(
      255,
      255,
      255,
      0.48
    );

  line-height: 1.6;
}



/* ==========================================================
   INTRO
========================================================== */

.service-intro-section {

  background: #ffffff;

  padding-top: 95px;

  padding-bottom: 95px;
}



.service-intro-grid {

  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 80px;

  align-items: start;
}



.service-intro-content {

  border-left:
    1px solid
    var(--border);

  padding-left: 45px;
}



.service-intro-content p {

  color: var(--muted);

  font-size: 15px;

  line-height: 1.85;

  margin-bottom: 18px;
}



.service-intro-content p:last-child {

  margin-bottom: 0;
}



/* ==========================================================
   CORE SERVICES
========================================================== */

.core-services-section {

  background: var(--bg2);

  padding-top: 95px;

  padding-bottom: 100px;
}



.core-services-heading {

  text-align: center;

  max-width: 700px;

  margin:
    0 auto
    48px;
}



.core-services-heading .section-sub {

  margin:
    0 auto;
}



.core-services-grid {

  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(
        0,
        1fr
      )
    );

  gap: 18px;
}



.core-service-card {

  background: #ffffff;

  border:
    1px solid
    var(--border);

  border-radius: 17px;

  padding: 27px;

  min-height: 300px;

  display: flex;

  flex-direction: column;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}



.core-service-card:hover {

  transform:
    translateY(-6px);

  border-color:
    rgba(
      26,
      38,
      64,
      0.25
    );

  box-shadow:
    0 18px 45px
    rgba(
      26,
      38,
      64,
      0.09
    );
}



.core-service-top {

  display: flex;

  justify-content:
    space-between;

  align-items: center;

  margin-bottom: 22px;
}



.core-service-number {

  font-family:
    'Syne',
    sans-serif;

  font-size: 28px;

  font-weight: 800;

  color:
    rgba(
      26,
      38,
      64,
      0.14
    );
}



.core-service-icon {

  width: 43px;
  height: 43px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  background:
    var(
      --accent-xlight
    );

  font-size: 19px;
}



.core-service-card h3 {

  font-family:
    'Syne',
    sans-serif;

  color: var(--accent);

  font-size: 17px;

  line-height: 1.4;

  margin-bottom: 11px;
}



.core-service-card > p {

  color: var(--muted);

  font-size: 13px;

  line-height: 1.75;

  flex-grow: 1;

  margin-bottom: 20px;
}



.core-service-tags {

  display: flex;

  gap: 6px;

  flex-wrap: wrap;
}



.core-service-tags span {

  display: inline-flex;

  background: var(--bg);

  border:
    1px solid
    var(--border);

  color: var(--muted);

  padding: 5px 8px;

  border-radius: 100px;

  font-size: 9px;

  font-weight: 600;
}



/* ==========================================================
   WORKFLOW
========================================================== */

.service-workflow-section {

  background: #ffffff;

  padding-top: 95px;

  padding-bottom: 100px;
}



.service-workflow-heading {

  max-width: 680px;

  margin-bottom: 48px;
}



.workflow-grid {

  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(
        0,
        1fr
      )
    );

  gap: 0;

  border:
    1px solid
    var(--border);

  border-radius: 18px;

  overflow: hidden;

  background: #ffffff;
}



.workflow-step {

  position: relative;

  padding: 30px;

  min-height: 230px;

  border-right:
    1px solid
    var(--border);
}



.workflow-step:last-child {

  border-right: none;
}



.workflow-number {

  font-family:
    'Syne',
    sans-serif;

  font-size: 34px;

  font-weight: 800;

  color:
    rgba(
      26,
      38,
      64,
      0.12
    );

  margin-bottom: 28px;
}



.workflow-step h3 {

  color: var(--accent);

  font-size: 16px;

  margin-bottom: 8px;
}



.workflow-step p {

  color: var(--muted);

  font-size: 12px;

  line-height: 1.7;
}



/* ==========================================================
   GROWTH SECTION
========================================================== */

.service-growth-section {

  background: var(--bg2);

  padding-top: 90px;

  padding-bottom: 90px;
}



.service-growth-card {

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 80px;

  align-items: center;

  background: var(--accent);

  border-radius: 24px;

  padding: 58px;

  position: relative;

  overflow: hidden;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.045) 1px,
      transparent 1px
    );

  background-size:
    35px 35px;

  box-shadow:
    0 20px 55px
    rgba(
      26,
      38,
      64,
      0.17
    );
}



.service-dark-eyebrow {

  color: #93c5fd;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 13px;
}



.service-growth-left h2 {

  font-family:
    'Syne',
    sans-serif;

  font-size:
    clamp(
      27px,
      3.3vw,
      43px
    );

  line-height: 1.2;

  color: #ffffff;

  margin-bottom: 18px;
}



.service-growth-left > p {

  color:
    rgba(
      255,
      255,
      255,
      0.55
    );

  font-size: 14px;

  line-height: 1.8;
}



.service-growth-features {

  display: flex;

  flex-direction: column;

  gap: 11px;
}



.growth-feature {

  display: flex;

  gap: 13px;

  background:
    rgba(
      255,
      255,
      255,
      0.06
    );

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.08
    );

  padding: 15px;

  border-radius: 12px;
}



.growth-feature > span {

  width: 27px;
  height: 27px;

  min-width: 27px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background:
    rgba(
      37,
      99,
      235,
      0.35
    );

  color: #bfdbfe;

  font-size: 12px;

  font-weight: 800;
}



.growth-feature strong {

  display: block;

  color: #ffffff;

  font-size: 12px;

  margin-bottom: 3px;
}



.growth-feature p {

  color:
    rgba(
      255,
      255,
      255,
      0.45
    );

  font-size: 10px;

  line-height: 1.55;
}



/* ==========================================================
   CTA
========================================================== */

.service-page-cta {

  background: #2563eb;

  padding-top: 68px;

  padding-bottom: 68px;
}



.service-cta-inner {

  display: flex;

  justify-content:
    space-between;

  align-items: center;

  gap: 50px;
}



.service-cta-small {

  color:
    rgba(
      255,
      255,
      255,
      0.65
    );

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 9px;
}



.service-cta-inner h2 {

  font-family:
    'Syne',
    sans-serif;

  font-size:
    clamp(
      27px,
      3.3vw,
      42px
    );

  color: #ffffff;

  line-height: 1.2;

  margin-bottom: 8px;
}



.service-cta-inner p {

  color:
    rgba(
      255,
      255,
      255,
      0.68
    );

  font-size: 13px;
}



.service-cta-buttons {

  display: flex;

  align-items: center;

  gap: 10px;

  flex-shrink: 0;
}



.service-white-button {

  display: inline-block;

  background: #ffffff;

  color: #2563eb;

  text-decoration: none;

  font-size: 13px;

  font-weight: 800;

  border-radius: 9px;

  padding: 13px 20px;

  transition: .25s;
}



.service-white-button:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 8px 25px
    rgba(
      0,
      0,
      0,
      0.15
    );
}



.service-outline-white {

  display: inline-block;

  background:
    transparent;

  color: #ffffff;

  text-decoration: none;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.45
    );

  border-radius: 9px;

  padding: 12px 19px;

  font-size: 13px;

  font-weight: 700;

  transition: .25s;
}



.service-outline-white:hover {

  background:
    rgba(
      255,
      255,
      255,
      0.10
    );

  border-color: #ffffff;
}



/* ==========================================================
   RESPONSIVE — TABLET
========================================================== */

@media (max-width: 1000px) {

  .service-detail-hero-inner {

    grid-template-columns: 1fr;

    gap: 50px;
  }


  .service-detail-hero-left {

    max-width: 720px;
  }


  .service-detail-hero-right {

    max-width: 650px;
  }


  .core-services-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }


  .workflow-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }


  .workflow-step {

    border-bottom:
      1px solid
      var(--border);
  }


  .workflow-step:nth-child(2) {

    border-right: none;
  }


  .workflow-step:nth-child(3),
  .workflow-step:nth-child(4) {

    border-bottom: none;
  }


  .service-growth-card {

    grid-template-columns: 1fr;

    gap: 40px;
  }

}



/* ==========================================================
   RESPONSIVE — MOBILE
========================================================== */

@media (max-width: 650px) {

  .service-detail-hero {

    min-height: auto;

    padding:
      65px 5%
      70px;
  }


  .service-detail-hero-inner {

    display: block;
  }


  .service-detail-hero-right {

    margin-top: 50px;
  }


  .service-detail-hero h1 {

    font-size: 41px;

    letter-spacing: -1.5px;
  }


  .service-hero-description {

    font-size: 14px;
  }


  .service-hero-buttons {

    align-items: stretch;

    flex-direction: column;
  }


  .service-hero-buttons a {

    text-align: center;
  }


  .service-dashboard-card {

    padding: 20px;

    border-radius: 20px;
  }


  .service-dashboard-grid {

    grid-template-columns: 1fr;
  }


  .service-intro-grid {

    grid-template-columns: 1fr;

    gap: 30px;
  }


  .service-intro-content {

    border-left: none;

    border-top:
      1px solid
      var(--border);

    padding-left: 0;

    padding-top: 28px;
  }


  .core-services-grid {

    grid-template-columns: 1fr;
  }


  .workflow-grid {

    grid-template-columns: 1fr;
  }


  .workflow-step {

    border-right: none;

    border-bottom:
      1px solid
      var(--border) !important;
  }


  .workflow-step:last-child {

    border-bottom: none !important;
  }


  .service-growth-card {

    padding: 30px 23px;
  }


  .service-cta-inner {

    flex-direction: column;

    align-items: flex-start;
  }


  .service-cta-buttons {

    width: 100%;

    flex-direction: column;

    align-items: stretch;
  }


  .service-cta-buttons a {

    text-align: center;
  }

}