/* ============================================================
   INDICOSMIC INFOTECH LTD
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    /* Sampled directly from assets/images/logo.png (Indicosmic infinity mark) */
    --brand-primary:        #0c1854;  /* wordmark navy */
    --brand-primary-dark:   #08113c;
    --brand-primary-mid:    #38307b;
    --brand-primary-light:  #5a4499;
    --brand-primary-pale:   #f2f1f6;
    --brand-accent:         #f0623c;  /* swirl orange/coral arc */
    --brand-accent-hover:   #c45031;
    --brand-accent-light:   #fef5f3;
    --brand-gold:           #f5a623;
    --brand-purple:         #8a5fc4;  /* swirl centre */
    --brand-pink:           #c0489c;  /* swirl underside */
    --brand-cyan:           #24b0ef;  /* swirl top-right arc */
    --bg-white:             #ffffff;
    --bg-light:             #f8f8f8;
    --bg-light-alt:         #efefef;
    --bg-dark:              #111827;
    --bg-section-alt:       #fafafa;
    --text-dark:            #1a1a2e;
    --text-body:            #4b4b5a;
    --text-muted:           #8a8a99;
    --text-white:           #ffffff;
    --font-body:            'Nunito Sans', sans-serif;
    --font-heading:         'Nunito Sans', sans-serif;
    --section-py:           96px;
    --r-sm:   6px;
    --r-md:   12px;
    --r-lg:   20px;
    --r-xl:   32px;
    --r-pill: 999px;
    --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
    --shadow-card:  0 4px 24px rgba(0,0,0,0.07);
    --tr:     all 0.3s ease;
    --tr-sl:  all 0.5s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-white);
    font-size: 17px;
    line-height: 1.75;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}
a { color:inherit; text-decoration:none; transition:var(--tr); }
img { max-width:100%; height:auto; }

/* ============================================================
   3. UTILITIES
   ============================================================ */
.text-brand       { color: var(--brand-primary) !important; }
.text-accent      { color: var(--brand-accent) !important; }
.bg-brand         { background: var(--brand-primary) !important; }
.bg-light-brand   { background: var(--bg-light) !important; }
.section-padding  { padding: var(--section-py) 0; }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn-accent-pill {
    background: var(--brand-accent);
    border: 2px solid var(--brand-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 13px 30px;
    border-radius: var(--r-pill);
    letter-spacing: 0.02em;
    transition: var(--tr);
    box-shadow: 0 4px 16px rgba(240,90,35,0.28);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-accent-pill:hover, .btn-accent-pill:focus {
    background: var(--brand-accent-hover);
    border-color: var(--brand-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,90,35,0.38);
}
.btn-primary-brand {
    background: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 13px 30px;
    border-radius: var(--r-pill);
    letter-spacing: 0.02em;
    transition: var(--tr);
    box-shadow: 0 4px 16px rgba(27,20,99,0.22);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-brand:hover, .btn-primary-brand:focus {
    background: var(--brand-primary-mid);
    border-color: var(--brand-primary-mid);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27,20,99,0.32);
}
.btn-primary-brand.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-outline-brand {
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 13px 30px;
    border-radius: var(--r-pill);
    transition: var(--tr);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-brand:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-glass-pill {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.35);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 13px 30px;
    border-radius: var(--r-pill);
    backdrop-filter: blur(8px);
    transition: var(--tr);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-glass-pill:hover {
    background: rgba(255,255,255,0.22);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   5. SECTION HEADINGS
   ============================================================ */
.section-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-accent);
    background: var(--brand-accent-light);
    border: 1px solid rgba(240,90,35,0.22);
    padding: 5px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 14px;
    width: auto;
    max-width: fit-content;
}
.section-title {
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-body);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}
.lead-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 14px;
}
.body-text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.9;
}

/* ============================================================
   6. INNER PAGE HERO
   ============================================================ */
.page-hero {
    padding: 72px 0 70px;
    min-height: 340px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(900px 420px at 90% 0%, rgba(138,95,196,0.10), transparent 60%),
        #E2EDFB;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(12,24,84,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12,24,84,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.10;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--text-dark); font-size: clamp(28px,4vw,48px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text-body); font-size: 17px; margin-bottom: 0; }
.breadcrumb-wrap { margin-top: 16px; }
.breadcrumb-wrap .breadcrumb { margin: 0; background: transparent; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--brand-accent); }
.breadcrumb-item.active { color: var(--brand-accent); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ============================================================
   7. HEADER
   ============================================================ */
.site-top-fixed {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.site-topbar {
    display: none;
    background: #fafafa;
    border-bottom: 1px solid var(--bg-light-alt);
    color: var(--text-dark);
    font-size: 13px;
    padding: 6px 0;
}
.site-topbar .container { display: flex; align-items: center; justify-content: space-between; }
.site-topbar .topbar-phone { color: var(--brand-primary); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.site-topbar .topbar-phone:hover { color: var(--brand-accent); }
.site-topbar .topbar-phone i { color: var(--brand-accent); }
.btn-partner-dark {
    background: var(--brand-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--r-pill);
    display: inline-block;
}
.btn-partner-dark:hover { background: var(--brand-primary-mid); color: #fff; }
.site-header {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 16px rgba(12,24,84,0.06);
    transition: var(--tr-sl);
}
.site-logo {
    max-width: 220px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.site-header .navbar { background: #fff; padding: 14px 0; transition: var(--tr-sl); }
.site-header .nav-link { color: var(--text-dark) !important; }
.site-header .toggler-icon i { color: var(--brand-primary); }
.site-header.header-scrolled { box-shadow: 0 4px 24px rgba(12,24,84,0.10); }
.site-header.header-scrolled .navbar { padding: 8px 0; }
.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px !important;
    border-radius: var(--r-sm);
    transition: var(--tr);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--brand-accent) !important; }
.nav-dd-toggle { pointer-events: auto; }
.dropdown-toggle::after { display: none !important; }
.nav-chevron { font-size: 11px; transition: transform 0.25s ease; }
.dropdown.show .nav-chevron { transform: rotate(180deg); }
.nav-cta { font-size: 14px; padding: 10px 22px !important; }
.investors-menu, .services-menu {
    border: none;
    border-radius: var(--r-md);
    box-shadow: 0 16px 48px rgba(27,20,99,0.16);
    padding: 10px;
    min-width: 290px;
    animation: dropIn 0.2s ease;
}
@keyframes dropIn {
    from { opacity:0; transform:translateY(8px); }
    to   { opacity:1; transform:translateY(0); }
}
.investors-menu .dropdown-item, .services-menu .dropdown-item {
    font-size: 14px;
    color: var(--text-body);
    padding: 9px 14px;
    border-radius: var(--r-sm);
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 10px;
}
.investors-menu .dropdown-item i, .services-menu .dropdown-item i { color: var(--brand-primary); width: 16px; font-size: 13px; flex-shrink: 0; }
.investors-menu .dropdown-item:hover, .services-menu .dropdown-item:hover { background: var(--bg-light); color: var(--brand-primary); }
.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   8. HERO SECTION — light, photo-led (RSA-focused)
   ============================================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 56px 0 64px;
    background-color: var(--brand-primary-pale);
    background-image: url('../images/hero-banners/home-hero-mobile-banner.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}
@media (min-width: 992px) {
    .hero-section {
        padding: 88px 0 96px;
        background-image: url('../images/hero-banners/home-hero-desktop-banner.png');
        background-position: center;
    }
}
.hero-container { position: relative; z-index: 2; }
.hero-content-row { padding: 20px 0; align-items: center; }

.hero-badge {
    display: inline-block;
    color: var(--brand-accent-hover);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 22px;
}
.text-gradient-hero {
    background: linear-gradient(100deg, var(--brand-accent) 0%, var(--brand-pink) 55%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 17px;
    color: var(--text-body);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   9. HERO STATS
   ============================================================ */
.section-hero-stats {
    background: #fff;
    padding: 2rem 0;
}
.hero-stats-bar {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.hstat-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
    padding: 28px 24px;
    border-right: 1px solid var(--bg-light-alt);
    position: relative;
}
.hstat-item:last-child { border-right: none; }
.hstat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px; height: 3px;
    background: var(--brand-accent);
    transition: var(--tr);
    border-radius: 2px;
}
.hstat-item:hover::after { transform: translateX(-50%) scaleX(1); }
.hstat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--brand-primary);
    line-height: 1;
}
.hstat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.hstat-sep { display: none; }

/* ============================================================
   10. TRUSTED BY
   CHANGE 2: Static 6-per-row grid, no Owl Carousel slider
   ============================================================ */
.section-trusted {
    padding: 48px 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--bg-light-alt);
    border-bottom: 1px solid var(--bg-light-alt);
}
.trusted-header {
    text-align: center;
    margin-bottom: 32px;
}
.trusted-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
}

/* ── Auto-scroll marquee ── */
.trusted-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.trusted-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: trustedMarquee 32s linear infinite;
}
.trusted-marquee:hover .trusted-track { animation-play-state: paused; }
@keyframes trustedMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .trusted-track { animation: none; }
}
.partner-logo-block {
    width: 200px;
    flex-shrink: 0;
    height: 88px;
    background: #fff;
    border: 1.5px solid var(--bg-light-alt);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    transition: var(--tr);
    box-shadow: var(--shadow-sm);
}
.partner-logo-block:hover {
    border-color: var(--brand-accent);
    box-shadow: 0 4px 18px rgba(240,98,60,0.14);
    transform: translateY(-3px);
}
.partner-logo-block img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--tr);
}
.partner-logo-block .logo-name {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    text-align: center;
    transition: var(--tr);
}
.partner-logo-block:hover .logo-name { color: var(--brand-primary); }

/* ============================================================
   10B. CREDENTIALS
   ============================================================ */
.section-credentials { background: #fff; }
.credential-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.credential-card {
    background: var(--bg-section-alt);
    border: 1.5px solid var(--bg-light-alt);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--tr);
}
.credential-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.credential-icon {
    width: 60px; height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: #fff;
}
.credential-icon.ci-accent { background: var(--brand-accent); }
.credential-icon.ci-purple { background: var(--brand-purple); }
.credential-icon.ci-cyan   { background: var(--brand-cyan); }
.credential-icon.ci-pink   { background: var(--brand-pink); }
.credential-card h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.credential-card p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 0; line-height: 1.6; }

/* ============================================================
   11. SERVICES
   ============================================================ */
.section-services { background: var(--bg-section-alt) !important; }
.service-card {
    background: #fff;
    border: 1.5px solid var(--bg-light-alt);
    border-radius: var(--r-lg);
    padding: 40px 32px 52px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--tr);
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-accent), #ffb380);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--tr);
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::after { transform: scaleX(1); }
.service-featured {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}
.service-featured::after { transform: scaleX(1); }
.service-featured:hover { transform: translateY(-8px); }
.service-featured .service-icon-wrap { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.2); }
.service-featured .service-icon-wrap i,
.service-featured h3,
.service-featured p { color: #fff !important; }
.service-featured .service-link { color: rgba(255,255,255,0.85); }
.service-featured .service-link:hover { color: #fff; }
.service-featured .service-bg-num { color: rgba(255,255,255,0.07); }
.service-icon-wrap {
    width: 68px; height: 68px;
    background: var(--brand-accent-light);
    border: 1.5px solid rgba(240,90,35,0.15);
    border-radius: var(--r-lg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: var(--tr);
}
.service-icon-wrap i { font-size: 28px; color: var(--brand-accent); transition: var(--tr); }
.service-card:not(.service-featured):hover .service-icon-wrap { background: var(--brand-accent); border-color: var(--brand-accent); }
.service-card:not(.service-featured):hover .service-icon-wrap i { color: #fff; }
.service-card h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; line-height: 1.3; }
.service-card p { font-size: 16px; color: var(--text-body); line-height: 1.8; margin-bottom: 22px; }
.service-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--tr);
}
.service-link:hover { color: var(--brand-primary); gap: 10px; }
.service-bg-num {
    position: absolute;
    bottom: 14px; right: 20px;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--bg-light-alt);
    line-height: 1;
    user-select: none;
}

/* ============================================================
   12. ABOUT SECTION
   ============================================================ */
.about-img-stack { position: relative; height: 100%; min-height: 520px; }
.about-img-main { width: 100%; height: 100%; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-exp-badge {
    position: absolute;
    bottom: 28px; right: -16px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.abadge-num { display: block; font-family: var(--font-heading); font-size: 38px; font-weight: 900; line-height: 1; }
.abadge-txt { font-size: 13px; opacity: 0.82; line-height: 1.4; }
.about-cert-pill {
    position: absolute;
    top: 24px; left: -16px;
    background: #fff;
    border-radius: var(--r-pill);
    padding: 10px 18px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--bg-light-alt);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-primary);
    white-space: nowrap;
}
.about-cert-pill i { color: var(--brand-gold); font-size: 16px; }
.about-deco-block {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 100px; height: 100px;
    background: var(--brand-accent);
    border-radius: var(--r-lg);
    opacity: 0.12;
    z-index: -1;
}
.about-tabs-wrap { margin-top: 28px; background: var(--bg-light); border-radius: var(--r-lg); padding: 5px; }
.about-tab-btns { display: flex; gap: 4px; background: var(--bg-light); border-radius: var(--r-md); padding: 4px; }
.about-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 10px 16px;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: var(--tr);
    text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.about-tab-btn.active, .about-tab-btn:hover { background: var(--brand-accent); color: #fff; box-shadow: 0 2px 8px rgba(240,90,35,0.25); }
.about-tab-content { padding: 20px 4px 4px; }
.about-tab-pane { display: none; }
.about-tab-pane.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
.about-tab-pane p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 16px; }
.about-checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.about-checklist li { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; color: var(--text-dark); }
.about-checklist li i { color: var(--brand-accent); font-size: 17px; }
.about-phone-link { display: inline-flex; align-items: center; gap: 12px; color: var(--text-dark); font-family: var(--font-heading); }
.about-phone-link:hover { color: var(--brand-primary); }
.phone-icon-wrap {
    width: 48px; height: 48px;
    background: var(--brand-primary-pale);
    border: 2px solid var(--bg-light-alt);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-primary);
    font-size: 18px;
    transition: var(--tr);
}
.about-phone-link:hover .phone-icon-wrap { background: var(--brand-primary); color: #fff; }
.about-phone-link small { display: block; font-size: 12px; color: var(--text-muted); }
.about-phone-link strong { display: block; font-size: 16px; color: var(--text-dark); }

/* ============================================================
   13. WHY CHOOSE US
   ============================================================ */
.section-why {
    padding: var(--section-py) 0;
    background: var(--brand-accent-light);
}
.why-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left-text > p { font-size: 17px; color: var(--text-body); line-height: 1.85; margin-bottom: 0; }
.why-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-feature {
    background: var(--bg-section-alt);
    border: 1.5px solid var(--bg-light-alt);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}
.why-feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--tr);
}
.why-feature:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.why-feature:hover::before { transform: scaleX(1); }
.why-feat-icon {
    width: 48px; height: 48px;
    background: var(--brand-accent-light);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-accent);
    font-size: 20px;
    margin-bottom: 14px;
    transition: var(--tr);
}
.why-feature:hover .why-feat-icon { background: var(--brand-accent); color: #fff; }
.why-feature strong { display: block; font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.why-feature span { font-size: 14px; color: var(--text-muted); line-height: 1.6; display: block; }

/* ============================================================
   14. TEAM
   ============================================================ */
.section-team { background: var(--bg-section-alt) !important; }
.team-card { border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); transition: var(--tr); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr-sl); }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-social {
    position: absolute;
    bottom: -50px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 8px;
    padding: 16px;
    background: linear-gradient(to top, rgba(27,20,99,0.9), transparent);
    transition: var(--tr);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: var(--tr);
}
.team-social a:hover { background: var(--brand-accent); border-color: var(--brand-accent); }
.team-info { padding: 20px; text-align: center; border-top: 2px solid var(--bg-light); }
.team-info h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-info span { font-size: 12px; font-weight: 700; color: var(--brand-accent); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.section-testimonials { background: var(--bg-light); padding: var(--section-py) 0; }
.testimonial-carousel.owl-carousel { padding-bottom: 24px; }
.testimonial-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 36px;
    border: 1.5px solid var(--bg-light-alt);
    box-shadow: var(--shadow-card);
    margin: 6px 6px 0 6px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    transition: var(--tr);
}
.testimonial-card:hover { border-color: var(--brand-accent); box-shadow: 0 8px 32px rgba(240,90,35,0.15); transform: translateY(-4px); }
.owl-stage { display: flex; }
.owl-item { display: flex; }
.testimonial-card { flex: 1; }
.tcard-quote { font-size: 28px; color: var(--brand-primary); opacity: 0.2; margin-bottom: 14px; }
.testimonial-card p { font-size: 15px; line-height: 1.85; color: var(--text-body); flex: 1; margin-bottom: 20px; }
.tcard-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.tcard-stars i { font-size: 14px; color: var(--brand-gold); }
.tcard-client-line { padding-top: 14px; border-top: 1px solid var(--bg-light-alt); font-size: 14px; }
.tcard-client-line strong { font-family: var(--font-heading); font-weight: 700; color: var(--text-dark); }
.tcard-client-line span { color: var(--text-muted); }
.owl-theme .owl-dots .owl-dot span { background: var(--bg-light-alt); transition: var(--tr); }
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span { background: var(--brand-primary); }

/* ============================================================
   16. FAQ
   CHANGE 3: Meaningful IT/professional image (not handshake)
   ============================================================ */
.section-faq { padding: var(--section-py) 0; background: var(--bg-section-alt); }
.faq-row { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ── CHANGE 3: IT support / professional team image ── */
.faq-img-panel {
    position: relative;
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=900&q=85');
    background-size: cover;
    background-position: center center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.faq-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(27,20,99,0.55) 0%, rgba(15,10,60,0.92) 100%);
}
.faq-img-text { position: relative; z-index: 2; padding: 48px 40px; }
.faq-img-text .section-badge {
    display: inline-block;
    width: auto;
    max-width: fit-content;
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    margin-bottom: 16px;
}
.faq-img-text .btn-accent-pill { display: inline-flex; width: auto; }
.faq-img-text h2 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.25; }
.faq-img-text p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 28px; }
.faq-accordion-panel { background: #fff; padding: 48px 44px; }
.faq-item {
    border: 1.5px solid var(--bg-light-alt) !important;
    border-radius: var(--r-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--tr);
}
.faq-item:hover { border-color: var(--brand-accent) !important; }
.faq-btn {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    padding: 18px 20px;
    border: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 14px;
}
.faq-btn:not(.collapsed) { color: var(--brand-accent); background: var(--brand-accent-light); }
.faq-btn::after { display: none !important; }
.faq-q-num {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--brand-accent);
    background: var(--brand-accent-light);
    padding: 2px 9px;
    border-radius: var(--r-sm);
    flex-shrink: 0;
    min-width: 30px;
    text-align: center;
}
.faq-btn:not(.collapsed) .faq-q-num { background: var(--brand-accent); color: #fff; }
.faq-body {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.85;
    padding: 0 20px 18px 70px;
    background: var(--brand-accent-light);
}

/* ============================================================
   17. BLOG
   ============================================================ */
.section-blog { background: #fff; }
.blog-card {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1.5px solid var(--bg-light-alt);
    transition: var(--tr);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--brand-accent); }
.blog-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr-sl); }
.blog-card:hover .blog-img-wrap img { transform: scale(1.07); }
.blog-cat {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--brand-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: var(--r-pill);
}
.blog-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 14px; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.blog-body h4 { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.blog-body h4 a { color: var(--text-dark); }
.blog-body h4 a:hover { color: var(--brand-accent); }
.blog-body p { font-size: 15px; color: var(--text-body); line-height: 1.8; flex: 1; margin-bottom: 18px; }
.blog-read-more {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.blog-read-more:hover { color: var(--brand-primary); gap: 10px; }

/* ============================================================
   18. BOOK DEMO
   CHANGE 4: Background image with overlay instead of plain gradient
   ============================================================ */
.section-book-demo {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

/* ── CHANGE 4A: background image layer ── */
.demo-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1800&q=85');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* ── CHANGE 4B: gradient colour overlay on top of image ── */
.demo-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27,20,99,0.96)  0%,
        rgba(18,14,74,0.91)  55%,
        rgba(240,90,35,0.22) 100%
    );
    z-index: 1;
}

/* Subtle grid lines */
.section-book-demo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
}

.book-demo-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.demo-benefits { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 12px; }
.demo-benefits li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 500; }
.demo-benefits li i { color: var(--brand-accent); font-size: 16px; }
.demo-contact-strip { display: flex; flex-direction: column; gap: 12px; }
.demo-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: var(--tr);
}
.demo-contact-item i {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-accent);
    flex-shrink: 0;
}
.demo-contact-item:hover { color: #fff; }
.demo-form-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 40px;
    box-shadow: 0 24px 72px rgba(0,0,0,0.25);
}
.demo-form-card h3 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.demo-form-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.demo-label { font-family: var(--font-heading); font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; display: block; }
.req { color: var(--brand-accent); }
.demo-input {
    border: 1.5px solid var(--bg-light-alt);
    border-radius: var(--r-md);
    padding: 11px 16px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--tr);
    font-family: var(--font-body);
    width: 100%;
}
.demo-input:focus { border-color: var(--brand-primary); background: #fff; box-shadow: 0 0 0 4px rgba(27,20,99,0.08); outline: none; }
.captcha-row { display: flex; align-items: center; gap: 10px; }
.captcha-row .captcha-input { flex: 1 1 auto; }
.captcha-refresh-btn {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--bg-light-alt);
    border-radius: var(--r-md);
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--tr);
}
.captcha-refresh-btn:hover { color: var(--brand-accent); border-color: var(--brand-accent); background: var(--brand-accent-light); }
.captcha-refresh-btn.is-spinning i { animation: captchaSpin 0.6s linear; }
@keyframes captchaSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.service-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.scheck-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid var(--bg-light-alt);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: var(--tr);
    background: var(--bg-light);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    font-family: var(--font-heading);
}
.scheck-item:hover { border-color: var(--brand-accent); background: var(--brand-accent-light); color: var(--brand-accent); }
.scheck-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--brand-accent); flex-shrink: 0; }
.scheck-item:has(input:checked) { border-color: var(--brand-accent); background: var(--brand-accent-light); }
.demo-submit-btn { margin-top: 4px; justify-content: center; }
.demo-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 10px; margin-bottom: 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit-feedback { display: none; font-size: 14px; font-weight: 600; margin-bottom: 12px; }

/* ============================================================
   19. FOOTER
   ============================================================ */
.site-footer { background: var(--brand-primary-dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 80px 0 60px; }
.footer-logo-link { display: block; margin-bottom: 18px; }
.footer-logo-img { max-height: 44px; filter: brightness(0) invert(1); object-fit: contain; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.social-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: var(--tr);
}
.social-icon:hover { background: var(--brand-accent); border-color: var(--brand-accent); color: #fff; transform: translateY(-3px); }
.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-widget-title::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 36px; height: 2px; background: var(--brand-accent); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; transition: var(--tr); }
.footer-links a i { font-size: 9px; color: var(--brand-accent); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.65; }
.footer-contact-list li i { color: var(--brand-accent); font-size: 14px; min-width: 16px; margin-top: 3px; }
.footer-contact-list a { color: rgba(255,255,255,0.58); }
.footer-contact-list a:hover { color: var(--brand-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.42); margin-bottom: 0; }
.footer-copyright strong { color: rgba(255,255,255,0.75); }
.footer-legal-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; justify-content: flex-end; flex-wrap: wrap; }
.footer-legal-links a { font-size: 13px; color: rgba(255,255,255,0.42); transition: var(--tr); }
.footer-legal-links a:hover { color: var(--brand-accent); }

/* ============================================================
   20. BACK TO TOP
   ============================================================ */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--brand-primary); color: #fff; border: none; border-radius: 50%; font-size: 16px; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-md); z-index: 999; transition: var(--tr); }
.back-to-top:hover { background: var(--brand-accent); transform: translateY(-3px); }
.back-to-top.show { display: flex; }

/* ============================================================
   21. INNER PAGE EXTRAS
   ============================================================ */
/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--bg-light-alt); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot { position: absolute; left: -34px; top: 4px; width: 20px; height: 20px; background: var(--brand-accent); border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 3px var(--brand-accent); }
.timeline-item h5 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.timeline-item p { font-size: 15px; color: var(--text-body); margin-bottom: 0; }

/* Contact */
.contact-form-card { background: #fff; border-radius: var(--r-xl); padding: 48px; box-shadow: var(--shadow-md); border: 1.5px solid var(--bg-light-alt); }
.contact-info-card { background: var(--brand-primary); border-radius: var(--r-xl); padding: 48px; color: #fff; height: 100%; }
.contact-info-card h3 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-item .icon-box { width: 44px; height: 44px; background: rgba(255,255,255,0.12); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--brand-accent); font-size: 18px; flex-shrink: 0; }
.contact-info-item h6 { color: #fff; font-size: 14px; margin-bottom: 2px; }
.contact-info-item p { color: rgba(255,255,255,0.72); font-size: 14px; margin-bottom: 0; }

/* Services detail */
.service-detail-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }

/* Investor tables */
.investor-table-wrap { border-radius: var(--r-lg); overflow-x: auto; overflow-y: hidden; box-shadow: var(--shadow-card); -webkit-overflow-scrolling: touch; }
.investor-table { margin-bottom: 0; }
.investor-table thead th { background: var(--brand-primary); color: #fff; font-family: var(--font-heading); font-weight: 700; padding: 14px 20px; border: none; font-size: 14px; }
.investor-table tbody td { padding: 14px 20px; font-size: 15px; color: var(--text-body); border-color: var(--bg-light-alt); vertical-align: middle; }
.investor-table tbody tr:hover td { background: var(--bg-light); }
.investor-doc-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-accent); font-weight: 600; font-size: 14px; }
.investor-doc-link:hover { color: var(--brand-primary); }

/* Blog sidebar */
.blog-sidebar-card { background: #fff; border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-card); border: 1.5px solid var(--bg-light-alt); margin-bottom: 24px; }
.blog-sidebar-card h5 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--brand-accent); display: inline-block; }
.investor-menu-link {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 4px; font-size: 13px; color: var(--text-body);
    border-bottom: 1px solid var(--bg-light-alt); transition: var(--tr);
}
.investor-menu-link i { color: var(--brand-accent); width: 16px; flex-shrink: 0; text-align: center; font-size: 14px; }
.investor-menu-link:last-child { border-bottom: none; }
.investor-menu-link:hover, .investor-menu-link.active { color: var(--brand-primary); padding-left: 8px; }
.investor-menu-link.active i { color: var(--brand-primary); }

/* Career jobs */
.job-card { background: #fff; border: 1.5px solid var(--bg-light-alt); border-radius: var(--r-lg); padding: 28px 32px; transition: var(--tr); margin-bottom: 16px; }
.job-card:hover { border-color: var(--brand-accent); box-shadow: var(--shadow-md); transform: translateX(4px); }
.job-tag { display: inline-block; padding: 3px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; margin-right: 6px; }
.job-tag.full-time { background: rgba(27,20,99,0.08); color: var(--brand-primary); }
.job-tag.remote { background: rgba(240,90,35,0.1); color: var(--brand-accent); }

/* Blog detail */
.blog-detail-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.blog-detail-meta span { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.blog-detail-content h2 { font-size: 28px; margin: 32px 0 16px; }
.blog-detail-content h3 { font-size: 22px; margin: 28px 0 12px; color: var(--brand-primary); }
.blog-detail-content p { font-size: 17px; line-height: 1.85; color: var(--text-body); margin-bottom: 20px; }
.blog-detail-content ul { padding-left: 20px; margin-bottom: 20px; }
.blog-detail-content ul li { font-size: 16px; color: var(--text-body); margin-bottom: 8px; }
