/* =========================
   Kuwad Surana & Associates
   Clean Premium CSS (Consolidated)
   ========================= */

/* =========================
   Design Tokens
   ========================= */
:root {
    --text: #0b1220;
    --muted: #556277;
    --brand: #1e3a8a;

    /* Accent (orange tone) */
    --accent: #b26a46;
    --accent-soft: rgba(178, 106, 70, .12);

    --soft: #f2f5fb;
    --card: rgba(255, 255, 255, 0.78);
    --border: #e6edf5;

    --radius: 18px;
    --shadow: 0 14px 40px rgba(15, 23, 42, .06);

    --ring: rgba(15, 23, 42, 0.10);
    --panel: rgba(255, 255, 255, 0.70);
    --panel-strong: rgba(255, 255, 255, 0.88);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(900px 450px at 15% -10%, rgba(30, 58, 138, .10), transparent 60%),
    radial-gradient(900px 450px at 85% 0%, rgba(2, 132, 199, .08), transparent 55%),
    #f6f8fc;
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent sticky header from covering anchor targets */
main,
section {
    scroll-margin-top: 90px;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================
   Header / Nav
   ========================= */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: 22px;
    line-height: 1.2;
}

.brand img {
    height: 50px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    margin-left: 14px;
    font-weight: 650;
    padding: 8px 10px;
    border-radius: 12px;
}

nav a:hover {
    color: var(--brand);
    background: var(--soft);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =========================
   Typography
   ========================= */
h1 {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

h2 {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}

h3 {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 8px;
}

p {
    margin: 6px 0 12px;
    color: var(--muted);
}

.lead {
    font-size: 18px;
    max-width: 72ch;
}

small, .muted {
    color: var(--muted);
}

/* =========================
   Buttons
   ========================= */
.btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 750;
    color: var(--text);
    background: #fff;
}

.btn:hover {
    border-color: #cbd5e1;
}

.btn.primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    box-shadow: 0 12px 24px rgba(30, 58, 138, 0.16);
}

.btn.primary:hover {
    filter: brightness(.96);
}

/* =========================
   Sections / Grid / Cards
   ========================= */
.section {
    padding: 56px 0;
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, .9), transparent);
}

.section:first-of-type::before {
    display: none;
}

.section.light {
    background: rgba(255, 255, 255, 0.55);
    border: none;
}

.grid {
    display: grid;
    gap: 18px;
}

.grid.cols-3 {
    grid-template-columns:repeat(3, minmax(0, 1fr));
}

.grid.cols-2 {
    grid-template-columns:repeat(2, minmax(0, 1fr));
}

.grid.cols-3 > .card {
    min-height: 110px;
}

.card {
    background: var(--card);
    border: 1px solid rgba(230, 237, 245, 0.9);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
}

.card ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.card li {
    margin: 4px 0;
    color: var(--muted);
}

/* =========================
   Icon System
   ========================= */
.ico-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    background: var(--accent-soft);
    border: 1px solid rgba(178, 106, 70, .22);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

.ico-badge i {
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
}

.ico-badge img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    opacity: .95;
}

/* =========================
   HERO
   ========================= */
.hero {
    padding: 64px 0 48px;
    background: radial-gradient(700px 320px at 20% 10%, rgba(30, 58, 138, .12), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, rgba(255, 255, 255, .35) 75%);
    border-bottom: 1px solid var(--border);
    background-color: #f5ece8;
}

.hero p {
    color: var(--muted);
}

.hero .hero-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
    align-items: center;
}

.hero-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #fefefe;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}

.hero-media img,
.hero-photo {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: 50% 12%;
    display: block;
    filter: grayscale(10%) contrast(1.05);
    transform: scale(1.01);
}

/* =========================
   Footer
   ========================= */
footer {
    border-top: 1px solid var(--border);
    padding: 28px 0;
    color: var(--muted);
    background: #fff;
}

/* =========================
   Scroll reveal animation
   ========================= */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* =========================
   Leadership photos + LinkedIn
   ========================= */
.leader-head {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.leader-photo {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
    background: #fff;
    flex-shrink: 0;
}

.leader-name {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.leader-exp {
    color: var(--muted);
    font-weight: 650;
    font-size: .95em;
}

.leader-role {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 700;
}

.leader-linkedin {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    text-decoration: none;
    color: #5a6c7d;
    font-size: 18px;
    transition: color .2s ease, transform .2s ease;
}

.leader-linkedin:hover {
    color: #0A66C2;
    transform: translateY(-1px);
}

/* =========================
   INDUSTRIES (GROUPED + ICONS)
   ========================= */
.industry-group {
    margin-top: 16px;
}

.industry-group-title {
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 10px;
}

.industry-grid {
    margin-top: 0;
    gap: 14px;
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(6px);

    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.industry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.82);
}

.industry-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;

    background: var(--accent-soft);
    border: 1px solid rgba(178, 106, 70, .22);
}

.industry-ico i {
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
}

.industry-ico img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    opacity: .95;
}

.industry-title {
    font-weight: 850;
    font-size: 18px;
    line-height: 1.2;
    color: var(--text);
}

.industry-sub {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.25;
}

/* =========================
   ABOUT + VALUES
   ========================= */
.about-intro {
    max-width: 78ch;
}

.about-kpis {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.kpi {
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(230, 237, 245, 0.95);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(6px);
}

.kpi-title {
    font-weight: 850;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--text);
}

.kpi-sub {
    color: var(--muted);
    font-weight: 650;
    line-height: 1.35;
}

.values-panel {
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(230, 237, 245, 0.95);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(6px);
}

.values-head {
    max-width: 80ch;
    margin-bottom: 14px;
}

.values-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
}

.values-intro {
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 14px;
}

.value-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(226, 232, 240, 0.85);
}

.value-item h3 {
    margin: 0 0 4px;
}

.value-item p {
    margin: 0;
}

/* =========================
   WHY CHOOSE US
   ========================= */
.advantage-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.advantage-card h3 {
    margin: 0 0 6px;
}

.advantage-card p {
    margin: 0;
}

/* =========================
   SERVICES
   ========================= */
.services-intro {
    max-width: 78ch;
    margin-top: 10px;
}

#services .services-intro .muted {
    margin-top: 10px;
    line-height: 1.7;
}

.services-panel {
    padding: 18px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 16px 46px rgba(15, 23, 42, 0.06);
}

.services-process {
    font-size: 12.5px;
    font-weight: 850;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
}

.services-grid {
    gap: 18px;
}

.svc-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(226, 232, 240, 0.75);
    box-shadow: none;
    padding: 16px;
}

.svc-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.svc-head h3 {
    margin: 0;
}

.svc-toggle {
    appearance: none;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(241, 245, 249, 0.9);
    border-radius: 999px;
    padding: 8px 10px;
    font-weight: 750;
    font-size: 12.5px;
    color: var(--text);
    cursor: pointer;
    flex: 0 0 auto;
}

.svc-toggle:hover {
    background: rgba(241, 245, 249, 1);
}

.svc-bullets {
    margin-top: 10px;
    color: var(--muted);
}

.svc-bullets li {
    margin: 6px 0;
}

.svc-body {
    margin-top: 14px;
}

.svc-panel {
    background: rgba(241, 245, 249, 0.55);
    border: 1px solid rgba(226, 232, 240, 0.70);
    border-radius: 16px;
    padding: 14px 14px;
}

.svc-note {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.7;
}

.svc-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.svc-step {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 12px;
}

.svc-step-title {
    font-weight: 850;
    color: var(--text);
    line-height: 1.2;
}

.svc-step-sub {
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.45;
}

.svc-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.svc-mini {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 14px;
}

.svc-mini-title {
    font-weight: 850;
    margin-bottom: 6px;
}

.svc-mini-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.svc-mini-list li {
    margin: 6px 0;
}

.svc-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.svc-title h3 {
    margin: 0;
}

.svc-card .svc-bullets {
    margin-left: calc(44px + 12px);
}

/* =========================
   PROOF BAND (Industries + Why Choose Us)
   ========================= */
.proof-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
}

.proof-panel {
    padding: 18px;
}

.proof-panel-head h3 {
    margin: 0;
}

.proof-panel-head .muted {
    margin-top: 6px;
    line-height: 1.6;
}

.proof-list {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.proof-list-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.proof-item {
    padding: 14px 14px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.proof-adv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
}

.proof-adv {
    padding: 14px 14px;
    border-radius: 16px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
    h1 {
        font-size: 30px;
    }

    .lead {
        font-size: 16px;
    }

    .grid.cols-3, .grid.cols-2 {
        grid-template-columns:1fr;
    }

    /* Mobile nav with hamburger */
    .hamburger {
        display: flex;
        order: -1;
    }

    /* Reduce logo size for mobile */
    .brand img {
        height: 35px;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 65px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        border-right: 1px solid var(--border);
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        padding: 20px 0;
        transition: left 0.3s ease;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        margin-left: 0;
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu a:hover {
        background: var(--soft);
    }

    /* Mobile hero layout */
    .hero {
        padding: 36px 0 28px;
    }

    .hero .hero-wrap {
        grid-template-columns:1fr;
    }

    /* Mobile image: NEVER CROP */
    .hero-media {
        padding: 10px;
        border-radius: 18px;
        background: #fefefe;
        border: 1px solid rgba(226, 232, 240, 0.6);
        box-shadow: none;
    }

    .hero-media img,
    .hero-photo {
        height: auto;
        max-height: 340px;
        object-fit: contain;
        object-position: center;
        background: transparent !important;
        transform: none;
        border-radius: 12px;
    }

    /* leadership */
    .leader-photo {
        width: 68px;
        height: 68px;
        border-radius: 16px;
    }

    .leader-linkedin {
        font-size: 16px;
    }

    /* industries */
    .industry-group {
        margin-top: 18px;
    }

    .industry-card {
        padding: 14px;
        border-radius: 16px;
    }

    .industry-ico, .ico-badge {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .industry-ico i, .ico-badge i {
        font-size: 21px;
    }

    .industry-ico img, .ico-badge img {
        width: 22px;
        height: 22px;
    }

    .industry-title {
        font-size: 16.5px;
    }

    /* about/values */
    .about-kpis {
        grid-template-columns:1fr;
    }

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

    .about-intro, .values-head {
        max-width: 100%;
    }

    /* services */
    .svc-card {
        padding: 16px 16px;
    }

    .svc-steps {
        grid-template-columns: 1fr;
    }

    .svc-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-list-2 {
        grid-template-columns: 1fr;
    }
}


/* =========================
   Floating WhatsApp Button
   ========================= */
   .whatsapp-float {
    position: fixed;
    left: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    z-index: 9999; /* higher than your sticky header (z-index: 100) */
  }
  
  .whatsapp-float i {
    font-size: 28px;
    line-height: 1;
  }
  
   /* Tooltip */
   .whatsapp-tooltip {
     position: absolute;
     left: 64px;
     bottom: 50%;
     transform: translateY(50%);
     background: #25D366;
     color: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.12);
     border-radius: 999px;
     padding: 8px 10px;
     font-size: 13px;
     font-weight: 700;
     white-space: nowrap;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
   }
   
   .whatsapp-tooltip::before {
     content: "";
     position: absolute;
     left: -6px;
     top: 50%;
     transform: translateY(-50%);
     border-width: 6px;
     border-style: solid;
     border-color: transparent #25D366 transparent transparent;
   }
  
  .whatsapp-float:hover .whatsapp-tooltip,
  .whatsapp-float:focus-visible .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
  }
  
  /* Optional: slightly smaller on very small screens */
  @media (max-width: 480px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      left: 14px;
      bottom: 14px;
    }
    .whatsapp-float i {
      font-size: 26px;
    }
  }
  
  /* =========================
   INSIGHTS (Homepage)
   ========================= */
.insights-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .insights-grid .insights-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .insights-title a {
    color: var(--text);
    text-decoration: none;
  }
  
  .insights-title a:hover {
    color: var(--brand);
    text-decoration: underline;
  }
  
  .insights-meta {
    font-size: 13px;
    font-weight: 700;
  }
  
  .insights-excerpt {
    margin: 0;
    line-height: 1.6;
  }
  
  .insights-read {
    margin-top: auto;
    font-weight: 750;
    text-decoration: none;
    color: var(--brand);
  }
  
  .insights-read:hover {
    text-decoration: underline;
  }

  /* Dummy/Coming Soon Cards */
  .insights-card-dummy {
    background-color: transparent;
    border: 2px dashed var(--border);
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
  }

  .insights-card-dummy:hover {
    transform: none;
    box-shadow: none;
  }
  