@font-face {
    font-family: 'Blinker';
    src: url('/assets/font/Blinker-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Blinker';
    src: url('/assets/font/Blinker-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Blinker';
    src: url('/assets/font/Blinker-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: linear-gradient(135deg, #f7f8ff 0%, #eef1ff 45%, #f9f5ff 100%);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --card: #ffffff;
    --muted: #4b5563;
    --accent: #4F46E5;
    --accent-2: #9333EA;
    --accent-3: #7c3aed;
    --shadow: 0 20px 60px rgba(79, 70, 229, 0.14);
    --border: #e5e7eb;
    --panel: #111827;
    --text: #000000;
    --font-family: 'Blinker', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body.home-body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--text);
    min-height: 100vh;
}

/* ====================================================
   TYPOGRAPHY SCALE
   h1  → clamp(28px, 4vw, 48px)   Hero heading
   h2  → clamp(24px, 3.5vw, 44px) All section titles (unified)
   h5  → clamp(18px, 2vw, 24px)   Card titles
   p   → 18px weight 300           Desktop body & card descriptions
   p   → 16px weight 300           Mobile body & card descriptions
   strong (list) → clamp(17px, 1.8vw, 22px)
   footer/meta → 16px
   badges/small → 13–14px
   ==================================================== */

p {
    color: var(--text);
    font-size: 18px;
    font-family: var(--font-family);
    font-weight: 300;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    color: var(--text);
}

.font-34 { font-size: 34px !important; }
.font-24 { font-size: 24px !important; }
.font-20 { font-size: 20px !important; }
.font-18 { font-size: 18px !important; }
.font-16 { font-size: 16px !important; }
.font-14 { font-size: 14px !important; }
.font-12 { font-size: 12px !important; }

a { color: inherit; text-decoration: none; }
img { width: 100%; }

.section_padding {
    padding: clamp(40px, 5vw, 80px) clamp(16px, 4vw, 40px) !important;
}

/* =============================================
   HEADER / NAV
   ============================================= */

/* .home-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    margin-bottom: -80px;
} */

.home-header {
    position: fixed;  
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.home-nav {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    backdrop-filter: blur(14px);
    position: relative;
    z-index: 2;
}

.home-nav .brand {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-weight: 700;
    color: var(--accent-2);
    letter-spacing: 0.01em;
    flex-shrink: 0;
}
.home-nav .brand img { height: 30px; width: auto; }

.nav-collapse {
    display: flex !important;  /* Bootstrap ke saath compatible */
    align-items: center;
    gap: 16px;
    width: 100%;
}

.home-nav .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 500;
    color: #334155;
    flex: 1;
}
.home-nav .nav-links a {
    padding: 8px 10px;
    border-radius: 10px;
    transition: all 0.18s ease;
    font-weight: 400;
    color: #000000;
}
.home-nav .nav-links a:hover { color: var(--accent-2); }

.home-nav .nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.navbar-toggler {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 6px 10px;
    box-shadow: none;
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.site__logo {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(90deg, #4F46E5, #9333EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.home-header .home-nav .nav-links .nav-link {
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    color: #000;
    font-size: 18px;
}
.home-header .home-nav .nav-links .nav-link:hover { color: var(--accent-2); }
.home-header .home-nav .nav-actions .nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.35rem;
    border-radius: 12px;
    font-weight: 400;
}
.home-header .home-nav .brand .site__logo {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #4F46E5, #9333EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
#features, #views, #time-tracking, #teams, #reviews {scroll-margin-top: 25px;}

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

.home-hero {
    position: relative;
    padding: 110px 6vw 80px;
    background: linear-gradient(155deg, #fff 0%, #f0eeff 55%, #e4dcff 100%);
    overflow: hidden;
}

.h-blob1 {
    position: absolute; top: -80px; right: -80px;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(147,51,234,.12) 0%, transparent 70%);
    pointer-events: none;
}
.h-blob2 {
    position: absolute; bottom: -100px; left: -60px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,.08) 0%, transparent 70%);
    pointer-events: none;
}
.h-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(79,70,229,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,70,229,.04) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy .eyebrow {
    margin: 0 0 8px;
    color: var(--accent-3);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}
.hero-copy h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin: 0 0 14px;
    font-family: var(--font-family);
    max-width: 460px;
}
.hero-copy .lede {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    color: #4b5563;
    margin: 0 0 20px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    color: #fff;
    border-radius: 50px;
    padding: 5px 14px 5px 7px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    font-family: var(--font-family);
}
.badge-pill {
    background: rgba(255,255,255,.25);
    border-radius: 50px;
    padding: 2px 9px;
    font-size: 12px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.proof-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #e4e0ff;
    font-size: 14px;
    flex-wrap: wrap;
}
.av-row { display: flex; }
.av {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -7px;
    font-size: 11px; font-weight: 800;
    display: grid; place-items: center;
    color: #fff;
}
.av:first-child { margin-left: 0; }
.hero-stars { color: #F59E0B; font-size: 14px; }
.no-card-badge {
    margin-left: auto;
    background: rgba(79,70,229,.08);
    border: 1px solid #c8c2ff;
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #4F46E5;
}

/* Hero Visual / Board Card */
.hero-visual-wrap {
    position: relative;
    padding: 36px 20px 36px 10px;
}
.board-card {
    background: #fff;
    border: 1px solid #e4e0ff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 28px 80px rgba(79,70,229,.22);
    animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.bc-bar {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 16px; padding-bottom: 14px;
    border-bottom: 1px solid #e4e0ff;
}
.bc-dots { display: flex; gap: 5px; }
.bc-dot  { width: 9px; height: 9px; border-radius: 50%; }
.bc-name { font-weight: 700; font-size: 13px; color: #12102a; margin-left: 8px; }
.bc-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.bc-head {
    font-size: 11px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    color: #9896b8; margin-bottom: 9px;
    display: flex; align-items: center; gap: 5px;
}
.bh-dot { width: 6px; height: 6px; border-radius: 50%; }
.bct {
    background: #f0eeff;
    border: 1px solid #e4e0ff;
    border-radius: 9px;
    padding: 9px 10px;
    margin-bottom: 7px;
    transition: all .2s;
}
.bct:hover { background: #fff; box-shadow: 0 2px 14px rgba(79,70,229,.08); }
.bct-name { font-size: 12px; font-weight: 600; color: #12102a; margin-bottom: 6px; }
.bct-meta { display: flex; align-items: center; gap: 5px; }
.chip {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}
.cv { background: rgba(79,70,229,.1);  color: #4F46E5; }
.cp { background: rgba(147,51,234,.1); color: #9333EA; }
.cg { background: #dcfce7; color: #16a34a; }
.cy { background: #fef9c3; color: #ca8a04; }
.mav {
    width: 17px; height: 17px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    margin-left: -5px;
    font-size: 9px; font-weight: 800;
    display: grid; place-items: center;
    color: #fff;
}
.mav:first-child { margin-left: auto; }

.fchip {
    position: absolute;
    background: #fff;
    border: 1px solid #e4e0ff;
    border-radius: 12px;
    box-shadow: 0 16px 52px rgba(79,70,229,.18);
    padding: 11px 16px;
    z-index: 3;
}
.fc-top {
    top: -10px; right: -12px;
    display: flex; align-items: center; gap: 10px;
    min-width: 190px;
    animation: fc1 6s ease-in-out infinite;
}
@keyframes fc1 {
    0%, 100% { transform: rotate(-1.5deg) translateY(0); }
    50%       { transform: rotate(1deg) translateY(-8px); }
}
.fc-ico {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    display: grid; place-items: center;
    font-size: 14px; color: #fff; flex-shrink: 0;
}
.fc-t { font-size: 12px; font-weight: 700; color: #12102a; }
.fc-s { font-size: 11px; color: #9896b8; }
.fc-bot {
    bottom: -10px; left: -12px;
    min-width: 160px;
    animation: fc2 7s ease-in-out infinite 1.5s;
}
@keyframes fc2 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(9px); }
}
.fc-lbl { font-size: 11px; color: #9896b8; margin-bottom: 7px; }
.fc-pb {
    height: 5px; background: #e8e4ff;
    border-radius: 3px; overflow: hidden; margin-bottom: 5px;
}
.fc-pf {
    height: 100%; border-radius: 3px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    width: 74%;
}
.fc-pct { font-size: 17px; font-weight: 800; color: #12102a; font-family: var(--font-family); }
.fc-pct span { font-size: 11px; font-weight: 400; color: #9896b8; }

/* Hero visual compat */
.hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: center;
    margin-top: 46px;
    position: relative;
    z-index: 1;
}
.hero-visual { position: relative; }
.hero-visual img { width: 100%; display: block; border-radius: 12px; }
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 8px;
}
.hero-metrics div {
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}
.hero-metrics span { display: block; font-size: 20px; font-weight: 700; color: var(--accent); }
.hero-metrics label { color: #6b7280; font-size: 13px; }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    border-radius: 11px;
    font-weight: 300;
    border: 1px solid #dddddd;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
    font-family: var(--font-family);
    font-size: 16px;
}
.btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 300;
}
.btn.primary:hover { transform: translateY(-1px); }
.btn.secondary, .btn.ghost {
    background: #fff;
    border-color: var(--border);
    color: #334155;
    font-weight: 300;
}
.btn.secondary:hover, .btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-gradient {
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    border: 1px solid transparent;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-family);
}
.btn-gradient:hover { color: #fff; opacity: 0.95; }

.btn-outline-secondary.nav-btn {
    border-width: 1px;
    border-color: #d7d9e0;
    color: #111827;
}
.btn-outline-secondary.nav-btn:hover {
    color: #4F46E5;
    border-color: #cfd2da;
    background: linear-gradient(135deg, rgba(79,70,229,0.05), rgba(147,51,234,0.05));
}

.btn-white {
    background: #fff;
    color: #4F46E5;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    transition: all .25s;
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
    border: none;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,.26);
    color: #4F46E5;
}

.btn-gradient-white {
    background-color: #ffffff !important;
    padding: 9px 30px;
    border-radius: 11px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4F46E5;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-family);
}
.btn-gradient-white .btn-text-gradient {
    background: linear-gradient(90deg, #4F46E5 0%, #9333EA 85.24%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.btn-gradient-white:hover { transform: translateY(-2px); }

/* =============================================
   UTILITIES
   ============================================= */

.gradient-text {
    background: linear-gradient(90deg, #9333EA, #4F46E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section { padding: 56px 6vw; background: #ffffff; }

.section-head {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}
.section-head .eyebrow {
    color: var(--accent-3);
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px;
    font-size: 12px;
}
.section-head h2 {
    margin: 0 0 10px;
    color: #000;
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    font-family: var(--font-family);
    line-height: 1.15;
}
.section-head .lede {
    margin: 0;
    color: #000;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.6;
}

.card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.card h3, .card h4 { margin: 10px 0 6px; color: #0f172a; }
.card p { margin: 0; color: #4b5563; font-size: 18px; font-weight: 300; }

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

.shadow-top, .shadow-bottom, .sec_shadow { position: relative; }
.shadow-bottom::after, .sec_shadow:after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    background: url(/assets/images/new-feature-section-after.png) no-repeat;
    width: 446px; height: 266px;
}

/* =============================================
   FEATURES SECTION
   ============================================= */

.hero-after-section { position: relative; z-index: 1; }
.hero-after-section .hero-after-card p.text-muted.text-center.mb-4 {
    max-width: 78%;
    margin: auto;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    color: #000;
    line-height: 1.6;
}
.hero-after-section .hero-after-card h2 {
    font-size: clamp(24px, 3.5vw, 44px);
    line-height: 1.15;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.feature-grid .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 20px;
}

.hero-after-section .hero-after-card .feature-card {
    border-radius: 18px;
    padding: 16px;
    background: #FBF9FD;
    min-height: 160px;
    display: flex;
    gap: 16px;
    box-shadow: 5px 5px 9px rgb(160 175 248 / 25%);
    transition: all 0.3s ease;
}
.hero-after-section .hero-after-card .feature-card:hover {background:#F6EDFF;}
.hero-after-section .hero-after-card .feature-card h5 {
    margin: 0;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 24px);
    color: #000;
    font-family: var(--font-family);
}
.hero-after-section .hero-after-card .feature-card p {
    margin: 6px 0 0 0;
    color: #333333;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    font-family: var(--font-family);
}
.hero-after-section .hero-after-card .feature-card .feature-icon {
    flex-shrink: 0;
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */

.how-steps-section {
    position: relative;
    overflow: visible;
    background: url("/assets/images/how-steps-section.png") no-repeat center top;
    background-size: cover;
}
.how-steps-section .how-title {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    color: #000;
    font-family: var(--font-family);
    line-height: 1.15;
}
.how-steps-section .how-subtitle {
    margin: 0;
    color: #000;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}

.how-steps-section .how-timeline {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 32px auto 0;
    height: 32px;
}
.how-steps-section .timeline-line {
    position: absolute;
    top: -95%; left: -80px; right: -80px;
    height: 2px;
    background: linear-gradient(90deg, #cccccc 0%, #9333ea 50%, #cccccc 100%);
    transform: translateY(-50%);
    z-index: 1;
    margin: 36px auto 40px;
    width: 100%;
}
.how-steps-section .timeline-dot {
    position: absolute;
    top: -12px;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #DBE2FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    color: #ffffff;
    z-index: 2;
    font-family: var(--font-family);
    background: #B96DE8;
}
.how-steps-section .timeline-dot.left   { left: 90px; }
.how-steps-section .timeline-dot.center { left: calc(50% - 16px); }
.how-steps-section .timeline-dot.right  { right: 90px; }

section .how-card {
    border-radius: 18px;
    padding: 20px 18px 24px;
    height: 100%; 
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    justify-content:space-between
}
.how-steps-section .how-step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(147,51,234,0.2));
    color: #4F46E5;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.how-steps-section.how-text { padding: 10px 15px; }
.how-steps-section .how-card h5 {
    margin: 0;
    font-weight: 600;
    font-size: clamp(18px, 2vw, 24px);
    color: #000;
    font-family: var(--font-family);
}
.how-steps-section .how-card p {
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    font-family: var(--font-family);
}
.how-steps-section .how-visual {
    border-radius: 14px;
    padding: 8px;
    background: #fff;
    width: 100%;
    max-width: 280px;
    margin: 7px auto;
}
.how-steps-section .how-card .how-visual img {
    width: 100%; height: auto;
    max-height: 220px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}
.how-steps-section .how-card .how-icon img { width: 40px; }

/* =============================================
   DELIVER FASTER SECTION
   ============================================= */

.deliver-section .deliver-text h2 {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    font-family: var(--font-family);
    line-height: 1.15;
}
.deliver-section .deliver-lede {
    color: #000;
    margin-bottom: 18px;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}
.deliver-section .deliver-visual { position: relative; text-align: center; }
.deliver-section .deliver-visual img { width: 100%; max-width: 520px; height: auto; display: inline-block; }

.deliver-section .feature-list { list-style: none; padding: 0; margin: 0; }
.deliver-section .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-family: var(--font-family);
}
.deliver-section .feature-list .icon {
    min-width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.deliver-section .feature-list strong {
    font-size: clamp(17px, 1.8vw, 22px);
    color: #000;
    font-weight: 500;
    display: block;
    font-family: var(--font-family);
}
.deliver-section .feature-list p {
    margin: 4px 0 0;
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    font-weight: 300;
    font-family: var(--font-family);
}

/* =============================================
   TEAMS SECTION
   ============================================= */

.teams-section {
    position: relative;
    overflow: visible;
    background: url("/assets/images/teams-section-bg.png") no-repeat center top;
    background-size: cover;
}
.teams-section .teams-title {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    color: #000;
    font-family: var(--font-family);
    line-height: 1.15;
}
.teams-section .teams-subtitle {
    color: #000;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    font-family: var(--font-family);
    max-width: 500px;
    margin: auto;
    line-height: 1.6;
}
.teams-section .team-card {
    background: #FBF9FD;
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 5px 10px 18px #A0AFF840;
    min-height: 210px;
}

.teams-section .team-icon { margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;  background: linear-gradient(90deg, #4F46E5 0%, #9333EA 85.24%);
    width: 106px;
    height: 106px;
    border-radius: 50%; 
}

    .teams-section .team-icon svg{
     transition: ease-in 300ms;   
    }
    .teams-section .team-card:hover svg {
        transform:scale(1.25);
        transition: ease-in 300ms;
    }

.team-icon img { width: 80px; }
.team-card h5 {
    margin: 6px 0 6px;
    font-weight: 500;
    color: #000;
    font-size: clamp(18px, 2vw, 24px);
    font-family: var(--font-family);
}
.team-card p {
    margin: 0;
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
    font-family: var(--font-family);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
    position: relative;
    overflow: visible;
    background: url("/assets/images/testimonials-section-bg.png") no-repeat center top;
    background-size: cover;
}
.testimonials-section .testimonials-title {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    color: #000;
    font-family: var(--font-family);
    line-height: 1.15;
}
.testimonials-section .testimonials-subtitle {
    color: #000;
    margin: 0 0 24px;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}
.testimonials-section .testimonial-card {
    background: #FBF9FD;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 5px 10px 18px #A0AFF840;
    height: 100%;
}

.testimonials-section .testimonial-card:hover {
 box-shadow:none;
}

.testimonials-section .testimonial-card p {
    margin: 10px 0 14px;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    font-family: var(--font-family);
}
.testimonials-section .testimonial-card .stars { color: #FFB400; letter-spacing: 1px; font-weight: 700; }
.testimonials-section .testimonial-person {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
}
.testimonial-person img { width: 40px; height: 40px; }
.testimonial-person strong {
    display: block;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    font-family: var(--font-family);
}
.testimonials-section .testimonial-person span {
    color: #000;
    font-size: 14px;
    font-family: var(--font-family);
}

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

.cta-wrap { padding: 80px 6vw; }
.cta-box {
    border-radius: 28px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    padding: 76px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-blob1 {
    position: absolute; top: -80px; right: -80px;
    width: 340px; height: 340px; border-radius: 50%;
    background: rgba(255,255,255,.07); pointer-events: none;
}
.cta-blob2 {
    position: absolute; bottom: -100px; left: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,.04); pointer-events: none;
}
.cta-box h2 {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -.02em;
    position: relative; z-index: 1;
    font-family: var(--font-family);
    line-height: 1.15;
}
.cta-box p {
    color: rgba(255,255,255,.80);
    max-width: 490px;
    margin: 0 auto 34px;
    position: relative; z-index: 1;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}
.cta-note {
    color: rgba(255,255,255,.58);
    font-size: 14px;
    font-weight: 300;
    margin-top: 18px;
    position: relative; z-index: 1;
    font-family: var(--font-family);
}

/* Old CTA compat */
.cta-section {
    position: relative;
    padding: 40px 26px;
    background: url('/assets/images/cta_bg.png') center center / cover no-repeat;
    border-radius: 16px;
    overflow: hidden;
    margin: 40px 6vw 80px;
}
.cta-overlay { position: absolute; inset: 0; background: #4F46E580; pointer-events: none; }
.cta-section .container { position: relative; z-index: 1; }
.cta-kicker {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: var(--font-family);
}
.cta-subtitle {
    color: #fff;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 300;
    font-family: var(--font-family);
}
.cta { padding-bottom: 90px; }
.cta-card {
    background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(147,51,234,0.12));
    border: 1px solid rgba(79,70,229,0.18);
    border-radius: 18px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    align-items: center;
}
.cta .actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section { padding: clamp(30px, 6vw, 80px) 6vw; }
.faq-section .faq-intro h2 {
    font-size: clamp(24px, 3.5vw, 44px) !important;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    font-family: var(--font-family);
    line-height: 1.15;
}
.faq-section .faq-intro p {
    margin: 0;
    color: #000;
    font-size: clamp(15px, 1.5vw, 18px) !important;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}
.faq-section.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 25px;
    overflow: hidden;
    background: #f4f0ff;
}
.faq-section .faq-accordion .accordion-button {
    background: linear-gradient(90deg, rgba(79,70,229,0.1) 0%, rgba(147,51,234,0.1) 85.24%);
    font-weight: 600;
    color: #000;
    box-shadow: none;
    font-size: 18px;
    font-family: var(--font-family);
    border-radius: 8px;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
    color: #000;
    background: #ede6ff;
    box-shadow: none;
}
.faq-section .faq-accordion .accordion-body {
    background: #f9f6ff;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
    border-radius: 8px;
}
.faq-section .accordion .accordion-item { border-radius: 8px;margin-bottom: 8px;}

.faq-section .faq-accordion .accordion-button::after {
    background-image: url('/assets/images/plus-accordions.png');
}
.faq-section .faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url('/assets/images/minus-accordions.png');
    transform: none;
}

.faq-section .left__box .s-label { display: inline-flex; align-items: center; gap: 6px; background: rgba(79,70,229,.08); color: #4f46e5; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; border: 1px solid #c8c2ff; margin-bottom: 14px; }
.faq-section .left__box .s-title { font-family: 'Blinker',sans-serif; font-size: clamp(1.85rem,3vw,2.6rem); font-weight: 900; letter-spacing: -.03em; color: #12102a; line-height: 1.1; }
.faq-section .left__box .grad-text { background: linear-gradient(135deg, #4F46E5, #9333EA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.faq-section .left__box .btn-grad { background: linear-gradient(135deg, #4F46E5, #9333EA); color: #fff; padding: 13px 28px; border-radius: 50px; font-weight: 300; font-size: .9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 6px 24px rgba(79,70,229,.4); transition: all .25s; border: none; cursor: pointer; font-family: 'Blinker',sans-serif; }
.faq-section .left__box .btn-grad:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(79,70,229,.5); }
.faq-section .left__box .btn-out { background: #FFFFFF; color: #4F46E5; border: 1.5px solid #c8c2ff; padding: 13px 26px; border-radius: 50px; font-weight: 600; font-size: .9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; font-family: 'Blinker',sans-serif; }
.faq-section .left__box .btn-out:hover { border-color: #4F46E5; box-shadow: 0 2px 14px rgba(79,70,229,0.08); transform: translateY(-1px); }
@media (max-width: 991px){.faq-section .left__box{text-align:center;}.faq-section .left__box .s-label{justify-content:center;margin-left:auto;margin-right:auto;}.faq-section .left__box .s-title{text-align:center;}.faq-section .left__box .btn-grad,.faq-section .left__box .btn-out{justify-content:center;margin-left:auto;margin-right:auto;}.faq-section .left__box .btn-group,.faq-section .left__box .btn-wrapper{display:flex;justify-content:center;flex-wrap:wrap;gap:10px;}}
@media (max-width: 576px){.faq-section .left__box .s-title{font-size:1.6rem;line-height:1.2;}.faq-section .left__box .s-label{font-size:.65rem;padding:4px 12px;}.faq-section .left__box .btn-grad,.faq-section .left__box .btn-out{width:60%;justify-content:center;padding:12px 20px;font-size:.85rem;}.faq-section .left__box .btn-group,.faq-section .left__box .btn-wrapper{flex-direction:column;align-items:center;gap:8px;}}
/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    padding: 50px 6vw 0;
    color: #000;
    background: linear-gradient(180deg, #eeecfc 0%, #f3ebfe 100%);
}
.footer-top { padding-bottom: 40px; }
.footer-brand h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-family);
}
.site-footer .footer-top .footer-brand p {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 300;
    font-family: var(--font-family);
    line-height: 1.6;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    margin-right: 6px;
}
@media (min-width: 992px) { .footer-brand { width: 60%; } }

.site-footer .footer-top h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-family);
}
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 8px; }
.site-footer .footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-family);
}

.site-footer .footer-cta { padding: 28px 16px; text-align: center; }
.site-footer .footer-cta h4 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--font-family);
}
.footer-cta .cta__text {
    margin: 15px auto !important;
    font-size: 18px !important;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
    width: 80%;
}
.footer-cta-item { padding: 10px; }
.footer-cta-text {
    background: linear-gradient(90deg, rgba(79,70,229,0.25) 0%, rgba(147,51,234,0.25) 85.24%);
    border-radius: 11px;
    padding: 50px 40px;
}
.footer-cta-icon {
    max-width: 48px; height: 48px;
    width: 100%;
    margin: 0 auto 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.footer-cta h6 {
    margin: 0 0 4px;
    font-weight: 600;
    font-size: 20px;
    font-family: var(--font-family);
}
.site-footer .footer-cta .footer-cta-item p {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    font-family: var(--font-family);
}
.footer-bottom { padding: 16px 0 24px; color: #000; }
.footer-copy {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-family);
}
.footer-bottom-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-bottom-links a {
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-family);
}
.site-footer .footer-bottom .footer-bottom-links img {
    width: 14px; height: 14px;
    object-fit: contain;
    margin-right: 4px;
    vertical-align: middle;
}

/* =============================================
   MISC / COMPAT
   ============================================= */

.workflow-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    align-items: center;
}
.workflow-content img { width: 100%; border-radius: 12px; border: 1px solid var(--border); }
.workflow .list .row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px; padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    margin-bottom: 10px;
}
.workflow .bullet {
    width: 28px; height: 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff;
}

.home-footer {
    padding: 26px 6vw;
    border-top: 1px solid var(--border);
    background: #f8f9ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #4b5563;
}
.home-footer .brand { display: inline-flex; align-items: center; gap: 8px; color: #0f172a; font-weight: 700; }
.home-footer img { height: 26px; width: auto; }

.run-through {
    padding: 100px 6vw;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,246,255,0.9));
}
.step-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(99,102,241,0.2);
    padding: 32px;
    position: relative;
    min-height: 320px;
    display: flex; flex-direction: column; gap: 14px;
}
.step-card h5 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; font-family: var(--font-family); }
.step-card p  { margin: 0; color: #4b5563; font-size: 18px; font-weight: 300; }
.step-number {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(147,51,234,0.2));
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; color: #4F46E5;
}
.step-visual { border-radius: 18px; border: 1px solid rgba(99,102,241,0.2); background: #fff; }
.step-icon {
    position: absolute; bottom: 16px; right: 16px;
    font-size: 1.5rem;
    background: rgba(99,102,241,0.12);
    width: 42px; height: 42px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
}
.marker {
    position: absolute; top: -16px;
    width: 32px; height: 32px; border-radius: 50%;
    background: #fff; border: 2px solid rgba(99,102,241,0.8);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.marker:nth-child(1) { left: 0; }
.marker:nth-child(2) { left: calc(50% - 16px); }
.marker:nth-child(3) { right: 0; }
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

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

@media (max-width: 1000px) {
    .hero-inner { grid-template-columns: 1fr; }
    /* .hero-visual-wrap { display: none; } */
}

/* Mobile/Tablet drawer styles */
@media (max-width: 991px) {
    /* Jab collapse ho tab grid layout */
    .nav-collapse.show,
    .nav-collapse.collapsing {
        display: block !important;
        padding: 10px 0 16px;
        border-top: 1px solid #e2e8f0;
        margin-top: 8px;
    }

    /* Jab band ho */
    .nav-collapse:not(.show):not(.collapsing) {
        display: none !important;
    }

    .home-nav .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 2px;
        margin-bottom: 10px;
    }

    .home-nav .nav-links .nav-link {
        width: 100%;
        padding: 10px 12px;
        font-size: 15px;
    }

    .home-nav .nav-actions {
        width: 100%;
        flex-direction: row;
        padding: 0 4px;
        gap: 10px;
    }

    .home-nav .nav-actions .nav-btn {
        flex: 1;
        text-align: center;
    }
}

@media (min-width: 992px) {
    /* Desktop pe hamesha visible */
    .nav-collapse {
        display: flex !important;
        flex-direction: row;
        align-items: center;
    }

    /* Toggler hide karo */
    .navbar-toggler {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .home-nav {
        flex-wrap: wrap;
        gap: 0px !important;
        padding: 6px 18px;
    }

    .home-nav .nav-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .home-nav .nav-actions {
        justify-content: flex-start;
    }

    .hero-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 1000px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

.testimonials-section .testimonial-card { display: flex; flex-direction: column; height: 100%;}

.testimonials-section .testimonial-card .testimonial-person { margin-top: auto;}
@media (max-width: 900px) {
    .home-nav {grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 0px !important; padding: 6px 18px; }
    .home-header{background-color: #FFFFFF;}
    .home-nav .nav-links { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; }
    .home-nav .nav-actions { justify-content: flex-start; }
    .hero-actions { justify-content: flex-start; }
}


@media (max-width: 767px) {
    .home-header{background-color: #FFFFFF;}
    .feature-icon { margin-bottom: 12px; }
    .hero-after-section .hero-after-card .feature-card { min-height: unset; }
    .how-steps-section .how-card { text-align: left; padding: 0; min-height: unset; }
    .how-steps-section .how-card .card__inner_imageiconbox { display: flex; align-items: center; gap: 10px; }
    .how-steps-section .how-visual { margin: 0; max-width: unset; }
    .hero-inner { gap: 25px; }

    /* Card body text → 16px on mobile */
    .hero-after-section .hero-after-card .feature-card p,
    .how-steps-section .how-card p,
    .team-card p,
    .testimonial-card p,
    .step-card p,
    .deliver-section .feature-list p,
    .deliver-lede,
    .cta-box p,
    .faq-accordion .accordion-body,
    .faq-accordion .accordion-button,
    .hero-after-section .hero-after-card p.text-muted,
    .how-subtitle,
    .teams-subtitle,
    .testimonials-subtitle,
    .faq-intro p,
    .footer-cta .cta__text,
    .site-footer .footer-top .footer-brand p { font-size: 16px !important;}
    .deliver-section .deliver-text .delivery__started_btn {text-align: center;}
    .teams-section .team-icon{width: 60px; height:60px;}
    .teams-section .team-icon svg{width: 35px; height: 35px;}
    .teams-section .team-card {min-height: unset;padding: 10px 18px;}
    .testimonials-section .testimonial-card .stars{text-align: center; font-size: 25px;}
    .site-footer .footer-bottom .footer-bottom-links{ border-top: 1px solid #ddd; padding-top: 15px; display: grid; grid-template-columns: 1fr 1fr; row-gap: 10px; column-gap: 20px;}
    .site-footer .footer-cta h4{font-size: 22px;}
    .site-footer{padding: 15px 3vw 0;}

    /* hide separators */
    .footer-bottom-links span{
        display: none;
    }

    /* place items in correct columns */
    .footer-bottom-links a:nth-of-type(1){
        grid-column: 1;
        grid-row: 1;
    }

    .footer-bottom-links a:nth-of-type(2){
        grid-column: 1;
        grid-row: 2;
    }

    .footer-bottom-links a:nth-of-type(3){
        grid-column: 2;
        grid-row: 1;
    }

    .footer-bottom-links a:nth-of-type(4){
        grid-column: 2;
        grid-row: 2;
    }
    /* ── Vertical timeline (mobile) ── */
    .how-steps-section .how-timeline { display: none; }

    .how-steps-section .row {
        flex-direction: column;
        position: relative;
        padding-left: 48px;
    }

    .how-steps-section .row::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 16px;
        bottom: 16px;
        width: 2px;
        background: linear-gradient(180deg, #cccccc 0%, #9333ea 50%, #cccccc 100%);
        z-index: 1;
    }

    .how-steps-section .col-md-4 {
        position: relative;
    }

    .how-steps-section .col-md-4::before {
        content: attr(data-step);
        position: absolute;
        left: -47px;
        top: 20px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #B96DE8;
        border: 2px solid #DBE2FF;
        color: #fff;
        font-weight: 300;
        font-family: var(--font-family);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .home-header{background-color: #FFFFFF;}
    .home-hero { padding: 100px 5vw 60px; text-align: center; }
    .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
    .proof-row { justify-content: center; display: none; }
    .no-card-badge { margin-left: 0; }
    .cta .actions { justify-content: flex-start; }
    .cta-wrap { padding: 15px 4vw; }
    .cta-box { padding: 50px 6%; border-radius: 20px; }
    .how-timeline { display: none; }
    .how-card { padding: 0; }
    .hero-after-section .hero-after-card .feature-card { min-height: unset; }
    .site-footer .footer-cta h4{font-size: 22px;}
    .fc-top,.fchip {display: none}
    .hero-visual-wrap {padding: 0;}
}

@media (max-width: 480px) {
    .home-header{background-color: #FFFFFF;}
    .feature-card { padding: 12px; gap: 10px; }
    .hero-after-section .hero-after-card .feature-card { min-height: unset; }
    .site-footer .footer-cta h4{font-size: 22px;}
    .faq-section
    .site-footer .footer-bottom .footer-bottom-links{
        border-top: 1px solid #ddd;
        padding-top: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 10px;
        column-gap: 20px;
    }

    /* hide separators */
    .footer-bottom-links span{
        display: none;
    }

    /* place items in correct columns */
    .footer-bottom-links a:nth-of-type(1){
        grid-column: 1;
        grid-row: 1;
    }

    .footer-bottom-links a:nth-of-type(2){
        grid-column: 1;
        grid-row: 2;
    }

    .footer-bottom-links a:nth-of-type(3){
        grid-column: 2;
        grid-row: 1;
    }

    .footer-bottom-links a:nth-of-type(4){
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 360px) {
    .home-header{background-color: #FFFFFF;}
    .feature-card { padding: 10px; gap: 8px; }
    .feature-icon { max-width: 80px; }
    .hero-after-section .hero-after-card .feature-card { min-height: unset; }
}

/* =============================================
   FADE ANIMATIONS
============================================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Visible state */
.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* =============================================
   DELIVER IMAGE ZOOM ON HOVER
   ============================================= */

.deliver-visual {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 16px;
}
.deliver-visual img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: inline-block;
    transition: transform 0.4s ease;
    border-radius: 16px;
}
.deliver-visual:hover img {
    transform: scale(1.05);
}
  .success-continue-btn:hover {
    opacity: 0.88;
    transform: scale(1.02);
  }
  .success-continue-btn:active {
    transform: scale(0.98);
  }

    #getStartedModal input::placeholder {
        color: #111 !important;
        opacity: 1;
    }

/* ====================================== Contact Form Styles ====================================== */
    .home-body .contact-page-hero { position: relative; padding: clamp(80px, 10vw, 140px) 0 30px; text-align: center; background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 50%, #EDE9FE 100%);}
    .home-body .contact-page-hero .container { position: relative; z-index: 2; }
    .home-body .contact-page-hero .contact-hero-blob1 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%); bottom: -100px; left: -100px; border-radius: 50%; pointer-events: none; }
    .home-body .contact-page-hero .contact-hero-blob2 { position: absolute; width: 450px; height: 450px; background: radial-gradient(circle, rgba(147,51,234,0.12) 0%, transparent 70%); top: -100px; right: 10px; border-radius: 50%; pointer-events: none; }
    .home-body .contact-page-hero .contact-page-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #111827; margin-bottom: 16px; }
    .home-body .contact-page-hero .contact-page-subtitle { font-size: 24px; color: #000000; line-height: 1.4; }
    .home-body .contact-page-section { padding-top: 30px; padding-bottom: 60px; }
    .home-body .contact-page-section .contact-info-box { position: relative; border-radius: 16px; overflow: hidden; padding: 36px 28px; height: 100%; display: flex; flex-direction: column; gap: 32px; background: url('../images/contact-info-bg.jpg') no-repeat center center / cover; }
    .home-body .contact-page-section .contact-info-box::before { content: ''; position: absolute; inset: 0; background: #4f46e5b3; border-radius: 16px; z-index: 0; }
    .home-body .contact-page-section .contact-info-box .contact-info-title { position: relative; z-index: 1; font-size: 2rem; font-weight: 600; color: #ffffff; margin-bottom: 0; text-align: center; }
    .home-body .contact-page-section .contact-info-box .contact-info-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 24px; }
    .home-body .contact-page-section .contact-info-box .contact-info-list .contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .home-body .contact-page-section .contact-info-box .contact-info-list .contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
    .home-body .contact-page-section .contact-info-box .contact-info-list .contact-info-item .contact-info-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .home-body .contact-page-section .contact-info-box .contact-info-list .contact-info-item .contact-info-text { display: flex; flex-direction: column; gap: 4px; }
    .home-body .contact-page-section .contact-info-box .contact-info-list .contact-info-item .contact-info-text .contact-info-label { font-size: 1.5rem; font-weight: 600; color: #ffffff; }
    .home-body .contact-page-section .contact-info-box .contact-info-list .contact-info-item .contact-info-text .contact-info-value { font-size: 1.2rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
    .home-body .contact-page-section .contact-info-box .contact-social-wrap { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: auto; }
    .home-body .contact-page-section .contact-info-box .contact-social-wrap .contact-social-title { font-size: 1.25rem; font-weight: 600; color: #ffffff; }
    .home-body .contact-page-section .contact-info-box .contact-social-wrap .contact-social-icons { display: flex; align-items: center; gap: 14px; }
    .home-body .contact-page-section .contact-info-box .contact-social-wrap .contact-social-icons .contact-social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; }
    .home-body .contact-page-section .contact-info-box .contact-social-wrap .contact-social-icons .contact-social-link:hover { background: rgba(255,255,255,0.3); }
    .home-body .contact-page-section .contact-form-box { background: linear-gradient(180deg, rgba(79,70,229,0.1) 0%, rgba(147,51,234,0.1) 100%); border-radius: 16px; padding: 36px 40px; height: 100%; }
    .home-body .contact-page-section .contact-form-box .contact-form-title { font-size: 2rem; font-weight: 600; color: #111827; margin-bottom: 28px; }
    .home-body .contact-page-section .contact-form-box .contact-form .contact-form-group { margin-bottom: 20px; }
    .home-body .contact-page-section .contact-form-box .contact-form .contact-form-group .contact-form-label { display: block; font-size: 1.25rem; font-weight: 600; color: #111827; margin-bottom: 8px; }
    .home-body .contact-page-section .contact-form-box .contact-form .contact-form-group .contact-form-input { width: 100%; padding: 12px 16px; border: 1px solid rgba(79,70,229,0.2); border-radius: 10px; font-size: 0.95rem; color: #111827; background: #ffffff; outline: none; transition: border-color 0.2s ease; }
    .home-body .contact-page-section .contact-form-box .contact-form .contact-form-group .contact-form-input:focus { border-color: #7C3AED; }
    .home-body .contact-page-section .contact-form-box .contact-form .contact-form-group .contact-form-textarea { width: 100%; padding: 12px 16px; border: 1px solid rgba(79,70,229,0.2); border-radius: 10px; font-size: 0.95rem; color: #111827; background: #ffffff; outline: none; resize: vertical; transition: border-color 0.2s ease; }
    .home-body .contact-page-section .contact-form-box .contact-form .contact-form-group .contact-form-textarea:focus { border-color: #7C3AED; }
    .home-body .contact-page-section .contact-form-box .contact-form .contact-form-btn { width: 100%; padding: 14px; background: linear-gradient(90deg, #4F46E5 0%, #9333EA 85.24%); color: #ffffff; border: none; border-radius: 10px; font-size: 1rem; font-weight: 300; cursor: pointer; transition: opacity 0.2s ease; }
    .home-body .contact-page-section .contact-form-box .contact-form .contact-form-btn:hover { opacity: 0.9; }
    @media (max-width: 1199px) { .home-body .contact-page-section .contact-form-box { padding: 28px 30px; } .home-body .contact-page-section .contact-info-box { padding: 28px 22px; } }
    @media (max-width: 991px) { .home-body .contact-page-hero .contact-page-subtitle { font-size: 1rem; } .home-body .contact-page-section .contact-info-box { height: auto; } .home-body .contact-page-section .contact-form-box { height: auto; } }
    @media (max-width: 767px) { .home-body .contact-page-hero { padding: 80px 0 30px; } .home-body .contact-page-hero .contact-page-title { font-size: clamp(1.6rem, 6vw, 2.2rem); } .home-body .contact-page-hero .contact-page-subtitle { font-size: 0.95rem; } .home-body .contact-page-hero .contact-hero-blob1 { width: 250px; height: 250px; bottom: -60px; left: -60px; } .home-body .contact-page-hero .contact-hero-blob2 { width: 200px; height: 200px; top: -50px; right: 10px; } .home-body .contact-page-section { padding-top: 30px; padding-bottom: 40px; } .home-body .contact-page-section .contact-form-box { padding: 24px 20px; } .home-body .contact-page-section .contact-info-box { padding: 24px 20px; } }
    @media (max-width: 575px) { .home-body .contact-page-hero { padding: 70px 0 30px; } .home-body .contact-page-hero .contact-page-title { font-size: clamp(1.4rem, 7vw, 1.9rem); } .home-body .contact-page-hero .contact-page-subtitle { font-size: 0.88rem; } .home-body .contact-page-section .contact-form-box .contact-form-title { font-size: 1rem; } .home-body .contact-page-section .contact-info-box .contact-info-title { font-size: 1.1rem; } .home-body .contact-page-section .contact-form-box .contact-form .contact-form-btn { font-size: 0.95rem; padding: 12px; } }
    @media (max-width: 360px) { .home-body .contact-page-hero .contact-page-title { font-size: 1.3rem; } .home-body .contact-page-hero .contact-page-subtitle { font-size: 0.82rem; } .home-body .contact-page-section .contact-form-box { padding: 18px 14px; } .home-body .contact-page-section .contact-info-box { padding: 18px 14px; } }


    /* ========================================== FAQ Page styles ========================================== */

    .home-body .faq-page-hero { position: relative; padding: clamp(80px, 10vw, 140px) 0 30px; text-align: center; background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 50%, #EDE9FE 100%);}
    .home-body .faq-page-section { padding-top: 30px; }
    .home-body .faq-page-hero .faq-hero-blob1 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%); top: -100px; left: -100px; border-radius: 50%; }
    .home-body .faq-page-hero .faq-hero-blob2 { position: absolute; width: 450px; height: 450px; background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%); top: -100px; right: 10px; border-radius: 50%; }
    .home-body .faq-page-hero .faq-page-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #111827; margin-bottom: 16px; }
    .home-body .faq-page-hero .faq-page-subtitle { font-size: 1.1rem; color: #000000; line-height: 1.4; }
    .home-body .faq-page-section .faq-sidebar { display: flex; flex-direction: column; gap: 10px; position: sticky; top: 100px; }
    .home-body .faq-page-section .faq-sidebar .faq-cat-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 20px; background: linear-gradient(90deg, rgba(79,70,229,0.1) 0%, rgba(147,51,234,0.1) 85.24%); border: none; border-radius: 10px; font-size: 0.95rem; font-weight: 500; color: #000000; cursor: pointer; transition: all 0.2s ease; text-align: left; }
    .home-body .faq-page-section .faq-sidebar .faq-cat-btn:hover { background: #ede9fe; color: #000000; }
    .home-body .faq-page-section .faq-sidebar .faq-cat-btn.active { background: linear-gradient(90deg, #4F46E5 0%, #9333EA 85.24%); color: #ffffff; }
    .home-body .faq-page-section .faq-sidebar .faq-cat-btn .faq-cat-arrow { font-size: 1.1rem; font-weight: 400; transition: transform 0.2s; }
    .home-body .faq-page-section .faq-sidebar .faq-cat-btn.active .faq-cat-arrow { transform: rotate(90deg); }
    .home-body .faq-page-section .faq-category-block { margin-bottom: 12px; }
    .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item { border: 1px solid #e5e7eb; border-radius: 12px !important; margin-bottom: 10px; overflow: hidden; background: #fff; transition: box-shadow 0.2s; }
    .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item:hover { box-shadow: 0 4px 16px rgba(109,40,217,0.08); }
    .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-button { font-size: 1rem; font-weight: 600; color: #111827; padding: 20px 24px; background: linear-gradient(90deg, rgba(79,70,229,0.1) 0%, rgba(147,51,234,0.1) 85.24%); }
    .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-button:not(.collapsed) { background: linear-gradient(90deg, rgba(79,70,229,0.1) 0%, rgba(147,51,234,0.1) 85.24%); color: #000000; box-shadow: none; }
    .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-button::after { content: ''; width: 22px; height: 22px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 4v8M4 8h8' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 14px; transform: none; border-radius: 50%; flex-shrink: 0; border: 1px solid #000000; }
    .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-button:not(.collapsed)::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8h8' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); border-color: #000000; }
    .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-body { padding: 0 24px 20px; font-size: 0.95rem; color: #000000; line-height: 1.4; font-family: 'blinker', sans-serif; background: linear-gradient(90deg, rgba(79,70,229,0.1) 0%, rgba(147,51,234,0.1) 85.24%); }
    .home-body .cta-wrap .cta-box { position: relative; }
    @media (max-width: 1199px) { .home-body .faq-page-section .faq-sidebar .faq-cat-btn { padding: 12px 14px; font-size: 0.9rem; } .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-button { padding: 18px 20px; font-size: 0.97rem; } }
    @media (max-width: 991px) { .home-body .faq-page-section .faq-sidebar { flex-direction: row; flex-wrap: wrap; position: static; gap: 8px; margin-bottom: 24px; } .home-body .faq-page-section .faq-sidebar .faq-cat-btn { width: auto; flex: 1 1 auto; justify-content: center; font-size: 0.85rem; padding: 10px 14px; } .home-body .faq-page-section .faq-sidebar .faq-cat-btn .faq-cat-arrow { display: none; } .home-body .faq-page-hero .faq-page-subtitle { font-size: 1rem; } }
    @media (max-width: 767px) { .home-body .faq-page-hero { padding: 80px 0 40px; } .home-body .faq-page-hero .faq-page-title { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 12px; } .home-body .faq-page-hero .faq-page-subtitle { font-size: 0.95rem; } .home-body .faq-page-hero .faq-hero-blob1 { width: 250px; height: 250px; top: -60px; left: -60px; } .home-body .faq-page-hero .faq-hero-blob2 { width: 200px; height: 200px; bottom: -50px; right: 15px; } .home-body .faq-page-section .faq-sidebar .faq-cat-btn { font-size: 0.8rem; padding: 8px 12px; } .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-button { font-size: 0.92rem; padding: 16px 18px; } .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-body { font-size: 0.9rem; padding: 0 18px 16px; } }
    @media (max-width: 575px) { .home-body .faq-page-hero { padding: 70px 0 30px; } .home-body .faq-page-hero .faq-page-title { font-size: clamp(1.4rem, 7vw, 1.9rem); } .home-body .faq-page-hero .faq-page-subtitle { font-size: 0.88rem; } .home-body .faq-page-section .faq-sidebar { gap: 6px; } .home-body .faq-page-section .faq-sidebar .faq-cat-btn { font-size: 0.78rem; padding: 8px 10px; border-radius: 8px; } .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item { border-radius: 10px !important; } .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-button { font-size: 0.88rem; padding: 14px 16px; } .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-body { font-size: 0.86rem; padding: 0 16px 14px; } }
    @media (max-width: 360px) { .home-body .faq-page-hero .faq-page-title { font-size: 1.3rem; } .home-body .faq-page-hero .faq-page-subtitle { font-size: 0.82rem; } .home-body .faq-page-section .faq-sidebar .faq-cat-btn { font-size: 0.72rem; padding: 7px 8px; } .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-button { font-size: 0.82rem; padding: 12px 14px; } .home-body .faq-page-section .faq-category-block .faq-page-accordion .accordion-item .accordion-body { font-size: 0.8rem; padding: 0 14px 12px; } }

    /* =========================== Privacy Policy Styles =====================================*/ 
    .home-body .privacy-page-hero { position: relative; padding: clamp(80px, 10vw, 140px) 0 30px; text-align: center; background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 50%, #EDE9FE 100%);}
    .home-body .privacy-page-hero .container { position: relative; z-index: 2; }
    .home-body .privacy-page-hero .privacy-hero-blob1 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%); bottom: -100px; left: -100px; border-radius: 50%; pointer-events: none; }
    .home-body .privacy-page-hero .privacy-hero-blob2 { position: absolute; width: 450px; height: 450px; background: radial-gradient(circle, rgba(147,51,234,0.12) 0%, transparent 70%); top: -100px; right: 10px; border-radius: 50%; pointer-events: none; }
    .home-body .privacy-page-hero .privacy-page-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #000000; margin-bottom: 16px; }
    .home-body .privacy-page-hero .privacy-page-subtitle { font-size: 1.25rem; color: #000000; line-height: 1.4; }
    .home-body .privacy-page-section { padding: 30px clamp(16px, 4vw, 60px) 60px; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-meta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-meta span { font-size: clamp(0.85rem, 1.5vw, 1.25rem); color: #000000; font-weight: 500; }       
    .home-body .privacy-page-section .privacy-content-wrap .privacy-intro { font-size: clamp(0.9rem, 1.5vw, 1.25rem); color: #000000; line-height: 1.8; margin-bottom: 36px; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-block { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #e5e7eb; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-block-title { font-size: 2rem; font-weight: 600; color: #000000; margin-bottom: 12px; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-block-subtitle { font-size: 1.25rem; font-weight: 600; color: #000000; margin-top: 16px; margin-bottom: 8px; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-block-text { font-size: 1.25rem; color: #000000; line-height: 1.8; margin-bottom: 10px; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-list { padding-left: 20px; margin-bottom: 10px; display: flex; flex-direction: column; gap: 0px; list-style: none; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-list li { font-size: 1.25rem; color: #000000; line-height: 1.4; position: relative; padding-left: 16px; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-list li::before { content: '·'; position: absolute; left: 0; color: #000000; font-weight: 600; font-size: 1.1rem; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-link { color: #000000; text-decoration: none; font-weight: 500; }
    .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-link:hover { text-decoration: underline; }

    @media (max-width: 991px) { .home-body .privacy-page-hero .privacy-page-subtitle { font-size: 1rem; } .home-body .privacy-page-section .privacy-content-wrap { max-width: 100%; } }
    @media (max-width: 767px) { .home-body .privacy-page-hero { padding: 80px 0 30px; } .home-body .privacy-page-hero .privacy-page-title { font-size: clamp(1.6rem, 6vw, 2.2rem); } .home-body .privacy-page-hero .privacy-page-subtitle { font-size: 0.95rem; } .home-body .privacy-page-hero .privacy-hero-blob1 { width: 250px; height: 250px; bottom: -60px; left: -60px; } .home-body .privacy-page-hero .privacy-hero-blob2 { width: 200px; height: 200px; top: -50px; right: 10px; } .home-body .privacy-page-section { padding-top: 30px; padding-bottom: 40px; } .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-block-title { font-size: 1.05rem; } }
    @media (max-width: 575px) { .home-body .privacy-page-hero { padding: 100px 0 10px; } .home-body .privacy-page-hero .privacy-page-title { font-size: clamp(1.4rem, 7vw, 1.9rem); } .home-body .privacy-page-hero .privacy-page-subtitle { font-size: 0.88rem; } .home-body .privacy-page-section .privacy-content-wrap .privacy-block { margin-bottom: 24px; padding-bottom: 24px; } .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-block-title { font-size: 1rem; } .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-block-text { font-size: 0.9rem; } .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-list li { font-size: 0.9rem; } }
    @media (max-width: 360px) { .home-body .privacy-page-hero .privacy-page-title { font-size: 1.3rem; } .home-body .privacy-page-hero .privacy-page-subtitle { font-size: 0.82rem; } .home-body .privacy-page-section .privacy-content-wrap .privacy-block .privacy-block-title { font-size: 0.95rem; } }

    /* ================================== Help Center Styles ======================================= */
    .home-body .helpcenter-page-hero { position: relative; padding: clamp(80px, 10vw, 140px) 0 80px; background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #f0f4ff 100%); overflow: hidden; text-align: center;background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 50%, #EDE9FE 100%); }
    .home-body .helpcenter-page-hero::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 224px; height: 224px; background: url('assets/images/faq-banner-after.png') no-repeat center center; background-size: contain; pointer-events: none; z-index: 1; }
    .home-body .helpcenter-page-hero .container { position: relative; z-index: 2; }
    .home-body .helpcenter-page-hero .helpcenter-hero-blob1 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%); bottom: -100px; left: -100px; border-radius: 50%; pointer-events: none; }
    .home-body .helpcenter-page-hero .helpcenter-hero-blob2 { position: absolute; width: 450px; height: 450px; background: radial-gradient(circle, rgba(147,51,234,0.12) 0%, transparent 70%); top: -100px; right: 10px; border-radius: 50%; pointer-events: none; }
    .home-body .helpcenter-page-hero .helpcenter-page-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #111827; margin-bottom: 24px; }
    .home-body .helpcenter-page-hero .helpcenter-search-wrap { max-width: 560px; margin: 0 auto; }
    .home-body .helpcenter-page-hero .helpcenter-search-wrap .helpcenter-search-box { display: flex; align-items: center; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 0 0 0 18px; gap: 10px; box-shadow: 0 4px 20px rgba(79,70,229,0.08); }
    .home-body .helpcenter-page-hero .helpcenter-search-wrap .helpcenter-search-box .helpcenter-search-input { flex: 1; border: none; outline: none; font-size: 0.95rem; color: #111827; background: transparent; }
    .home-body .helpcenter-page-hero .helpcenter-search-wrap .helpcenter-search-box .helpcenter-search-input::placeholder { color: #9ca3af; }
    .home-body .helpcenter-page-hero .helpcenter-search-wrap .helpcenter-search-box .helpcenter-search-btn { background: linear-gradient(90deg, #4F46E5 0%, #9333EA 100%); color: #ffffff; border: none; border-radius: 0 12px 12px 0; padding: 10px 28px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: opacity 0.2s ease; flex-shrink: 0; width: 140px; }
    .home-body .helpcenter-page-hero .helpcenter-search-wrap .helpcenter-search-box .helpcenter-search-btn:hover { opacity: 0.9; }
    .home-body .helpcenter-page-section { padding: 50px clamp(16px, 4vw, 60px) 60px;  }
    .home-body .helpcenter-page-faq-section { background: linear-gradient(135deg, #f5f3ff00 0%, #d4cdf052 50%, #f0f4ff00 100%);  }
    .home-body .helpcenter-page-section .helpcenter-section-title { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 600; color: #111827; margin-bottom: 20px; }
    .home-body .helpcenter-page-section .helpcenter-categories-wrap .helpcenter-cat-card { display: flex; align-items: center; gap: 16px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 18px 20px; transition: box-shadow 0.2s ease; cursor: pointer; height: 100%; box-shadow: 0px 4px 4px 0px #00000040; }
    .home-body .helpcenter-page-section .helpcenter-categories-wrap .helpcenter-cat-card:hover { box-shadow: 0 4px 20px rgba(79,70,229,0.1); }
    .home-body .helpcenter-page-section .helpcenter-categories-wrap .helpcenter-cat-card .helpcenter-cat-icon { flex-shrink: 0; }
    .home-body .helpcenter-page-section .helpcenter-categories-wrap .helpcenter-cat-card .helpcenter-cat-icon img { width: 85px; height: 85px; object-fit: contain; }
    .home-body .helpcenter-page-section .helpcenter-categories-wrap .helpcenter-cat-card .helpcenter-cat-text .helpcenter-cat-title { font-size: 1.4rem; font-weight: 600; color: #111827; margin-bottom: 4px; }
    .home-body .helpcenter-page-section .helpcenter-categories-wrap .helpcenter-cat-card .helpcenter-cat-text .helpcenter-cat-desc { font-size: 1.13rem; color: #000000; line-height: 1.5; margin: 0; }
    
    @media (max-width: 1199px) { .home-body .helpcenter-page-section .helpcenter-categories-wrap .helpcenter-cat-card { padding: 14px 16px; } }
    @media (max-width: 991px) { .home-body .helpcenter-page-hero .helpcenter-page-title { font-size: clamp(1.6rem, 4vw, 2.2rem); } .home-body .helpcenter-page-section .helpcenter-bottom-wrap { margin-top: 36px; } }
    @media (max-width: 767px) { .home-body .helpcenter-page-hero { padding: 80px 0 30px; } .home-body .helpcenter-page-hero .helpcenter-search-wrap { max-width: 100%; padding: 0 16px; } .home-body .helpcenter-page-section .helpcenter-categories-wrap .helpcenter-cat-card .helpcenter-cat-icon img { width: 60px; height: 60px; } .home-body .helpcenter-page-section .helpcenter-categories-wrap .helpcenter-cat-card .helpcenter-cat-text .helpcenter-cat-title { font-size: 0.95rem; } }
    @media (max-width: 360px) { .home-body .helpcenter-page-hero .helpcenter-page-title { font-size: 1.3rem; } .home-body .helpcenter-page-section .helpcenter-categories-wrap .helpcenter-cat-card { padding: 12px 14px; } }

    /* ==================================== Instant download Modal Styles ================================================== */
    #downloadModal .modal-content .modal-header-wrap { position: relative; height: 90px; overflow: hidden;background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 50%, #EDE9FE 100%); }
    #downloadModal .modal-content .modal-header-wrap .icon-box { bottom: -37px; width: 100px; height: 74px; z-index: 1; }
    #downloadModal .modal-content .modal-header-wrap { position: relative; height: 90px; overflow: visible; }
    #downloadModal .modal-content .modal-body { padding-top: 52px; }
    #downloadModal .modal-content .modal-body h2 { font-size: 20px; color: #000000; }
    #downloadModal .modal-content .modal-body p { font-size: 14px; }
    #downloadModal .modal-content .modal-body .btn-store { background: linear-gradient(90deg, #4F46E5 0%, #9333EA 85.24%); font-size: 13px; }
    #downloadModal .modal-content .modal-body .btn-download-now { background: linear-gradient(90deg, #4F46E5 0%, #9333EA 85.24%); font-size: 18px; }

    /* =============================== Career Page Styles ================================== */
    .home-body .career-page-hero { position: relative; padding: clamp(27px, 3vw, 68px) 0 clamp(0px, 1vw, 26px); background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 50%, #EDE9FE 100%);}
    .home-body .career-page-hero .container { position: relative; z-index: 2; }
    .home-body .career-page-hero .career-hero-blob1 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%); bottom: -100px; left: -100px; border-radius: 50%; pointer-events: none; }
    .home-body .career-page-hero .career-hero-blob2 { position: absolute; width: 450px; height: 450px; background: radial-gradient(circle, rgba(147,51,234,0.12) 0%, transparent 70%); top: -100px; right: 10px; border-radius: 50%; pointer-events: none; }
    .home-body .career-page-hero .career-hero-content .career-page-title { font-family: var(--font-family); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: #000000; margin-bottom: 16px; }
    .home-body .career-page-hero .career-hero-content .career-page-subtitle { font-family: var(--font-family); font-size: clamp(0.95rem, 1.2vw + 0.3rem, 1.125rem); color: #000000; line-height: 1.4; margin-bottom: 28px; }
    .home-body .career-page-hero .career-hero-content .career-hero-btn { font-family: var(--font-family); display: inline-block; padding: 12px 28px; background: linear-gradient(90deg, #4F46E5 0%, #9333EA 100%); color: #ffffff; border-radius: 12px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: opacity 0.2s ease; }
    .home-body .career-page-hero .career-hero-content .career-hero-btn:hover { opacity: 0.9; }
    .home-body .career-page-hero .career-hero-visual .career-hero-img { width: 100%; max-width: 520px; object-fit: contain; display: block; margin-left: auto; }

    /* ===== WHY WORK WITH US ===== */
    .home-body .career-why-section { padding: 60px clamp(16px, 4vw, 60px); }
    .home-body .career-why-section .career-why-header { text-align: center; margin-bottom: 36px; }
    .home-body .career-why-section .career-why-header .career-why-title { font-family: var(--font-family); font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: #000000; margin-bottom: 10px; }
    .home-body .career-why-section .career-why-header .career-why-subtitle { font-family: var(--font-family); font-size: clamp(0.875rem, 1vw + 0.2rem, 1.125rem); color: #000000; }
    .home-body .career-why-section .career-why-card { display: flex; align-items: center; gap: 16px; background: #FBF9FD; border: 1px solid #e5e7eb; border-radius: 14px; padding: 24px 20px; height: 100%; transition: box-shadow 0.2s ease; box-shadow: 0px 4px 4px 0px #00000040; }
    .home-body .career-why-section .career-why-card:hover { box-shadow: 0 4px 20px rgba(79,70,229,0.1); }
    .home-body .career-why-section .career-why-card .career-why-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .home-body .career-why-section .career-why-card .career-why-icon img { width: 64px; height: 64px; object-fit: contain; }
    .home-body .career-why-section .career-why-card .career-why-text .career-why-card-title { font-family: var(--font-family); font-size: 1.25rem; font-weight: 600; color: #000000; margin-bottom: 6px; }
    .home-body .career-why-section .career-why-card .career-why-text .career-why-card-desc { font-family: var(--font-family); font-size: 1.125rem; color: #444444; line-height: 1.55; margin: 0; }

    /* ===== OPEN POSITIONS ===== */
    .home-body .career-positions-section { padding: 60px clamp(16px, 4vw, 60px) 60px; }
    .home-body .career-positions-section .career-positions-header { text-align: center; margin-bottom: 36px; }
    .home-body .career-positions-section .career-positions-header .career-positions-title { font-family: var(--font-family); font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: #000000; margin-bottom: 10px; }
    .home-body .career-positions-section .career-positions-header .career-positions-subtitle { font-family: var(--font-family); font-size: clamp(0.875rem, 1vw + 0.2rem, 1.0625rem); color: #000000; }
    .home-body .career-positions-section .career-position-card { display: flex; flex-direction: column; gap: 8px; background: #FBF9FD; border: 1px solid #e5e7eb; border-radius: 14px; padding: 20px 24px; height: 100%; transition: box-shadow 0.2s ease; box-shadow: 6.64px 6.64px 9.96px 0px #A0AFF840; }
    .home-body .career-positions-section .career-position-card:hover { box-shadow: none; }
    .home-body .career-positions-section .career-position-avatar { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .home-body .career-positions-section .career-position-avatar img { border-radius: 50%; height: 52px; width: 52px; object-fit: cover; }
    .home-body .career-positions-section .career-position-card .career-position-title { font-family: var(--font-family); font-size: 1.25rem; font-weight: 600; color: #000000; margin: 0; }
    .home-body .career-positions-section .career-position-card .career-position-meta { font-family: var(--font-family); font-size: 0.875rem; color: #555555; margin: 0; }
    .home-body .career-positions-section .career-position-card .career-position-desc { font-family: var(--font-family); font-size: 1.125rem; color: #333333; line-height: 1.55; margin: 0; flex: 1; }
    .home-body .career-positions-section .career-position-card .career-apply-btn { font-family: var(--font-family); display: block; text-align: center; padding: 10px 0; background: linear-gradient(90deg, #4F46E5 0%, #9333EA 100%); color: #ffffff; border-radius: 8px; font-size: 0.9375rem; font-weight: 500; text-decoration: none; transition: opacity 0.2s ease; margin-top: 4px; }
    .home-body .career-positions-section .career-position-card .career-apply-btn:hover { opacity: 0.9; }

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

    @media (max-width: 1199px) {
       .home-body .career-page-hero { padding: clamp(24px, 2.5vw, 50px) 0 clamp(0px, 1vw, 20px); }
        .home-body .career-why-section { padding: 50px clamp(16px, 3vw, 40px); }
        .home-body .career-positions-section { padding: 50px clamp(16px, 3vw, 40px) 50px; }
    }

    @media (max-width: 991px) {
        .home-body .career-page-hero .career-hero-content { text-align: center; padding-bottom: 32px; width: 100%; }
        .home-body .career-page-hero { padding: 75px 0 clamp(0px, 1vw, 20px); }
        .home-body .career-why-section { padding: 44px clamp(16px, 3vw, 32px); }
        .home-body .career-page-hero .career-hero-visual .career-hero-img { margin: 0 auto; }
        .home-body .career-positions-section { padding: 44px clamp(16px, 3vw, 32px) 44px; }
        .home-body .career-positions-section .col-lg-4 { margin-top: 12px !important; }
        .home-body .career-positions-section .col-md-6:last-child:nth-child(odd) { margin: 0 auto; }
        .cta-wrap{padding: 0 6vw;}
        
    }

    @media (max-width: 767px) {
        .home-body .career-page-hero { padding: 75px 0 20px; }
        .home-body .career-page-hero .career-hero-content .career-page-title { font-size: clamp(1.5rem, 5vw, 2rem); }
        .home-body .career-page-hero .career-hero-content .career-page-subtitle { font-size: clamp(0.9rem, 2.5vw, 1rem); }
        .home-body .career-page-hero .career-hero-visual .career-hero-img { margin: 0 auto; }
        .home-body .career-why-section { padding: 36px clamp(14px, 4vw, 24px); }
        .home-body .career-why-section .career-why-header { margin-bottom: 24px; }

        .home-body .career-positions-section { padding: 36px clamp(14px, 4vw, 24px) 36px; }
        .home-body .career-positions-section .col-md-6 { flex: 0 0 100%; max-width: 100%; margin-top: 14px !important; }
        .home-body .career-positions-section .col-md-6:first-child { margin-top: 0; }
    }

    @media (min-width: 1400px) {
        .home-body .career-why-section .career-why-card .career-why-text .career-why-card-desc { max-width: 480px; }
    }
    /* ================================== Features page styles ================================== */
    .home-body .features-page-hero { position: relative; padding: clamp(80px, 10vw, 120px) 20px clamp(20px, 3vw, 30px) 20px; background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 50%, #EDE9FE 100%);}
    .home-body .features-page-hero .container { position: relative; z-index: 2; }
    .home-body .features-page-hero .features-hero-blob1 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%); bottom: -100px; left: -100px; border-radius: 50%; pointer-events: none; }
    .home-body .features-page-hero .features-hero-blob2 { position: absolute; width: 450px; height: 450px; background: radial-gradient(circle, rgba(147,51,234,0.12) 0%, transparent 70%); top: -100px; right: 10px; border-radius: 50%; pointer-events: none; }
    .home-body .features-page-hero .features-hero-content .features-page-title { font-family: var(--font-family); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: #000000; margin-bottom: 16px; }
    .home-body .features-page-hero .features-hero-content .features-page-subtitle { font-family: var(--font-family); font-size: clamp(0.95rem, 1.2vw + 0.3rem, 1.125rem); color: #000000; line-height: 1.4; margin-bottom: 28px; }
    .home-body .features-page-hero .features-hero-content .features-hero-btn { font-family: var(--font-family); display: inline-block; padding: 12px 28px; background: linear-gradient(90deg, #4F46E5 0%, #9333EA 100%); color: #ffffff; border-radius: 12px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: opacity 0.2s ease; }
    .home-body .features-page-hero .features-hero-content .features-hero-btn:hover { opacity: 0.9; }
    .home-body .features-page-hero .features-hero-visual .features-hero-img { width: 100%; max-width: 520px; object-fit: contain; display: block; margin-left: auto; }

    /* ===== POWERFUL TOOLS ===== */
    .home-body .features-tools-section { padding: 60px clamp(16px, 4vw, 60px); }
    .home-body .features-tools-section .features-tools-header { text-align: center; margin-bottom: 36px; }
    .home-body .features-tools-section .features-tools-header .features-tools-title { font-family: var(--font-family); font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: #000000; margin-bottom: 10px; }
    .home-body .features-tools-section .features-tools-header .features-tools-subtitle { font-family: var(--font-family); font-size: clamp(0.875rem, 1vw + 0.2rem, 1.125rem); color: #000000; }
    .home-body .features-tools-section .features-tool-card { display: flex; align-items: center; gap: 16px; background: #FBF9FD; border: 1px solid #e5e7eb; border-radius: 14px; padding: 24px 20px; height: 100%; transition: box-shadow 0.2s ease; box-shadow: 0px 4px 4px 0px #00000040; }
    .home-body .features-tools-section .features-tool-card:hover { box-shadow: 0 4px 20px rgba(79,70,229,0.1); }
    .home-body .features-tools-section .features-tool-card .features-tool-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .home-body .features-tools-section .features-tool-card .features-tool-icon img { width: 64px; height: 64px; object-fit: contain; }
    .home-body .features-tools-section .features-tool-card .features-tool-text .features-tool-card-title { font-family: var(--font-family); font-size: 1.25rem; font-weight: 600; color: #000000; margin-bottom: 6px; }
    .home-body .features-tools-section .features-tool-card .features-tool-text .features-tool-card-desc { font-family: var(--font-family); font-size: 1.125rem; color: #444444; line-height: 1.55; margin: 0; }

    /* ===== HOW IT WORKS ===== */
    .home-body .features-hiw-section { padding: 60px clamp(16px, 4vw, 60px) 60px; }
    .home-body .features-hiw-section .features-hiw-header { text-align: center; margin-bottom: 36px; }
    .home-body .features-hiw-section .features-hiw-header .features-hiw-title { font-family: var(--font-family); font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: #000000; margin-bottom: 10px; }
    .home-body .features-hiw-section .features-hiw-header .features-hiw-subtitle { font-family: var(--font-family); font-size: clamp(0.875rem, 1vw + 0.2rem, 1.0625rem); color: #000000; }
    .home-body .features-hiw-section .features-hiw-card { display: flex; flex-direction: column; gap: 8px; background: #FBF9FD; border: 1px solid #e5e7eb; border-radius: 14px; padding: 20px 24px; height: 100%; transition: box-shadow 0.2s ease; box-shadow: 6.64px 6.64px 9.96px 0px #A0AFF840; }
    .home-body .features-hiw-section .features-hiw-card:hover { box-shadow: none; }
    .home-body .features-hiw-section .features-hiw-avatar { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .home-body .features-hiw-section .features-hiw-avatar img { border-radius: 50%; height: 52px; width: 52px; object-fit: cover; }
    .home-body .features-hiw-section .features-hiw-card .features-hiw-card-title { font-family: var(--font-family); font-size: 1.25rem; font-weight: 600; color: #000000; margin: 0; }
    .home-body .features-hiw-section .features-hiw-card .features-hiw-card-desc { font-family: var(--font-family); font-size: 1.125rem; color: #333333; line-height: 1.55; margin: 0; flex: 1; }
    .home-body .features-hiw-section .features-hiw-card .features-hiw-btn { font-family: var(--font-family); display: block; text-align: center; padding: 10px 0; background: linear-gradient(90deg, #4F46E5 0%, #9333EA 100%); color: #ffffff; border-radius: 8px; font-size: 0.9375rem; font-weight: 500; text-decoration: none; transition: opacity 0.2s ease; margin-top: 4px; }
    .home-body .features-hiw-section .features-hiw-card .features-hiw-btn:hover { opacity: 0.9; }

    /* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .home-body .features-page-hero { padding: 90px 20px 10px 20px; }
    .home-body .features-page-hero .features-hero-content { text-align: center; padding-bottom: 32px; width: 100%; }
    .home-body .features-tools-section { padding: 44px clamp(16px, 3vw, 32px); }
    .home-body .features-hiw-section { padding: 44px clamp(16px, 3vw, 32px) 44px; }
    .cta-wrap { padding: 0 6vw; }
    .home-body .features-page-hero .features-hero-visual .features-hero-img { width: 86%;  object-fit: contain; display: block; margin: 0 auto;}
}

@media (max-width: 767px) {
    .home-body .features-page-hero .features-hero-content .features-page-title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .home-body .features-page-hero .features-hero-content .features-page-subtitle { font-size: clamp(0.9rem, 2.5vw, 1rem); }
    .home-body .features-tools-section { padding: 36px clamp(14px, 4vw, 24px); }
    .home-body .features-tools-section .features-tools-header { margin-bottom: 24px; }
    .home-body .features-tools-section .features-tool-card { flex-direction: column; text-align: center; align-items: center; padding: 18px 14px; }
    .home-body .features-tools-section .features-tool-card .features-tool-icon,
    .home-body .features-tools-section .features-tool-card .features-tool-icon img { width: 48px; height: 48px; }
    .home-body .features-tools-section .features-tool-card .features-tool-text .features-tool-card-title { font-size: 1.1rem; }
    .home-body .features-tools-section .features-tool-card .features-tool-text .features-tool-card-desc { font-size: 1rem; }
    .home-body .features-hiw-section { padding: 36px clamp(14px, 4vw, 24px) 36px; }
    .home-body .features-hiw-section .features-hiw-card { padding: 16px; }
    .home-body .features-hiw-section .features-hiw-card .features-hiw-card-desc { font-size: 1rem; }
    .home-body .cta-wrap .cta-box { padding-left: 20px; padding-right: 20px; }
    .home-body .features-page-hero .features-hero-visual .features-hero-img { width: 86%;  object-fit: contain; display: block; margin: 0 auto;}
}

/* ===============================  About Us Styles ======================================================= */
/* ===== HERO ===== */
.home-body .about-page-hero { position: relative; padding: clamp(80px, 10vw, 120px) 20px clamp(20px, 3vw, 30px) 20px; background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 50%, #EDE9FE 100%); overflow: hidden; }
.home-body .about-page-hero .container { position: relative; z-index: 2; }
.home-body .about-page-hero .about-hero-blob1 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%); bottom: -100px; left: -100px; border-radius: 50%; pointer-events: none; }
.home-body .about-page-hero .about-hero-blob2 { position: absolute; width: 450px; height: 450px; background: radial-gradient(circle, rgba(147,51,234,0.12) 0%, transparent 70%); top: -100px; right: 10px; border-radius: 50%; pointer-events: none; }
.home-body .about-page-hero .about-hero-content .about-page-title { font-family: var(--font-family); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: #000000; margin-bottom: 16px; }
.home-body .about-page-hero .about-hero-content .about-page-subtitle { font-family: var(--font-family); font-size: clamp(0.95rem, 1.2vw + 0.3rem, 1.125rem); color: #000000; line-height: 1.4; margin-bottom: 28px; }
.home-body .about-page-hero .about-hero-content .about-hero-btn { font-family: var(--font-family); display: inline-block; padding: 12px 28px; background: linear-gradient(90deg, #4F46E5 0%, #9333EA 100%); color: #ffffff; border-radius: 12px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: opacity 0.2s ease; }
.home-body .about-page-hero .about-hero-content .about-hero-btn:hover { opacity: 0.9; }
.home-body .about-page-hero .about-hero-visual .about-hero-img { width: 100%; object-fit: contain; display: block; margin-left: auto; }

/* ===== OUR STORY ===== */
.home-body .about-story-section { padding: 60px clamp(16px, 4vw, 60px); }
.home-body .about-story-section .about-story-header { text-align: center; margin-bottom: 36px; }
.home-body .about-story-section .about-story-header .about-story-title { font-family: var(--font-family); font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: #000000; margin-bottom: 10px; }
.home-body .about-story-section .about-story-header .about-story-subtitle { font-family: var(--font-family); font-size: clamp(0.875rem, 1vw + 0.2rem, 1.125rem); color: #000000; }
.home-body .about-story-section .about-story-card { background: #FBF9FD; border: 1px solid #e5e7eb; border-radius: 14px; padding: 32px; box-shadow: 0px 4px 4px 0px #00000040; }
.home-body .about-story-section .about-story-img-wrap .about-story-img { width: 100%; object-fit: contain; border-radius: 10px; }
.home-body .about-story-section .about-story-card-title { font-family: var(--font-family); font-size: 1.25rem; font-weight: 600; color: #000000; margin-bottom: 12px; }
.home-body .about-story-section .about-story-card-desc { font-family: var(--font-family); font-size: 1.125rem; color: #444444; line-height: 1.55; margin: 0; }

/* ===== WHAT IT DOES ===== */
.home-body .about-does-section { padding: 0 clamp(16px, 4vw, 60px) 60px; }
.home-body .about-does-section .about-does-title { font-family: var(--font-family); font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: #000000; margin-bottom: 16px; }
.home-body .about-does-section .about-does-desc { font-family: var(--font-family); font-size: 1.125rem; color: #444444; line-height: 1.55; margin: 0; }
.home-body .about-does-section .about-does-card { display: flex; align-items: center; gap: 16px; background: #FBF9FD; border: 1px solid #e5e7eb; border-radius: 14px; padding: 20px; box-shadow: 0px 4px 4px 0px #00000040; transition: box-shadow 0.2s ease; }
.home-body .about-does-section .about-does-card:hover { box-shadow: 0 4px 20px rgba(79,70,229,0.1); }
.home-body .about-does-section .about-does-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.home-body .about-does-section .about-does-icon img { width: 64px; height: 64px; object-fit: contain; }
.home-body .about-does-section .about-does-card-title { font-family: var(--font-family); font-size: 1.25rem; font-weight: 600; color: #000000; margin-bottom: 4px; }
.home-body .about-does-section .about-does-card-desc { font-family: var(--font-family); font-size: 1rem; color: #444444; margin: 0; }

/* ===== MISSION & VALUES ===== */
.home-body .about-mission-section { padding: 0 clamp(16px, 4vw, 60px) 60px; }
.home-body .about-mission-section .about-mission-header { text-align: center; margin-bottom: 36px; }
.home-body .about-mission-section .about-mission-header .about-mission-title { font-family: var(--font-family); font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: #000000; margin-bottom: 10px; }
.home-body .about-mission-section .about-mission-header .about-mission-subtitle { font-family: var(--font-family); font-size: clamp(0.875rem, 1vw + 0.2rem, 1.125rem); color: #000000; }
.home-body .about-mission-section .about-mission-card { display: flex; flex-direction: column; gap: 10px; background: #FBF9FD; border: 1px solid #e5e7eb; border-radius: 14px; padding: 24px 20px; height: 100%; box-shadow: 6.64px 6.64px 9.96px 0px #A0AFF840; transition: box-shadow 0.2s ease; }
.home-body .about-mission-section .about-mission-card:hover { box-shadow: none; }
.home-body .about-mission-section .about-mission-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.home-body .about-mission-section .about-mission-icon img { width: 64px; height: 64px; object-fit: contain; }
.home-body .about-mission-section .about-mission-card-title { font-family: var(--font-family); font-size: 1.25rem; font-weight: 600; color: #000000; margin: 0; }
.home-body .about-mission-section .about-mission-card-desc { font-family: var(--font-family); font-size: 1.125rem; color: #444444; line-height: 1.55; margin: 0; }

/* ===== WHO IT IS FOR ===== */
.home-body .about-who-section { padding: 0 clamp(16px, 4vw, 60px) 60px; }
.home-body .about-who-section .about-who-header { text-align: center; margin-bottom: 36px; }
.home-body .about-who-section .about-who-header .about-who-title { font-family: var(--font-family); font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: #000000; margin-bottom: 10px; }
.home-body .about-who-section .about-who-header .about-who-subtitle { font-family: var(--font-family); font-size: clamp(0.875rem, 1vw + 0.2rem, 1.125rem); color: #000000; }
.home-body .about-who-section .about-who-card { display: flex; align-items: center; gap: 16px; background: #FBF9FD; border: 1px solid #e5e7eb; border-radius: 14px; padding: 24px 20px; height: 100%; box-shadow: 0px 4px 4px 0px #00000040; transition: box-shadow 0.2s ease; }
.home-body .about-who-section .about-who-card:hover { box-shadow: 0 4px 20px rgba(79,70,229,0.1); }
.home-body .about-who-section .about-who-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.home-body .about-who-section .about-who-icon img { width: 64px; height: 64px; object-fit: contain; }
.home-body .about-who-section .about-who-card-title { font-family: var(--font-family); font-size: 1.25rem; font-weight: 600; color: #000000; margin-bottom: 6px; }
.home-body .about-who-section .about-who-card-desc { font-family: var(--font-family); font-size: 1.125rem; color: #444444; line-height: 1.55; margin: 0; }

/* ===== WHY CHOOSE ===== */
.home-body .about-why-section { padding: 0 clamp(16px, 4vw, 60px) 60px; }
.home-body .about-why-section .about-why-header { text-align: center; margin-bottom: 36px; }
.home-body .about-why-section .about-why-header .about-why-title { font-family: var(--font-family); font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: #000000; margin-bottom: 10px; }
.home-body .about-why-section .about-why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.home-body .about-why-section .about-why-list li { font-family: var(--font-family); font-size: 1.125rem; color: #333333; line-height: 1.55; padding-left: 24px; position: relative; }
.home-body .about-why-section .about-why-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, #4F46E5, #9333EA); }
.home-body .about-why-section .about-why-img-wrap .about-why-img { width: 100%; object-fit: contain; border-radius: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .home-body .about-page-hero .about-hero-content { text-align: center; padding-bottom: 32px; width: 100%; }
    .home-body .about-page-hero { padding: 90px 20px 10px 20px; }
    .home-body .about-story-section { padding: 44px clamp(16px, 3vw, 32px); }
    .home-body .about-does-section { padding: 0 clamp(16px, 3vw, 32px) 44px; }
    .home-body .about-mission-section { padding: 0 clamp(16px, 3vw, 32px) 44px; }
    .home-body .about-who-section { padding: 0 clamp(16px, 3vw, 32px) 44px; }
    .home-body .about-why-section { padding: 0 clamp(16px, 3vw, 32px) 44px; }
    .cta-wrap { padding: 0 6vw; }
   .home-body .about-does-section .col-lg-7 { padding-left: 0 !important; padding-right: 0 !important; }
   .home-body .about-page-hero .about-hero-visual .about-hero-img { width: 80%; margin: 0 auto; }
}

@media (max-width: 767px) {
    .home-body .about-page-hero { padding: 90px 20px 10px 20px; }
    .home-body .about-page-hero .about-hero-content { padding-bottom: 24px; }
    .home-body .about-page-hero .about-hero-content .about-page-title { font-size: clamp(1.35rem, 6vw, 1.75rem); }
    .home-body .about-page-hero .about-hero-content .about-page-subtitle { font-size: clamp(0.875rem, 3vw, 0.975rem); }
    .home-body .about-page-hero .about-hero-content .about-hero-btn { padding: 10px 22px; font-size: 0.875rem; }
    .home-body .about-story-section { padding: 30px 14px; }
    .home-body .about-story-section .about-story-card { padding: 20px 14px; }
    .home-body .about-does-section { padding: 0 14px 30px; }
    .home-body .about-does-section .about-does-card { flex-direction: column; text-align: center; align-items: center; }
    .home-body .about-mission-section { padding: 0 14px 30px; }
    .home-body .about-mission-section .about-mission-card { padding: 18px 14px; }
    .home-body .about-who-section { padding: 0 14px 30px; }
    .home-body .about-who-section .about-who-card { flex-direction: column; text-align: center; align-items: center; }
    .home-body .about-why-section { padding: 0 14px 30px; }
    .home-body .about-why-section .about-why-list li { font-size: 1rem; }
    .home-body .cta-wrap .cta-box { padding-left: 20px; padding-right: 20px; }
    .home-body .about-does-section .col-lg-7 { padding-left: 0 !important; padding-right: 0 !important; }
    .home-body .about-page-hero .about-hero-visual .about-hero-img { width: 65%; }
}

@media (max-width: 576px) {
    .home-body .about-page-hero .about-hero-content .about-page-title { font-size: 1.25rem; }
    .home-body .about-page-hero .about-hero-content .about-page-subtitle { font-size: 0.85rem; }
    .home-body .about-page-hero .about-hero-content .about-hero-btn { padding: 9px 18px; font-size: 0.8125rem; }
    .home-body .about-story-section .about-story-card-title { font-size: 1rem; }
    .home-body .about-story-section .about-story-card-desc { font-size: 0.9rem; }
    .home-body .about-does-section .about-does-card-title { font-size: 1rem; }
    .home-body .about-mission-section .about-mission-card-title { font-size: 1rem; }
    .home-body .about-mission-section .about-mission-card-desc { font-size: 0.9rem; }
    .home-body .about-who-section .about-who-card-title { font-size: 1rem; }
    .home-body .about-who-section .about-who-card-desc { font-size: 0.9rem; }
    .home-body .about-why-section .about-why-list li { font-size: 0.9rem; }
    .home-body .cta-wrap .cta-box { padding-left: 14px; padding-right: 14px; }
}
