:root{
--primary: #FFC107;          /*  gold */
  --accent:  #ffffff;          /* warm orange */
  --primary-dark: #212121;     /* strong text / headings */
  --accent-blue: #1A73E8;      /* subtle secondary */
  --bg: #FFFFFF;               /* page background */
  --bg-soft: #F8F9FA;          /* sections / cards */
  --card: #FFFFFF;
  --muted: #6C6C6C;
  --border: #D0D0D0;
--radius: 14px;
--glass: rgba(0,0,0,0.04);
--gradient: linear-gradient(90deg, var(--primary), var(--accent));
--shadow-soft: 0 4px 18px rgba(0,0,0,0.06);
--shadow-subtle: 0 2px 10px rgba(0,0,0,0.04);
--max-width: 1400px;
--nav-height: 76px;
font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}




/* Reset & base */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body { max-width: 100%; overflow-x: visible; }
body {
  margin: 0;
  background: var(--bg);   /* plain white */
  color: var(--primary-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.35;
}

/* Page wrapper */
.wrap {
width: 100%;
max-width: var(--max-width);
margin: 0 auto;
padding: 16px 14px;
}



/* Header */ 

.site-header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 0 16px;
}

/* Floating Card Header */
.header-card {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 64px;
  padding: 0 22px;

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

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.75),
      rgba(255, 255, 255, 0.55)
    );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 18px;
  border: 1px solid rgba(255, 193, 7, 0.25);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.4px;
}

/* Desktop Menu */
.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-dark);
  text-decoration: none;
  opacity: 0.85;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Contact Button */
.contact-btn {
  padding: 9px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    var(--primary),
    #ffd54f
  );
  color: #000;

  box-shadow:
    0 8px 18px rgba(255, 193, 7, 0.35);
}

/* 🔒 MOBILE RULES */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .header-card {
    height: 56px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .logo {
    font-size: 18px;
  }

  .contact-btn {
    padding: 7px 14px;
    font-size: 13px;
    border-radius: 10px;
  }
}





/* HERO 2  */

.hero2{
  position: relative;
  margin: 20px 0 72px;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    #fffdf5 0%,
    #fff5d3 38%,
    #ffffff 100%
  );
  box-shadow: 0 24px 80px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* inner width lock same as site */
.hero2-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 20px 72px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* soft blobs in background */
.hero2::before,
.hero2::after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter: blur(80px);
  opacity:0.6;
  pointer-events:none;
}

.hero2::before{
  width:340px;
  height:340px;
  background: radial-gradient(circle at 30% 20%, rgba(255,193,7,0.65), transparent 65%);
  top:-120px;
  left:-40px;
}

.hero2::after{
  width:360px;
  height:360px;
  background: radial-gradient(circle at 80% 70%, rgba(255,255,255,0.9), transparent 60%);
  bottom:-160px;
  right:-60px;
}



/* Top pill row */
.hero2-pill-row{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 4px 14px;
  border-radius:999px;
  background:#fff;
  color:#000;
  font-size:0.78rem;
  margin-bottom:56px;
box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.hero2-pill-label{
  padding: 4px 10px;
  border-radius:999px;
  background:#FFC107;
  color:#000;
  font-weight:600;
}

.hero2-pill-text{
  opacity:0.9;
}

/* Heading */
.hero2-title{
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height:1.05;
  letter-spacing:-0.04em;
  margin:0 0 18px;
  color:#000;
}

/* Subheading */
.hero2-subtitle{
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* CTA row */
.hero2-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin-bottom: 80px;
}

/* Primary CTA */
.hero2-btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 14px 26px;
  border-radius:999px;
  background: linear-gradient(135deg, #ffb300, #ffc93a);
  color:#000;
  font-weight:600;
  font-size:0.98rem;
  text-decoration:none;
  box-shadow: 0 14px 32px rgba(255,193,7,0.55);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.hero2-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255,193,7,0.7);
}

.hero2-btn-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:999px;
  background:#000;
  color:#fff;
  font-size:0.9rem;
}

/* Optional ghost button if needed */
.hero2-btn-ghost{
  display:inline-flex;
  align-items:center;
  padding: 10px 18px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.75);
  color:#222;
  font-size:0.9rem;
  text-decoration:none;
  backdrop-filter: blur(10px);
}

/* Preview card (bottom) */
.hero2-preview{
  max-width: 780px;
  margin: 0 auto;
  margin-top: 12px;
  border-radius: 26px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
  overflow:hidden;
}

.hero2-preview-bar{
  display:flex;
  align-items:center;
  gap:6px;
  padding:10px 14px;
  background: linear-gradient(to right, #f5f5f5, #ffffff);
}

.hero2-dot{
  width:9px;
  height:9px;
  border-radius:50%;
}

.dot-red{ background:#ff5f57; }
.dot-amber{ background:#febc2e; }
.dot-green{ background:#28c840; }

.hero2-preview-body{
  text-align:left;
  padding:18px 22px 22px;
}

.hero2-preview-tag{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  font-size:0.75rem;
  background:rgba(255,193,7,0.16);
  color:#8a6500;
  margin-bottom:8px;
}

.hero2-preview-title{
  font-size:1.05rem;
  margin:0 0 6px;
  color:#111;
}

.hero2-preview-text{
  margin:0;
  font-size:0.9rem;
  color:#555;
}




/* ------------- RESPONSIVE ------------- */

@media (max-width: 768px){
  .hero2{
    border-radius: 24px;
    margin: 20px 0 56px;
  }

  .hero2-inner{
    padding: 56px 18px 56px;
  }

  .hero2-actions{
    flex-direction:column;
    gap:10px;
  }

  .hero2-preview{
    margin-top: 4px;
  }
}

@media (max-width: 480px){
  .hero2-title{
    font-size: 2.2rem;
  }
}









/* Interaction polish */
.stat-box:hover h3{ transform:translateY(-4px); transition:transform .18s; }
.primary-btn:focus, .secondary-btn:focus{ outline:3px solid rgba(255,193,7,0.12); outline-offset:3px; }

/* reduced motion */
@media (prefers-reduced-motion:reduce){
*{ transition:none !important; animation:none !important; }
}

/* fallback for browsers that don't support :focus-visible */
:focus{ outline:transparent; }



.page-wrapper {
    max-width: 900px;
    position: relative;    /* keeps child stacking predictable */
    z-index: 1;
    margin: 24px auto;
    padding: 16px;
    background: #fff;
    border-radius: 20px;

    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    box-sizing: border-box;
    overflow-x: hidden;

    box-shadow:
        0 6px 20px rgba(0,0,0,0.10),
        0 12px 40px rgba(0,0,0,0.15);
}


.card {
    flex: 1 1 calc(50% - 25px);     /* Desktop: 2 equal cards */
    min-width: 260px;               /* Prevents shrinking too small */
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;

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

/* MOBILE FIX */
@media (max-width: 768px) {

    html, body {
        overflow-x: hidden;
    }

    .page-wrapper {
        flex-direction: column;
        padding: 14px;
        gap: 18px;
    }

    .card {
        flex: 1 1 100%;
        width: 100%;
        min-width: unset;
        padding: 16px;
    }
}




/* Container */
.projects-section {
  margin: 90px 20px;                /* spacing above and below */
  text-align: center;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 10px;
  text-align: center;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.auto-slider {
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  margin-bottom: 80px;
  box-sizing: border-box;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;             /* slightly smaller gap for mobile comfort */
  align-items: center;
  will-change: transform;
}

/* SLIDE: mobile-first rules */
.slide {
  flex: 0 0 80vw;        /* each slide = 80% of viewport on mobile */
  min-width: 80vw;
  border-radius: 14px;
  overflow: hidden;          /* clip image to radius */
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-bottom: 0;
  display: block;
}

/* IMAGE: give explicit height on mobile so it doesn't collapse */
.slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;         /* fixed mobile height */
  object-fit: cover;
  border-radius: 0;
  vertical-align: middle;
  transform: translateZ(0);
}

/* Desktop adjustments */
@media (min-width: 768px) {
  .slide { flex: 0 0 360px; min-width: 360px; }
  .slide img { height: 260px; }
}



/* Authority Bar (Hero ke niche) */
.authority-bar {
  max-width: var(--max-width);
  margin: 8px auto 40px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
}
.authority-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.authority-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffc107;
}
@media (max-width: 720px) {
  .authority-bar {
    border-radius: 18px;
    padding: 12px 16px;
  }
}




/* ===============================
   CASE STUDIES SECTION
================================ */
/* ===============================
   CASE STUDIES SECTION
================================ */

.case-studies-section {
  padding: 120px 16px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--primary-dark);
}

.section-desc {
  margin-top: 10px;
  font-size: 16px;
  color: var(--muted);
}

/* ===============================
   WRAPPER
================================ */

.cases-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===============================
   CASE CARD
================================ */

.case-card {
  display: flex;
  flex-direction: column;
  height: 100%;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78),
    rgba(255, 255, 255, 0.55)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 24px;
  border: 1px solid rgba(255, 193, 7, 0.22);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 50px rgba(255, 193, 7, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ===============================
   TOP
================================ */

.case-top {
  padding: 26px 28px 18px;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--primary-dark);
}

.objective {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

/* ===============================
   BODY
================================ */

.case-body {
  padding: 22px 28px;
  flex: 1;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric {
  padding: 14px 12px;
  border-radius: 16px;
  text-align: center;

  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);

  box-shadow: var(--shadow-subtle);
}

.metric.highlight {
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.35),
    rgba(255, 193, 7, 0.15)
  );
  border-color: rgba(255, 193, 7, 0.45);
}

.m-title {
  font-size: 12px;
  color: var(--muted);
}

.m-value {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
}

/* ===============================
   META
================================ */

.case-meta {
  margin-top: 18px;
  font-size: 14px;
  color: var(--primary-dark);
}

.platforms {
  margin-bottom: 8px;
}

.pill {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 10px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
}

/* ===============================
   MOBILE – SAME DESIGN, HORIZONTAL SCROLL
================================ */

@media (max-width: 768px) {

  .cases-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none; /* Firefox */
  }

  .case-card {
    min-width: 85%;
    max-width: 85%;
    scroll-snap-align: start;
  }

  /* Hide scrollbar (WebKit) */
  .cases-wrapper::-webkit-scrollbar {
    display: none;
  }
}



/* ===============================
   FOOTER
================================ */

.case-footer {
  padding: 20px 28px 26px;
  border-top: 1px solid var(--border);
}

.case-cta {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    var(--primary),
    #ffd54f
  );
  color: #000;

  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
}

/* ===============================
   MOBILE SCROLL SNAP
================================ */

@media (max-width: 1024px) {
  .cases-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cases-wrapper {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;

    scroll-snap-type: x mandatory;
  }

  .case-card {
    min-width: 82%;
    scroll-snap-align: start;
  }

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








/* Framework Section */
.framework-section {
  margin: 64px 0;
  color: var(--primary-dark);
}

.framework-head {
  text-align: center;
  margin-bottom: 28px;
}
.framework-head h2 {
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 900;
}
.framework-head .lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Grid: 4 columns on desktop */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  margin: 16px 0 22px;
}

/* Card */
.fw-card {
  background: var(--card);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0,0,0,0.04);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .18s ease;
}
.fw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.08);
  border-color: rgba(255,193,7,0.22);
}
.fw-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,193,7,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.fw-title {
  font-size: 16px;
}
.fw-list {
  padding-left: 18px;
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}


/* Emphasize first bullet if you want */
.fw-list li { margin-bottom: 6px; }

/* CTA area */
.framework-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

/* Responsive: collapse to single column on small screens */
@media (max-width: 1000px) {
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .framework-grid {
    display: block;
  }
  .fw-card {
    margin: 0 0 14px;
    min-height: auto;
    padding: 18px;
  }
  .fw-card + .fw-card { margin-top: 12px; }
  .framework-cta { flex-direction: column; gap: 10px; }
}

/* Button styles (reuse your variables) */
.primary-btn {
  background: var(--gradient);
  color: var(--primary-dark);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255,138,0,0.08);
}
.secondary-btn {
  background: transparent;
  border: 2px solid rgba(0,0,0,0.06);
  color: var(--primary-dark);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}




/* Final CTA Section */
.final-cta-section {
  max-width: var(--max-width);
  margin: 70px auto 40px;
  padding: 0 20px;
}

.final-cta-inner {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 30px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 16px 60px rgba(0,0,0,0.08);
}

.final-cta-inner h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.final-cta-inner p {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 26px;
  line-height: 1.55;
}

/* Button */
.final-cta-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #ffcc33;
  font-weight: 700;
  text-decoration: none;
  color: #071021;
  box-shadow: 0 12px 30px rgba(255,193,7,0.45);
  transition: transform .16s ease, box-shadow .16s ease;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255,193,7,0.6);
}
/* Mobile adjustments */
@media (max-width: 700px) {
  .final-cta-inner {
    padding: 32px 20px;
  }
  .final-cta-inner h2 {
    font-size: 26px;
  }
  .final-cta-inner p {
    font-size: 15px;
  }
  .final-cta-btn {
    padding: 14px 22px;
    font-size: 16px;
  }
}



/* Logos Container */
/* Container */
.social-proof {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  padding: 26px 22px 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

/* Heading + description */
.social-head {
  margin-bottom: 32px;
  display: block;
  width: 100%;
  text-align: center;
}

.social-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--primary-dark);
  margin: 0 0 8px 0;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.social-desc {
  margin: 0;
  font-size: 16px;        /* smaller description */
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

/* Brands row (logo boxes) */
.brands-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));  /* desktop: 4 per row */
  gap: 10px;
  margin-top: 18px;
}

/* Logo card */
.brand-box {
  width: 100%;                /* full cell width */
  height: 64px;
  border-radius: 14px;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.04);
}

.brand-box img {
  max-width: 80%;
  max-height: 70%;
  filter: grayscale(1);
  opacity: 0.8;
}

.brand-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.brand-box:hover img {
  opacity: 1;
  filter: none;
}

/* Responsive */
@media (max-width: 720px) {
  .brands-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));  /* mobile: 2 per row */
  }
  .brand-box {
    height: 56px;
  }
}



/* Global extra vars but aligned with main theme  */
:root{
  --max-w: var(--max-width);
  --accent: var(--primary);            /* use brand gold */
  --accent-2: rgba(255,193,7,0.28);   /* soft gold */
  --muted: var(--muted);
  --card-bg: var(--card);
  --soft-bg: var(--bg-soft);
  --radius: var(--radius);
  --shadow-1: var(--shadow-subtle);
  --shadow-2: var(--shadow-soft);
}


/* Layout */
.faq-layout {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

/* Left - FAQ */
.faq-left { text-align: left; }

.faq-heading {
  font-size: 16px;
  margin: 0 0 18px;
  color: #0a2540;
  font-weight: 600;
  line-height: 1.05;
}

/* Accordion styles */
.accordion { display: flex; flex-direction: column; gap: 14px; }

.acc-item {
  background: linear-gradient(180deg, var(--card-bg), var(--card-bg));
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  border: 1px solid rgba(10,37,64,0.05);
  transition: box-shadow .24s ease, transform .18s ease;
}

/* when open: stronger shadow & subtle lift */
.acc-item.open {
  box-shadow: var(--shadow-2);
  transform: translateY(-4px);
  border: 1px solid rgba(255,46,109,0.12);
}

/* Button row */
.acc-btn {
  width: 100%;
  padding: 18px 18px 18px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: #0a2540;
}

/* left icon (circle) */
.acc-icon{
  min-width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255,193,7,0.18), rgba(255,193,7,0.08));
  color: var(--primary-dark);
  box-shadow: 0 4px 10px rgba(255,193,7,0.16);
}


/* Title text next to icon */
.acc-title { display:inline-block; flex:1; }

/* Panel */
.acc-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height .34s cubic-bezier(.2,.9,.2,1), padding .28s ease;
  background: linear-gradient(180deg, rgba(255,155,179,0.02), transparent);
}
.acc-panel p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}



/* jab item open ho, panel expand ho */
.acc-item.open .acc-panel {
  max-height: 400px;              /* jitna content ho, uske hisaab se adjust kar sakte ho */
  padding: 12px 18px 18px;        /* thoda vertical space dikhane ke liye */
}



/* Hover states */
.acc-btn:hover .acc-icon { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,46,109,0.08); }
.acc-item:not(.open):hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(8,20,48,0.04); }

/* Right visual */
.faq-right {
  width: 100%;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,243,205,0.4), rgba(255,255,255,0.9));
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  padding: 18px;
}

.visual-wrap {
  width: 100%;
  max-width: 360px;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.visual-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* responsive */
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .faq-layout { grid-template-columns: 1fr; padding: 0 12px; gap: 20px; }
  .faq-right { order: 2; height: 460px; }
  .faq-left { order: 1; }
  .faq-heading { font-size: 20px; }
}
@media (max-width: 700px) {
  .faq-left {
    text-align: center;
  }
}




/* ===== BLOG LIST CSS =====
   Note: this uses your existing :root variables (no re-declaration) */
.blog-list {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  padding: 0 20px;
}
.blog-list .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.blog-list .card {
  flex: 1 1 280px;
  max-width: 360px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .18s ease;
}
.blog-list-header { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:18px; }
.blog-list-header h2 { margin:0; font-size:20px; color:var(--primary-dark,#0a2540); font-weight:800; }
.blog-list-header p { margin:0;color:var(--muted,#6C6C6C); font-size:14px; }

/* grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* card */
.card {
  background: var(--card, #ffffff);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border, #D0D0D0);
  box-shadow: var(--shadow-subtle, 0 2px 10px rgba(0,0,0,0.04));
  display:flex;
  flex-direction:column;
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 320px;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(8,20,48,0.08); }

.card-link { color:inherit; text-decoration:none; display:flex; flex-direction:column; height:100%; }

.card-media { width:100%; height:150px; overflow:hidden; background:linear-gradient(180deg, rgba(0,0,0,0.02), transparent); }
.card-media img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.blog-list .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.08);
}

.card-body { padding:16px 16px 18px; display:flex; flex-direction:column; gap:10px; flex:1; }

.card-kicker {
  display:inline-block;
  font-size:12px;
  font-weight:700;
  padding:6px 8px;
  border-radius:999px;
  background: rgba(255,193,7,0.10);
  color: var(--primary-dark);
  width: fit-content;
}

.card-title { margin:0; font-size:16px; font-weight:800; color:var(--primary-dark,#0a2540); line-height:1.2; }
.card-excerpt { margin:0; color:var(--muted,#6C6C6C); font-size:14px; line-height:1.5; }

.card-meta { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:auto; }

.meta-left { display:flex; gap:8px; align-items:center; color:var(--muted,#6C6C6C); font-size:13px; }
.meta-left img { width:28px; height:28px; border-radius:6px; object-fit:cover; border:1px solid rgba(0,0,0,0.04); }

.read-btn {
  background: none;
  border: 1px solid rgba(0,0,0,0.06);
  padding:8px 12px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  color: var(--primary-dark);
  transition: background .18s ease, transform .12s ease, box-shadow .18s ease;
}

.read-btn:hover {
  background: rgba(255,193,7,0.10);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* responsive tweaks */
@media (max-width:720px) {
  .card-media { height:140px; }
}
@media (max-width:420px) {
  .card-media { height:120px; }
  .card { min-height:0; }
}



/* MOBILE: Increase bottom padding under Lottie / blob */
@media (max-width: 720px) {
  .hero {
    padding-bottom: 70px;   /* <-- Increase or decrease as you like */
  }

  .hero-graphic {
    margin-bottom: 20px;    /* optional — improves breathing space */
  }
}






/* ===========================
   ABOUT HERO SECTION
   =========================== */

.about-hero-section {
  padding: 80px 24px;
  min-height: 90vh; /* almost full screen on desktop */
  display: flex;
  align-items: center;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 247, 223, 0.48) 0%,
rgba(255, 247, 223, 0.22) 40%,
rgba(255, 255, 255, 1) 100%
  );
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 64px;
  align-items: center;
}

/* LEFT COLLAGE */

.about-hero-media {
  position: relative;
}

.about-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;     /* left & right */
  grid-template-rows: 270px 270px;   /* same height rows */
  gap: 20px;
}

/* common img card */
.about-photo {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  background: #eee;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* big left image */
.about-photo-left {
  grid-column: 1 / 2;
  grid-row: 1 / 3;   /* spans 2 rows = tall image */
}

/* top-right & bottom-right */
.about-photo-top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.about-photo-bottom {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* round badge in center */
.about-hero-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: 190px;
  height: 190px;
  z-index: 5;
}

.about-hero-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


@keyframes spinRound {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-hero-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;

  /* ROTATION ANIMATION */
  animation: spinRound 12s linear infinite;
}


/* RIGHT SIDE CONTENT */

.about-hero-content {
  padding-right: 20px;
}

.about-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: #f5a623;
  margin: 0 0 12px;
}

.about-hero-title {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.18;
  color: #111827;
}

.about-hero-text {
  margin: 0 0 28px;
  font-size: 15px;
  color: #6b7280;
}

/* Experience pill */

.about-hero-pill {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);

  margin-bottom: 28px;
}

.pill-icon span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(255, 201, 51, 0.18);
}

.pill-copy h3 {
  margin: 0 0 4px;
  font-size: 17px;
  color: #111827;
}

.pill-copy p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

/* CTA + Call */

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.about-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--primary, #ffcc33);
  color: #071021;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(255,193,7,0.6);
  transition: transform .15s ease, box-shadow .15s ease;
}

.about-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(255,193,7,0.75);
}

.about-hero-call {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #111827;
}

.call-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.call-label {
  font-size: 12px;
  color: #6b7280;
}

.call-number {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 992px) {
  .about-hero-section {
    padding: 56px 16px 64px;
    min-height: auto;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-content {
    padding-right: 0;
  }

  .about-hero-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .about-hero-section {
    padding: 40px 16px 52px;
  }

  .about-hero-grid {
    grid-template-rows: 220px 200px;
    gap: 14px;
  }

  .about-hero-badge {
    width: 150px;
    height: 150px;
  }

  .about-hero-title {
    font-size: 26px;
  }

  .about-hero-pill {
    border-radius: 20px;
    align-items: flex-start;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}




#goTopBtn {
  position: fixed;
  inset: auto 16px 16px auto;  /* top right bottom left */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFD54F;
  color: #000;
  border: none;
  font-size: 20px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#goTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}








/* -----------------------------
   SERVICES GRID LAYOUT (FIXED)
------------------------------*/

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px;
  margin-top: 40px;
  margin-bottom: 160px;
  width: 100%;
}

.services-section h2,
.services-section .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
   margin-top: 120px;
}

.services-section .lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;     /* line length perfect */
  margin-bottom: 40px;  /* spacing below text */
}


/* Responsive Fix */
@media(max-width: 1024px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media(max-width: 600px){
  .services-grid{
    grid-template-columns: 1fr !important;
  }
}


/* -----------------------------
   GLASS CARD (SINGLE LAYER)
------------------------------*/

.service-card{
  position:relative;
  padding:32px 28px 40px;
  border-radius:22px;
  background: rgba(255,255,255,0.55);
  border:1px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.08);
  transition: 
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease,
    border-color .35s ease;
}

/* FLOATING HOVER */
.service-card:hover{
  transform: translateY(-8px);
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,193,7,0.7);
  box-shadow: 0 26px 60px rgba(15,23,42,0.22);
}

/* GOLD TOP GLOW BAR */
.service-card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  opacity:0;
  background:linear-gradient(90deg, transparent, rgba(255,193,7,0.85), transparent);
  transform: translateY(-6px);
  transition:opacity .35s, transform .35s;
}

.service-card:hover::before{
  opacity:1;
  transform: translateY(0);
}


/* -----------------------------
   ICON STYLE
------------------------------*/

.service-icon-wrap{
  margin-bottom:24px;
}

.service-card:hover .service-icon-ring {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-5deg) scale(1.1);
  transition: 0.3s ease;
}



.service-card:hover .service-icon-ring{
  transform: translateY(-2px) scale(1.06) rotate(-4deg);
  border-color: rgba(255,193,7,0.9);
}


/* -----------------------------
   TEXT
------------------------------*/

.service-title{
  font-size:1.25rem;
  margin-bottom:8px;
  color: var(--primary-dark);
  font-weight:600;
}

.service-desc{
  font-size:0.95rem;
  color:var(--muted);
  max-width:260px;
  line-height:1.6;
  transition: color .35s ease;
}

.service-card:hover .service-desc{
  color:#333;
}


/* -----------------------------
   CTA BUTTON — Apple + Glass Hybrid
------------------------------*/

.service-cta{
  margin-top:26px;
  background: rgba(255,255,255,0.88);
  border:none;
  height:42px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(15,23,42,0.12);
  transition:background .3s, box-shadow .3s, transform .3s;
  overflow:hidden;
}

/* Arrow */
.cta-arrow{
  width:20px;
  font-size:1rem;
  color:#000;
  transition: transform .3s;
}

/* Hidden label by default */
.cta-label{
  max-width:0;
  opacity:0;
  white-space:nowrap;
  transform:translateX(-6px);
  overflow:hidden;
  transition:max-width .35s, opacity .25s, transform .25s;
}

/* Hover Effects */
.service-card:hover .service-cta{
  background: var(--primary);
  box-shadow:0 14px 32px rgba(255,193,7,0.4);
  transform: translateY(-2px);
}

.service-card:hover .cta-arrow{
  transform: translateX(2px);
}

.service-card:hover .cta-label{
  max-width:90px;
  opacity:1;
  transform:translateX(0);
  color:#000;
}




/* Footer Base */



.site-footer {
  margin-top: 140px;
  padding: 0 16px 40px;
  position: relative;
}



/* Footer Card */
.footer-card {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 40px;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 36px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.55)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 24px;
  border: 1px solid rgba(255, 193, 7, 0.28);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: box-shadow 0.4s ease;
}

/* Glow on hover */
.footer-card:hover {
  box-shadow:
    0 20px 46px rgba(255, 193, 7, 0.18),
    0 0 0 1px rgba(255, 193, 7, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Brand */
.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
}

/* Social Pills */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-pill {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);

  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-dark);

  box-shadow: var(--shadow-subtle);
}

/* Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
  color: var(--primary-dark);
  opacity: 0.8;
  text-decoration: none;
}

/* Newsletter */
.footer-newsletter span {
  font-size: 14px;
  font-weight: 600;
}

.footer-newsletter form {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  outline: none;
}

.footer-newsletter button {
  padding: 10px 16px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  background: var(--primary);
  cursor: pointer;
}

/* Copyright */
.footer-copy {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 26px;
    border-radius: 18px;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 20px;
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* ===============================
   MOBILE – HORIZONTAL CARD LAYOUT
================================ */

@media (max-width: 768px) {

  .cases-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
  }

  .case-card {
    min-width: 92%;
    flex-direction: row;              /* 🔥 horizontal */
    align-items: stretch;
    scroll-snap-align: start;
    border-radius: 20px;
  }

  /* Left column */
  .case-top {
    width: 38%;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 20px;
  }

  .brand {
    font-size: 16px;
  }

  .objective {
    font-size: 13px;
  }

  /* Right column */
  .case-body {
    width: 62%;
    padding: 18px;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .metric {
    padding: 10px;
  }

  .m-value {
    font-size: 14px;
  }

  .case-meta {
    font-size: 13px;
  }

  .pill {
    font-size: 11px;
    padding: 3px 8px;
  }

  .case-footer {
    display: none; /* CTA not needed in mobile card */
  }
}











/* End of stylesheet */