@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@400;500;600;700&display=swap");

:root {
    --primary-accent: #f28c28;
    --primary-structure: #1c2a39;
    --neutral-grey: #5a5a5a;
    --soft-light-grey: #efefef;
    --dark-orange: #c66a18;
    --slate-blue: #2e3b4e;
}

/* ─── Base ─── */
body {
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    background-color: var(--soft-light-grey);
    color: var(--neutral-grey);
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Sora", Arial, Helvetica, sans-serif;
    color: var(--primary-structure);
}

/* ─── Top info bar ─── */
.top-info {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: var(--primary-structure);
    height: 36px;
    transform: translateY(0);
    transition: transform 0.28s ease;
    max-width: 1380px;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 9px;

}

.top-info.is-hidden {
    transform: translateY(-100%);
}

.top-info-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-info-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.top-info-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
}

.top-info-contact a:hover { color: var(--primary-accent); }

.top-info-contact a svg { flex-shrink: 0; opacity: 0.7; }

.top-info-social {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.top-info-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.top-info-social a:hover {
    background: var(--primary-accent);
    color: #fff;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1rem 0;
    transition: top 0.28s ease, padding 0.28s ease, transform 0.28s ease;
}

.site-header .top-nav-shell {
    max-width: 1380px;
    margin: 0 auto;
    transition: box-shadow 0.28s ease, border-radius 0.28s ease, min-height 0.28s ease;
}

.site-header.header-scrolled { padding: 0.45rem 0; }

/* When scrolling down, slide header up behind the top-info bar (36px = top-info height) */
.site-header.header-scroll-down { top: calc(36px - 120px); }

.site-header.header-scrolled .top-nav-shell {
    min-height: 80px;
    box-shadow: 0px 10px 24px 2px rgba(28,42,57,0.2);
}

.site-header img { height: 80px; }

.top-nav-shell {
    background-color: #fff;
    border-radius: 1.1rem;
    min-height: 92px;
    display: flex;
    align-items: center;
    box-shadow: 0px 6px 15px 1px #d6d6d6;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
}

/* ─── Mobile toggle ─── */
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0.65rem;
    background-color: var(--soft-light-grey);
    margin-left: auto;
    padding: 9px 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--primary-structure);
    border-radius: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Nav ─── */
.brand-logo {
    font-family: "Sora", Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: var(--primary-structure);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
}

.top-menu {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 0.35rem;
    margin: 0;
}

.top-menu .nav-link {
    color: var(--primary-structure);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 9999px;
    padding: 0.65rem 1.2rem;
    position: relative;
}

.top-menu .nav-link.active,
.top-menu .show > .nav-link {
    background-color: var(--primary-accent);
    color: #fff;
}

.top-menu .nav-link:hover { color: var(--primary-accent); }

.top-menu .dropdown-toggle::after { display: none; }

.has-caret::after {
    content: "\203A";
    margin-left: 0.35rem;
    font-size: 0.85rem;
    display: inline-block;
    transform: rotate(90deg);
    opacity: 0.75;
}

/* Services nav button reset */
button.nav-link {
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

@media (min-width: 992px) {
    /* Extend the nav-item's hover target downward */
    .nav-item.dropdown {
        padding-bottom: 4px;
        margin-bottom: -4px;
    }

    /* Industries dropdown: visibility controlled by opacity */
    .nav-item.dropdown > .mega-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0s linear 0.22s;
    }

    .nav-item.dropdown > .mega-menu--industries {
        transform: translateX(-50%) translateY(-10px);
    }

    .nav-item.dropdown:hover > .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition:
            opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-item.dropdown:hover > .mega-menu--industries {
        transform: translateX(-50%) translateY(0);
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-icon-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 9999px;
    background-color: transparent;
    color: var(--primary-structure);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-touch {
    text-decoration: none;
    color: var(--primary-structure);
    font-weight: 600;
    min-width: 180px;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 9999px;
    border: 2px solid transparent;
    background: linear-gradient(#fff,#fff) padding-box,
                linear-gradient(90deg, var(--slate-blue), var(--primary-accent)) border-box;
}

/* ══════════════════════════════════════════
   MEGA MENU — Premium redesign
   ══════════════════════════════════════════ */

/* ── Shared container ── */
.mega-menu {
    text-transform: none;
    letter-spacing: 0;
    background: #fff;
    border: 1px solid rgba(28,42,57,0.09);
    border-radius: 1.4rem;
    box-shadow: 0 8px 16px rgba(28,42,57,0.06), 0 24px 64px rgba(28,42,57,0.13);
    /* margin-top: 0 — eliminates hover gap that caused dropdown to disappear */
    margin-top: 0;
    overflow: hidden;
}

/* Orange top bar */
.mega-menu::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--dark-orange) 50%, var(--slate-blue) 100%);
}

/* ══════════════════════════════════════════
   SERVICES MEGA MENU — Flyout (3-column)
   ══════════════════════════════════════════ */

/* Chevron in Services nav button */
.nav-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    vertical-align: middle;
}
#servicesNavItem.active .nav-chevron {
    transform: rotate(180deg);
}

/* Backdrop */
.mega-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 20, 32, 0.35);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    z-index: 1029;
}
.mega-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

/* Mega Wrap — absolute inside .site-header (position:fixed), spans full viewport width */
.mega-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* Bridge the header's bottom padding so there's no hover gap */
    margin-top: -1rem;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.mega-wrap.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
/* Adjust gap bridge for compact scrolled header */
.site-header.header-scrolled .mega-wrap {
    margin-top: -0.45rem;
}

/* Panel */
.mega-panel {
    max-width: 1150px;
    margin: 0 auto;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    display: grid;
    grid-template-columns: 260px 1fr 280px;
    overflow: hidden;
    min-height: 480px;
}

/* ── COL 1: Category Sidebar ── */
.cat-col {
    background: var(--primary-structure);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
}
.cat-col-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}
.cat-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    transition: background 0.18s;
    position: relative;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: "Manrope", sans-serif;
    text-transform: none;
    letter-spacing: 0;
}
.cat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary-accent);
    opacity: 0;
    transition: opacity 0.18s;
    border-radius: 0 2px 2px 0;
}
.cat-item:hover,
.cat-item.active {
    background: rgba(255, 255, 255, 0.06);
}
.cat-item.active::before { opacity: 1; }

.cat-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    flex-shrink: 0;
    transition: background 0.18s, color 0.18s;
}
.cat-item.active .cat-icon,
.cat-item:hover .cat-icon {
    background: rgba(242, 140, 40, 0.15);
    color: var(--primary-accent, #f28c28);
}
.cat-text { flex: 1; min-width: 0; }
.cat-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cat-item.active .cat-name { color: #fff; }
.cat-count {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    display: block;
    margin-top: 1px;
}
.cat-item.active .cat-count { color: var(--primary-accent); }
.cat-arrow {
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.18s, transform 0.18s;
    flex-shrink: 0;
}
.cat-item.active .cat-arrow,
.cat-item:hover .cat-arrow {
    color: var(--primary-accent);
    transform: translateX(3px);
}
.cat-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.5rem 1.5rem;
}
.cat-bottom {
    margin-top: auto;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.cat-bottom-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.5rem;
    display: block;
}
.cat-browse-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    padding: 0;
    text-transform: none;
    letter-spacing: 0;
}
.cat-browse-btn:hover { gap: 0.7rem; color: var(--primary-accent); }

/* ── COL 2: Services Flyout ── */
.services-col {
    position: relative;
    overflow: hidden;
}
.svc-panel {
    position: absolute;
    inset: 0;
    padding: 1.75rem 2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(16px);
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-panel.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
    position: relative;
    inset: auto;
}
.svc-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--soft-light-grey);
    gap: 1rem;
}
.svc-panel-title {
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-structure);
    line-height: 1.2;
}
.svc-panel-desc {
    font-size: 0.8rem;
    color: var(--neutral-grey);
    margin-top: 0.25rem;
    line-height: 1.5;
    max-width: 380px;
}
.svc-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-accent);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: gap 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    padding: 0;
    text-transform: none;
    letter-spacing: 0;
}
.svc-view-all:hover { gap: 0.6rem; color: var(--dark-orange); }
.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
}
.svc-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.svc-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.18s;
    background: none;
    border: none;
    font-family: "Manrope", sans-serif;
    width: 100%;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
}
.svc-item:hover { background: #f8f6f2; }
.svc-item:hover .svc-dot { background: var(--primary-accent); border-color: var(--primary-accent); }
.svc-item:hover .svc-name { color: var(--primary-structure); }
.svc-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--soft-light-grey);
    flex-shrink: 0;
    transition: background 0.18s;
    border: 1.5px solid #d0d0d0;
}
.svc-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--neutral-grey);
    line-height: 1.3;
    transition: color 0.18s;
}
.svc-focus {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--soft-light-grey);
}
.svc-focus-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark-orange);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}
.svc-focus-label::before {
    content: '';
    display: block;
    width: 16px; height: 2px;
    background: var(--primary-accent);
    border-radius: 2px;
}
.svc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.svc-pill {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(242, 140, 40, 0.08);
    border: 1px solid rgba(242, 140, 40, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--dark-orange);
    text-decoration: none;
    transition: all 0.18s;
    text-transform: none;
    letter-spacing: 0;
}
.svc-pill:hover {
    background: var(--primary-accent);
    color: #fff;
    border-color: var(--primary-accent);
}

/* ── COL 3: Why Aksharaa ── */
.why-col {
    background: #f8f6f2;
    border-left: 1px solid var(--soft-light-grey);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.why-head {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dark-orange);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.why-head::before {
    content: '';
    display: block;
    width: 16px; height: 2px;
    background: var(--primary-accent);
}
.why-title {
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-structure);
    line-height: 1.25;
    margin-top: 0.5rem;
}
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.stat-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 0.85rem;
    transition: border-color 0.2s;
}
.stat-box:hover { border-color: var(--primary-accent); }
.stat-num {
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-structure);
    line-height: 1;
}
.stat-num span { color: var(--primary-accent); }
.stat-label {
    font-size: 0.7rem;
    color: var(--neutral-grey);
    margin-top: 0.2rem;
    line-height: 1.35;
}
.why-checks {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.why-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--slate-blue);
    font-weight: 500;
}
.check-tick {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(242, 140, 40, 0.1);
    border: 1.5px solid rgba(242, 140, 40, 0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.55rem;
    color: var(--primary-accent);
    margin-top: 1px;
}
.why-cta { margin-top: auto; }
.why-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-accent);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    text-transform: none;
    letter-spacing: 0;
}
.why-cta-btn:hover { background: var(--dark-orange); transform: translateY(-1px); color: #fff; }
.why-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--slate-blue);
    text-decoration: none;
    transition: color 0.2s;
    border: none;
    background: none;
    font-family: "Manrope", sans-serif;
    text-transform: none;
    letter-spacing: 0;
}
.why-cta-secondary:hover { color: var(--primary-accent); }

/* Mobile: hide mega menu completely */
@media (max-width: 991.98px) {
    .mega-wrap,
    .mega-backdrop { display: none !important; }
}

/* ── Industries Mega Menu ── */
.ind-col {
    background: var(--primary-structure);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
}
.ind-col-label {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}
.ind-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.68rem 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: "Manrope", sans-serif;
    transition: background .18s;
    position: relative;
}
.ind-item:hover { background: rgba(255,255,255,.07); }
.ind-item.active { background: rgba(242,140,40,.12); }
.ind-item.active::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary-accent);
    border-radius: 2px 0 0 2px;
}
.ind-icon-box {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.55);
    font-size: 0.8rem;
    transition: background .2s, color .2s;
}
.ind-item.active .ind-icon-box { background: rgba(242,140,40,.15); color: var(--primary-accent); }
.ind-item:hover .ind-icon-box { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.ind-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    line-height: 1.2;
    transition: color .18s;
    flex: 1;
}
.ind-item.active .ind-name, .ind-item:hover .ind-name { color: #fff; }
.ind-arrow { color: rgba(255,255,255,.2); flex-shrink: 0; transition: color .18s; }
.ind-item.active .ind-arrow, .ind-item:hover .ind-arrow { color: rgba(255,255,255,.5); }
.ind-col-footer {
    margin-top: auto;
    padding: .75rem 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.ind-browse-all {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .74rem;
    font-weight: 600;
    color: var(--primary-accent);
    text-decoration: none;
    transition: gap .2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    padding: 0;
}
.ind-browse-all:hover { gap: .65rem; }
/* Detail col */
.detail-col {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.detail-panel {
    display: none;
    position: absolute;
    top: 1.5rem; left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    transition: transform .22s cubic-bezier(.4,0,.2,1), opacity .22s cubic-bezier(.4,0,.2,1);
}
.detail-panel.active { display: flex; }
.detail-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid #e8ecf0;
}
.detail-head-left {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    flex: 1;
}
.detail-head-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(242,140,40,.1);
    border: 1px solid rgba(242,140,40,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    font-size: 1.1rem;
}
.detail-title {
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary-structure);
    margin-bottom: .2rem;
}
.detail-desc {
    font-size: .76rem;
    color: var(--neutral-grey);
    line-height: 1.5;
}
.detail-view-all {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 600;
    color: var(--primary-accent);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: gap .2s;
    margin-top: .1rem;
}
.detail-view-all:hover { gap: .55rem; }
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .3rem .75rem;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    color: var(--neutral-grey);
    text-decoration: none;
    padding: .35rem .5rem;
    border-radius: 6px;
    transition: background .15s, color .15s;
}
.detail-item:hover { background: rgba(242,140,40,.06); color: var(--primary-structure); }
.detail-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-accent);
    flex-shrink: 0;
    opacity: .5;
}
.detail-item:hover .detail-dot { opacity: 1; }
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: auto;
    padding-top: .5rem;
}
.detail-tag {
    font-size: .68rem;
    font-weight: 600;
    background: rgba(242,140,40,.08);
    border: 1px solid rgba(242,140,40,.15);
    color: var(--dark-orange);
    border-radius: 100px;
    padding: .2rem .65rem;
    text-decoration: none;
    transition: background .15s;
}
.detail-tag:hover { background: rgba(242,140,40,.15); }

/* ─── Hero ─── */
.hero-banner {
    padding: 1.25rem 1rem 2.5rem;
    position: relative;
    overflow: hidden;
    /* Light overlay layered on top of the abstract image */
    background-image:
        url("images/abstract.jpg.jpeg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    margin-top: -193px;
}

/* Animated soft blob — orange, top-right */
.hero-banner::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -120px;
    width: 580px;
    height: 580px;
    background: radial-gradient(ellipse at center, rgba(242,140,40,0.13) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: hero-blob-drift 14s ease-in-out infinite;
}

/* Animated soft blob — navy, bottom-left */
.hero-banner::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 460px;
    height: 460px;
    background: radial-gradient(ellipse at center, rgba(28,42,57,0.07) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: hero-blob-drift 18s ease-in-out infinite reverse;
}

.hero-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 6rem 3rem 6rem;
    /* 36px top-info + ~112px site-header + breathing room */
    padding-top: calc(36px + 112px + 3rem);
    position: relative;
    z-index: 1;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative ring — top-right, slow float */
.hero-inner::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 52px solid rgba(242,140,40,0.10);
    pointer-events: none;
    z-index: 0;
    animation: hero-float 9s ease-in-out infinite;
}

/* Dot grid — bottom-left */
.hero-inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 260px;
    height: 180px;
    background-image:
        radial-gradient(circle, rgba(28,42,57,0.09) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
    animation: hero-dots-fade 6s ease-in-out infinite;
}

/* Content column — centered */
.hero-inner .content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Kicker pill — fades in first */
.hero-inner .content::before {
    content: "✦  Trusted by 500+ Businesses Across India";
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-accent);
    background: rgba(242,140,40,0.10);
    border: 1px solid rgba(242,140,40,0.30);
    border-radius: 9999px;
    padding: 0.38rem 1.1rem;
    margin-bottom: 1.6rem;
    animation: hero-fade-up 0.6s ease both;
    animation-delay: 0.05s;
}

/* Main heading */
.hero-inner .content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem) !important;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    color: var(--primary-structure);
    letter-spacing: -0.03em;
    line-height: 1.08;
    text-align: center;
    margin-bottom: 0;
    animation: hero-fade-up 0.65s ease both;
    animation-delay: 0.2s;
}

.hero-gradient-word {
    background: conic-gradient(
        from var(--hero-gradient-rot, 0turn),
        var(--primary-accent) 0deg,
        #ffb35f 90deg,
        var(--dark-orange) 180deg,
        var(--slate-blue) 270deg,
        var(--primary-accent) 360deg
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: hero-gradient-spin 3.2s linear infinite;
}

@property --hero-gradient-rot {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0turn;
}

@keyframes hero-gradient-spin {
    to {
        --hero-gradient-rot: 1turn;
    }
}

/* Orange underline — draws left → right after heading appears */
.hero-inner .content h1::after {
    content: "";
    display: block;
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), var(--dark-orange));
    border-radius: 9999px;
    margin: 1rem auto 0;
    transform-origin: left center;
    animation: hero-underline-draw 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-delay: 0.7s;
}

/* Sub-paragraph */
.hero-inner .content p {
    color: var(--neutral-grey);
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    animation: hero-fade-up 0.65s ease both;
    animation-delay: 0.38s;
}

/* CTA button */
.hero-inner .btn.btn-primary {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: #fff;
    border-radius: 9999px;
    padding: 0.9rem 2.4rem;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 8px 28px rgba(242,140,40,0.28);
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    animation: hero-fade-up 0.65s ease both;
    animation-delay: 0.54s;
}

.hero-inner .btn.btn-primary::after {
    content: "→";
    font-size: 1rem;
    transition: transform 0.22s ease;
}

.hero-inner .btn.btn-primary:hover {
    background: var(--dark-orange);
    border-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(242,140,40,0.40);
}

.hero-inner .btn.btn-primary:hover::after {
    transform: translateX(5px);
}

/* Warm glow behind the button row */
.hero-inner .content .btn.btn-primary {
    position: relative;
    overflow: visible;
}
.hero-inner .content .btn.btn-primary::before {
    content: "";
    position: absolute;
    inset: -24px;
    background: radial-gradient(ellipse 130px 70px at 50% 50%, rgba(242,140,40,0.14), transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: hero-glow-pulse 3s ease-in-out infinite;
}

/* Hero image column */
.hero-visual {
    flex: 0 0 auto;
    width: clamp(280px, 44%, 520px);
    position: relative;
    z-index: 1;
    animation: hero-fade-up 0.8s ease both;
    animation-delay: 0.3s;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    display: block;
    box-shadow:
        0 20px 60px rgba(28,42,57,0.14),
        0 4px 16px rgba(28,42,57,0.08);
}

/* ── Hero keyframes ── */
@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-underline-draw {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

@keyframes hero-float {
    0%, 100% { transform: translate(0, 0); }
    33%       { transform: translate(-8px, 10px); }
    66%       { transform: translate(6px, -8px); }
}

@keyframes hero-blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(28px, -22px) scale(1.06); }
    70%       { transform: translate(-16px, 18px) scale(0.96); }
}

@keyframes hero-dots-fade {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}

@keyframes hero-glow-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.15); }
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--primary-accent);
    font-size: 0.85rem;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
}

.hero-text {
    max-width: 520px;
    font-size: 1rem;
    color: var(--neutral-grey);
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-btn {
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.hero-btn-primary { background-color: var(--primary-accent); color: #fff; }
.hero-btn-primary:hover { background-color: var(--dark-orange); color: #fff; }
.hero-btn-secondary { color: var(--primary-structure); border: 1.5px solid var(--primary-structure); }
.hero-btn-secondary:hover { color: var(--primary-accent); border-color: var(--primary-accent); }

/* Hero mini-stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat-num {
    font-family: "Sora", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-structure);
    line-height: 1;
}

.hero-stat-num sup {
    font-size: 1rem;
    color: var(--primary-accent);
}

.hero-stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--neutral-grey);
    margin-top: 0.2rem;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(28,42,57,0.18);
}

/* Hero visual */
.hero-visual {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-blob {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-img-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 32px rgba(28,42,57,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    z-index: 2;
    position: relative;
}

.hero-blob-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-blob-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-accent);
    opacity: 0.18;
    animation: blob-pulse 3s ease-in-out infinite;
}

.hero-blob-ring--1 { width: 220px; height: 220px; animation-delay: 0s; }
.hero-blob-ring--2 { width: 260px; height: 260px; animation-delay: 1s; }

@keyframes blob-pulse {
    0%, 100% { transform: scale(1); opacity: 0.18; }
    50% { transform: scale(1.04); opacity: 0.28; }
}

/* Hero floating cards */
.hero-visual-card {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 20px rgba(28,42,57,0.14);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 210px;
    z-index: 3;
}

.hero-visual-card--top { top: 10px; left: -20px; }
.hero-visual-card--bottom { bottom: 10px; right: -20px; }

.hvc-icon {
    width: 42px;
    height: 42px;
    border-radius: 0.6rem;
    background: rgba(242,140,40,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hvc-icon--green { background: rgba(34,197,94,0.1); }

.hvc-title {
    font-family: "Sora", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-structure);
    margin: 0;
}

.hvc-sub {
    font-size: 0.72rem;
    color: var(--neutral-grey);
    margin: 0;
    margin-top: 2px;
}

/* ─── Clients ─── */
.clients-section { padding: 2rem 1rem 1rem; 
background: #f7f7f7;}

.clients-header {
    max-width: 1380px;
    margin: 0 auto 1rem;
}

.clients-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--primary-accent);
    font-size: 0.85rem;
}

.clients-title { font-size: clamp(1.4rem, 3vw, 2.1rem); }

.clients-slider {
    max-width: 1380px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1rem;
}

.clients-track {
    display: flex;
    width: max-content;
    gap: 0.85rem;
    padding: 1rem;
    animation: clients-scroll 36s linear infinite;
    will-change: transform;
}

.clients-slider:hover .clients-track { animation-play-state: paused; }

.client-logo {
    background-color: #fff;
    border-radius: 0.3rem;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    box-shadow: 5px 4px 3px #e3e2e2;
    margin: 0 10px;
}

.client-logo img { width: 100%; height: 100%; object-fit: contain; }

@keyframes clients-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ─── Section shared ─── */
.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--primary-accent);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-sub {
    color: var(--neutral-grey);
    max-width: 600px;
    margin-bottom: 2rem;
}

.section-head { margin-bottom: 2.5rem; }

/* ─── Services ─── */
.services-section { padding: 4rem 1rem; }

.services-inner {
    max-width: 1380px;
    margin: 0 auto;
}

/* ── Section header ── */
.svc-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.svc-kicker-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.85rem;
}

/* Gradient fade lines — more elegant than flat bars */
.svc-kicker-line {
    width: 48px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-accent));
}

.svc-kicker-line:last-child {
    background: linear-gradient(90deg, var(--primary-accent), transparent);
}

.svc-kicker-text {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-accent);
}

.svc-main-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--primary-structure);
    margin: 0;
    line-height: 1.2;
}

/* Accent word with underline decoration */
.svc-main-title em {
    font-style: normal;
    color: var(--primary-accent);
    position: relative;
}

.svc-main-title em::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2.5px;
    background: var(--primary-accent);
    border-radius: 2px;
    opacity: 0.3;
}

/* ── List service cards ── */
.svc-list-card {
    background: #fff;
    border-radius: 1.2rem;
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1.5px solid rgba(28, 42, 57, 0.08);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

/* Animated bottom-edge accent bar */
.svc-list-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent), var(--dark-orange));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.svc-list-card:hover {
    box-shadow: 0 16px 48px rgba(28, 42, 57, 0.12);
    transform: translateY(-7px);
    border-color: rgba(242, 140, 40, 0.22);
}

.svc-list-card:hover::after { transform: scaleX(1); }

/* Icon: orange gradient with shadow glow */
.svc-list-icon {
    width: 58px;
    height: 58px;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--dark-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(242, 140, 40, 0.32);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.svc-list-card:hover .svc-list-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(242, 140, 40, 0.45);
}

/* Card title */
.svc-list-title {
    font-family: "Sora", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--primary-structure);
    margin-bottom: 1.3rem;
    line-height: 1.3;
}

/* Service list */
.svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.svc-list li {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    font-size: 0.875rem;
    color: var(--neutral-grey);
    line-height: 1.5;
    transition: color 0.18s ease;
    cursor: default;
}

/* Double-chevron bullet with slide animation */
.svc-list li::before {
    content: "\00BB";
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
    transition: transform 0.18s ease;
}

.svc-list li:hover { color: var(--primary-structure); }
.svc-list li:hover::before { transform: translateX(3px); }

/* ─── Expert / Credibility Section ─── */
.expert-section {

    padding: 5rem 1.5rem;
    background: #fff;
    border-radius: 1.5rem;
}
.exper-inner {
    max-width: 1380px;
    margin: 0 auto;
}

.exper-inner > .row {
    align-items: stretch;
    --bs-gutter-x: 3.5rem;
}

/* Image: fills full height of content column */
.expert-section .col-md-5 {
    display: flex;
}

.expert-section .col-md-5 img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 1.25rem;
    display: block;
}

/* Right content column */
.expert-section .col-md-7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section heading */
.expert-section h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-structure);
    margin-bottom: 2.25rem;
}

/* Inner stat rows */
.expert-section .col-md-7 .row {
    align-items: center;
}

/* Paragraph copy */
.expert-section .col-md-8 p {
    font-size: 0.92rem;
    color: var(--neutral-grey);
    line-height: 1.8;
    margin: 0;
    padding-right: 2.5rem;
}

/* Ghost / outline stat numbers */
.expert-section .col-md-4 h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    background: linear-gradient(120deg, var(--primary-accent) 0%, var(--dark-orange) 45%, var(--slate-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 6px 18px rgba(198, 106, 24, 0.28), 0 2px 6px rgba(28, 42, 57, 0.2);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 0.3rem;
}

.expert-section .col-md-4 span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-structure);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* Divider between the two stat rows */
.expert-section .row.mt-4 {
    margin-top: 2rem !important;
    padding-top: 2rem;
    border-top: 1px solid rgba(28, 42, 57, 0.08);
}

/* Explore More — split-pill button (CSS-only, no HTML change) */
.expert-section .btn.btn-primary {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 1.6rem 0 0;
    background: transparent;
    border: 1.5px solid rgba(28, 42, 57, 0.5);
    border-radius: 9999px;
    overflow: hidden;
    color: var(--primary-structure);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 2.5rem;
    box-shadow: none !important;
    transition: border-color 0.2s, color 0.2s;
}

/* Arrow icon injected via ::before */
.expert-section .btn.btn-primary::before {
    content: "›";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-structure);
    color: #fff;
    font-size: 1.35rem;
    margin-right: 1rem;
    flex-shrink: 0;
    line-height: 1;
    transition: background-color 0.2s;
}

.expert-section .btn.btn-primary:hover,
.expert-section .btn.btn-primary:focus {
    background: transparent;
    color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.expert-section .btn.btn-primary:hover::before,
.expert-section .btn.btn-primary:focus::before {
    background: var(--primary-accent);
}

.expert-section .btn.btn-primary:active {
    background: transparent !important;
    color: var(--dark-orange) !important;
    border-color: var(--dark-orange) !important;
}

.svc-card {
    background: #fff;
    border-radius: 1.1rem;
    padding: 2rem 1.5rem;
    height: 100%;
    border: 1px solid rgba(28,42,57,0.08);
    transition: box-shadow 0.22s, transform 0.22s;
}

.svc-card:hover {
    box-shadow: 0 8px 28px rgba(28,42,57,0.12);
    transform: translateY(-3px);
}

.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.85rem;
    background: rgba(242,140,40,0.1);
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.svc-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.svc-text {
    font-size: 0.9rem;
    color: var(--neutral-grey);
    margin-bottom: 1rem;
    line-height: 1.65;
}

.svc-link {
    text-decoration: none;
    color: var(--primary-accent);
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.18s;
}

.svc-link:hover { color: var(--dark-orange); }

/* ─── Showcase (expand/collapse + marquee) ─── */
.showcase-section {
    padding: 0 0 5rem;
    overflow: hidden;
}

/* Marquee title */
.showcase-marquee {
    overflow: hidden;
    padding: 10px;
    border-bottom: 1px solid rgba(28,42,57,0.08);
    margin-bottom: 2.5rem;
    background: #fff;
    font-size: 35px;
    color:var(--primary-structure);
}
.showcase-marquee-track {
    display: flex;
    width: max-content;
    animation: showcase-rtl 28s linear infinite;
}
.showcase-marquee:hover .showcase-marquee-track {
    animation-play-state: paused;
}
.showcase-marquee-item {
    white-space: nowrap;
    font-family: "Sora", sans-serif;
    
    font-weight: 800;
    letter-spacing: -0.02em; 

    user-select: none;
}
@keyframes showcase-rtl {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Accordion card row */
.showcase-wrap {
    display: flex;
    gap: 0.9rem;
    height: 460px;
    padding: 0 max(1.5rem, calc((100% - 1280px) / 2));
    box-sizing: border-box;
}
.showcase-card {
    --showcase-bg: none;
    --showcase-image-opacity: 0;
    flex: 1;
    border-radius: 1.4rem;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.8rem;
    cursor: pointer;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-card:hover { flex: 2.6; }

.showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--showcase-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: var(--showcase-image-opacity);
    transform: scale(1);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 10%, rgba(0, 0, 0, 0.35) 100%);
    opacity: var(--showcase-image-opacity);
}

.showcase-card:hover::before { transform: scale(1.06); }

.showcase-card > * {
    position: relative;
    z-index: 1;
}

/* Colour variants — gradient + subtle dot-grid pattern overlay */
.showcase-card--light {
    background:
        radial-gradient(circle, rgba(28,42,57,0.055) 1px, transparent 1px) center/22px 22px,
        linear-gradient(145deg, #f7f6f3 0%, #eceae6 100%);
    color: var(--primary-structure);
}
.showcase-card--dark {
    background:
        radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px) center/22px 22px,
        linear-gradient(145deg, #1c2a39 0%, #243447 60%, #2e3b4e 100%);
    color: #fff;
}
.showcase-card--accent {
    background:
        radial-gradient(circle, rgba(255,255,255,0.09) 1px, transparent 1px) center/22px 22px,
        linear-gradient(145deg, #f59332 0%, #f28c28 50%, #c96e1a 100%);
    color: #fff;
}
.showcase-card--slate {
    background:
        radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px) center/22px 22px,
        linear-gradient(145deg, #2e3b4e 0%, #243447 60%, #1c2a39 100%);
    color: #fff;
}

/* Showcase image variants */
.showcase-card--img-1 {
    --showcase-bg: url("images/building.png");
    --showcase-image-opacity: 0.24;
}
.showcase-card--img-2 {
    --showcase-bg: url("images/abstract.jpg.jpeg");
    --showcase-image-opacity: 0.26;
}
.showcase-card--img-3 {
    --showcase-bg: url("images/client/mercedes.jpg");
    --showcase-image-opacity: 0.30;
}
.showcase-card--img-4 {
    --showcase-bg: url("images/client/godrej.jpg");
    --showcase-image-opacity: 0.28;
}

/* Icon circle top-left */
.showcase-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.showcase-card--light  .showcase-card-icon { background: rgba(28,42,57,0.08); }
.showcase-card--dark   .showcase-card-icon { background: rgba(255,255,255,0.12); }
.showcase-card--accent .showcase-card-icon { background: rgba(255,255,255,0.22); }
.showcase-card--slate  .showcase-card-icon { background: rgba(255,255,255,0.12); }

/* Card body — title fades in on expand */
.showcase-card-body {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0.6rem;
}
.showcase-card-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.1rem, 1.6vw, 1.55rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
    white-space: nowrap;
}
.showcase-card:hover .showcase-card-title {
    opacity: 1;
    transform: translateY(0);
}

/* Card footer: tag label + arrow button */
.showcase-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.showcase-card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease 0.15s;
    white-space: nowrap;
}
.showcase-card:hover .showcase-card-tag { opacity: 0.7; }

.showcase-card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.showcase-card--light  .showcase-card-arrow { background: var(--primary-structure); color: #fff; }
.showcase-card--dark   .showcase-card-arrow { background: var(--primary-accent); color: #fff; }
.showcase-card--accent .showcase-card-arrow { background: #fff; color: var(--primary-accent); }
.showcase-card--slate  .showcase-card-arrow { background: var(--primary-accent); color: #fff; }
.showcase-card-arrow:hover { transform: rotate(-45deg) scale(1.1); }

/* Showcase responsive */
@media (max-width: 991.98px) {
    .showcase-wrap { height: auto; flex-wrap: wrap; }
    .showcase-card { flex: 1 1 calc(50% - 0.5rem); min-height: 220px; }
    .showcase-card:hover { flex: 1 1 calc(50% - 0.5rem); }
    .showcase-card-title { opacity: 1; transform: none; }
    .showcase-card-tag { opacity: 0.7; }
}
@media (max-width: 575.98px) {
    .showcase-card { flex: 1 1 100%; }
    .showcase-marquee-item { font-size: 1.6rem; }
}

/* ─── How It Works ─── */
.howit-section {
    padding: 2rem 1rem;
}

.howit-inner {
    max-width: 1380px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.5rem;
    padding: 4.5rem 4rem;
}

/* Header: two-column — heading left, nav right */
.howit-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4.5rem;
}

.howit-header-left { flex: 1; }

.howit-kicker {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--neutral-grey);
    letter-spacing: 0.04em;
    margin-bottom: 0.85rem;
    font-weight: 400;
}

.howit-title {
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--primary-structure);
    margin: 0;
}

/* Circular nav arrows */
.howit-header-right {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    padding-bottom: 0.25rem;
}

.howit-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(28, 42, 57, 0.22);
    background: transparent;
    color: var(--primary-structure);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.22s, border-color 0.22s, color 0.22s;
}

.howit-nav:hover {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: #fff;
}

/* Steps: 4-column grid with vertical dividers */
.howit-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
}

.howit-step {
    padding: 0 2.5rem;
    border-left: 1px solid rgba(28, 42, 57, 0.1);
    transition: border-color 0.22s;
}

.howit-step:first-child {
    padding-left: 0;
    border-left: none;
}

/* Ghost outline step numbers — same technique as expert stats */
.howit-num {
    display: block;
    position: relative;
    width: fit-content;
    font-family: "Sora", sans-serif;
    font-size: clamp(4rem, 6vw, 6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px var(--primary-accent), 0 4px 2px var(--primary-structure)  ;
}

/* Gradient outline layer */
.howit-num::before {
    content: attr(data-num);
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        #3f6fd9 0%,
        #5b83ff 18%,
        #7a6fd6 36%,
        #a96ad1 54%,
        #d46bb5 72%,
        #ef7d8e 86%,
        #ff9a5c 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    pointer-events: none;
    z-index: -1;
    filter: saturate(1.05);
    transform: scale(1.045);
    transform-origin: left 58%;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover: richer outlined gradient */
.howit-step:hover .howit-num {
    text-shadow: 0 3px 10px rgba(229, 106, 120, 0.12);
}
.howit-step:hover .howit-num::before {
    transform: scale(1.06);
    filter: saturate(1.2) brightness(1.05);
}

.howit-step:hover {
    border-color: rgba(242, 140, 40, 0.25);
}

/* "/ step /" italic label */
.howit-step-label {
    display: block;
    font-size: 0.76rem;
    font-style: italic;
    color: var(--primary-accent);
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.howit-step-title {
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary-structure);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.howit-step-text {
    font-size: 0.875rem;
    color: var(--neutral-grey);
    line-height: 1.78;
    margin: 0;
}

/* ─── Why Us ─── */
.whyus-section { padding: 3rem 1rem; }

.whyus-inner {
    max-width: 1380px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.5rem;
    padding: 3.5rem 3rem;
}

.whyus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.whyus-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--neutral-grey);
}

.whyus-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(242,140,40,0.12);
    color: var(--primary-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Stats cards */
.stat-card {
    background: var(--soft-light-grey);
    border-radius: 1.1rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border: 1px solid rgba(28,42,57,0.07);
}

.stat-card--accent { background: var(--primary-accent); }
.stat-card--accent .stat-num,
.stat-card--accent .stat-label { color: #fff; }
.stat-card--accent .stat-num sup { color: rgba(255,255,255,0.8); }

.stat-card--dark { background: var(--primary-structure); }
.stat-card--dark .stat-num,
.stat-card--dark .stat-label { color: #fff; }

.stat-num {
    font-family: "Sora", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-structure);
    line-height: 1;
}

.stat-num sup {
    font-size: 1.1rem;
    color: var(--primary-accent);
}

.stat-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--neutral-grey);
    font-weight: 600;
}

/* ─── Footer ─── */
.site-footer {
    background-color: var(--primary-structure);
    color: var(--soft-light-grey);
    border-radius: 15px;
    margin: 20px;
}

.site-footer h6 { color: var(--primary-accent); }

.footer-link { color: var(--soft-light-grey); text-decoration: none; }
.footer-link:hover { color: var(--primary-accent); text-decoration: underline; }

.footer-bottom {
    /* background-color: var(--slate-blue); */
    border-top: 1px solid rgba(239,239,239,0.2);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .top-nav-shell { flex-wrap: wrap; justify-content: center; }
    .top-menu { order: 3; width: 100%; justify-content: center; padding-top: 0.25rem; }
    .hero-inner, .whyus-inner { padding: 2rem 1.5rem; }
}

@media (max-width: 991.98px) {
    body { padding-top: 112px; }

    .top-nav-shell { justify-content: space-between; align-items: center; padding: 0.65rem 0.85rem; }
    .site-header img { height: 64px; }
    .mobile-menu-toggle { display: inline-flex; }

    .top-menu, .nav-actions { display: none; width: 100%; margin-top: 0.75rem; }

    .site-header.menu-open .top-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
    }

    .site-header.menu-open .nav-actions {
        display: flex;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(28,42,57,0.12);
        justify-content: space-between;
    }

    .top-menu .nav-link { width: 100%; border-radius: 0.65rem; padding: 0.75rem 0.9rem; }
    .nav-actions .cta-touch { min-width: 0; flex: 1; }

    .top-menu .dropdown-menu,
    .mega-menu--services,
    .mega-menu--industries {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        left: 0 !important;
        margin-top: 0.35rem;
        padding: 0.75rem;
        border: 1px solid rgba(28,42,57,0.10);
        box-shadow: none;
        border-radius: 0.75rem;
    }

    .mega-menu::before { display: none; }

    .mega-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: unset;
        gap: 0;
    }
    .mega-col {
        border-right: none;
        border-bottom: 1px solid rgba(28,42,57,0.07);
        padding: 1rem 0.75rem;
    }
    .mega-col:first-child { padding-left: 0.75rem; }
    .mega-col:last-child { border-bottom: none; }
    .mega-list li a { white-space: normal; }

    .mega-feature {
        grid-column: 1 / -1;
        border-radius: 0;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 1rem 0.75rem;
    }
    .mega-feature::before { display: none; }
    .mega-feature-title { margin: 0; font-size: 0.85rem; }
    .mega-feature-stats { flex-direction: row; flex-wrap: wrap; gap: 0.4rem 1rem; margin: 0; }
    .mega-feature-cta { margin-left: auto; white-space: nowrap; padding: 0.4rem 0.85rem; }

    .mega-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .mega-industries-grid { grid-template-columns: 1fr 1fr; }

    .mega-menu--industries { padding: 0.75rem; }

    /* Hero responsive */
    .hero-inner { padding: 4.5rem 2rem; min-height: 420px; }
    .hero-inner .content h1 { font-size: clamp(2rem, 6vw, 3.4rem) !important; }
    .hero-visual { width: 300px; height: 300px; }
    .hero-visual-img-wrap { width: 140px; height: 140px; }
    .hero-visual-card { min-width: 170px; }
    .hero-visual-card--top { top: 0; left: -10px; }
    .hero-visual-card--bottom { bottom: 0; right: -10px; }

    /* How It Works — tablet (2 × 2 grid) */
    .howit-inner { padding: 3rem 2rem; }
    .howit-header { margin-bottom: 3rem; }
    .howit-steps { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
    .howit-step:nth-child(3) { border-left: 1px solid rgba(28,42,57,0.1); }
    .howit-step:nth-child(2) { border-left: none; padding-left: 0; }

    .whyus-inner { padding: 2rem 1.25rem; }

    /* Expert section — tablet */
    .expert-section { padding: 3.5rem 1rem; border-radius: 1rem; }
    .exper-inner > .row { --bs-gutter-x: 2rem; }
    .expert-section .col-md-5 img { max-height: 420px; }
    .expert-section .col-md-8 p { padding-right: 1.25rem; }
}

@media (max-width: 767.98px) {
    /* Expert section — mobile: stack vertically */
    .expert-section .col-md-5 { margin-bottom: 2rem; }
    .expert-section .col-md-5 img { max-height: 280px; }
    .expert-section .col-md-8 p { padding-right: 0; }
    .expert-section .col-md-4 h1 { font-size: 3rem; }
    .exper-inner > .row { --bs-gutter-x: 1.5rem; }
}

@media (max-width: 575.98px) {
    /* Hero — mobile */
    .hero-inner { padding: 3.5rem 1.25rem; min-height: 0; border-radius: 1.4rem; }
    .hero-inner .content h1 { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; }
    .hero-inner .content p { font-size: 0.95rem; }
    .hero-inner::before { width: 320px; height: 320px; top: -80px; right: -80px; border-width: 48px; }

    /* How It Works — mobile (single column) */
    .howit-inner { padding: 2.5rem 1.5rem; }
    .howit-steps { grid-template-columns: 1fr; row-gap: 2.5rem; }
    .howit-step,
    .howit-step:nth-child(2),
    .howit-step:nth-child(3) { border-left: none; padding-left: 0; }
    .howit-num { font-size: 3.5rem; }
    .howit-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; margin-bottom: 2.5rem; }
    .howit-title { font-size: 1.65rem; }

    .expert-section { padding: 2.5rem 1rem; }
    .expert-section h2 { margin-bottom: 1.5rem; }
    .expert-section .col-md-4 h1 { font-size: 2.5rem; }
    .expert-section .row.mt-4 { margin-top: 1.5rem !important; padding-top: 1.5rem; }
    .expert-section .btn.btn-primary { margin-top: 1.75rem; }
}

.footer-brand-name img{

 background: #fff;
    border-radius: 7px;
}