@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap");

:root {
    --primary: #2a3271;
    --primary-dark: #1e2659;
    --primary-light: #eeeff8;
    --secondary: #1a1a2e;
    --dark: #111827;
    --light: #ffffff;
    --body-bg: #ffffff;
    --section-alt: #f1f5f9;
    --text: #1e293b;
    --text-muted: #64748b;
    --gray: #94a3b8;
    --border: #e2e8f0;
    --card-bg: #ffffff;
    --radius: 18px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 16px 48px rgba(42, 50, 113, 0.18);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
    --transition: all 0.4s ease;
    --container: 1320px;
    --heading-size: clamp(1.6rem, 2.8vw, 2.4rem);
    --text-size: 16px;
    --section-py: 50px;
    --section-py-sm: 60px;
    --font-heading: "Rajdhani", sans-serif;
    --font-body: "Poppins", sans-serif;
    --badge-radius: 50px;
    --card-hover-up: -8px;
    --icon-size: 56px;
    --section-label-size: 0.8rem;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: var(--text-size);
}

body {
    font-family: var(--font-body);
    background: var(--body-bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════
   NAVBAR & HEADER
═══════════════════════════════════════════ */
.jk-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 75px;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo img {
    height: 42px;
    width: auto;
    transition: transform 0.3s ease;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

/* ═══════════════════════════════════════════
   MOBILE MENU (SIDE DRAWER)
═══════════════════════════════════════════ */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    margin: -12px;
    z-index: 1001;
}

.menu-toggle .line {
    width: 26px;
    height: 2.5px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Dark Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Side Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    min-width: 280px;
    max-width: 85%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: #fff;
    z-index: 1100;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.drawer-logo img {
    height: 40px;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
    padding: 10px;
    margin: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--section-alt);
    transition: all 0.3s ease;
}

.drawer-link.active,
.drawer-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
}

.drawer-cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}

.drawer-contact {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.drawer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.drawer-copyright {
    font-size: 0.7rem;
    color: var(--gray);
    text-align: center;
    margin-top: 15px;
}

/* Header Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-quote-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 50, 113, 0.3);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: 8px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scaleY(1);
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
}
.nav-link.active {
    color: #fff !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Get Quote Button */
.nav-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, #2a3271 0%, #1e2659 100%);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 50, 113, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-quote-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e2659 0%, #2a3271 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-quote-btn:hover::before {
    left: 0;
}

.nav-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 50, 113, 0.5);
}

.nav-quote-btn iconify-icon {
    font-size: 1.15rem;
}

/* Mobile Drawer Removed */

/* ═══════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════ */
.jk-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--dark);
    touch-action: pan-y;
}

/* ── Track & Slides ── */
.hs-track {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    -webkit-touch-callout: none;
}

.hs-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(40px) scale(0.96);
    z-index: 0;
    pointer-events: none;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hs-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 1;
    pointer-events: all;
}

/* ── Staggered content entrance ── */
.hs-slide .hs-badge,
.hs-slide .hs-title,
.hs-slide .hs-desc,
.hs-slide .hs-actions {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hs-slide.active .hs-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.hs-slide.active .hs-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hs-slide.active .hs-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.hs-slide.active .hs-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* ── Background image ── */
.hs-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.12);
    transition: transform 7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hs-slide.active .hs-bg {
    transform: scale(1);
}

.hs-bg-fallback {
    background: linear-gradient(135deg, #0d0f1a 0%, #151d4a 40%, #1e2659 100%);
}

/* ── Overlays ── */
.hs-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 20, 12, 0.88) 0%,
        rgba(10, 20, 12, 0.267) 55%,
        rgba(10, 20, 12, 0) 100%
    );
    z-index: 1;
}

.hs-overlay-green {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 50, 113, 0.12) 0%,
        transparent 60%
    );
    z-index: 2;
}

.hs-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(42, 50, 113, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 50, 113, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* ── Orbs ── */
.hs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 2;
}

.hs-orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(
        circle,
        rgba(42, 50, 113, 0.22) 0%,
        transparent 70%
    );
    top: -120px;
    right: -80px;
    animation: hsOrbFloat 9s ease-in-out infinite;
}

.hs-orb-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(
        circle,
        rgba(30, 38, 89, 0.15) 0%,
        transparent 70%
    );
    bottom: 80px;
    left: 8%;
    animation: hsOrbFloat 12s ease-in-out infinite reverse;
}

@keyframes hsOrbFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-28px) scale(1.06);
    }
}

/* ── Content ── */
.hs-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0 6vw;
}

.hs-content-inner {
    max-width: 600px;
}

/* Badge */
.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(42, 50, 113, 0.13);
    border: 1px solid rgba(42, 50, 113, 0.32);
    color: white;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--badge-radius);
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.hs-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: hsDotPulse 2s ease-in-out infinite;
}

@keyframes hsDotPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.6);
    }
}

/* Title */
.hs-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4.2vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Desc */
.hs-desc {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.2vw, 0.98rem);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 480px;
}

/* Buttons */
.hs-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hs-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 26px;
    border-radius: var(--badge-radius);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.hs-btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(42, 50, 113, 0.32);
}

.hs-btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(42, 50, 113, 0.48);
}

.hs-btn-primary svg {
    transition: transform 0.3s ease;
}
.hs-btn-primary:hover svg {
    transform: translateX(4px);
}

/* ── Floating Stats Bridge ── */
.hs-stats-bridge {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    margin-top: -52px; /* overlap hero bottom */
    margin-bottom: 0;
    padding: 0 24px;
    pointer-events: none;
}

.hs-stats-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    width: 100%;
    max-width: 780px;
    pointer-events: all;
    border: 1px solid rgba(42, 50, 113, 0.12);
}

.hs-stats-card-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 22px;
    transition: background 0.3s ease;
    cursor: default;
    position: relative;
}

.hs-stats-card-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: var(--border);
}

.hs-stats-card-item:hover {
    background: var(--primary-light);
}

.hs-stats-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.hs-stats-card-item:hover .hs-stats-card-icon {
    background: var(--primary);
    color: #fff;
}

.hs-stats-card-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hs-stats-card-num {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.hs-stats-card-num sup {
    font-size: 0.75em;
    color: var(--primary);
    font-weight: 700;
    vertical-align: super;
}

.hs-stats-card-lbl {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* ── Arrows ── */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(42, 50, 113, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.hs-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(42, 50, 113, 0.45);
}

.hs-prev {
    left: 28px;
}
.hs-next {
    right: 28px;
}

/* ── Dots ── */
.hs-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hs-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(42, 50, 113, 0.6);
}

.hs-dot:hover:not(.active) {
    background: rgba(42, 50, 113, 0.5);
    border-color: rgba(42, 50, 113, 0.5);
}

/* ── Progress bar ── */
.hs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

/* ── Scroll indicator ── */
.hs-scroll-hint {
    position: absolute;
    bottom: 80px;
    left: 6vw;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hs-scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.hs-scroll-wheel {
    width: 2px;
    height: 6px;
    background: var(--primary);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: hsScrollWheel 1.6s ease-in-out infinite;
}

@keyframes hsScrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    60% {
        transform: translate(-50%, 12px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════
   SECTION HEADING SYSTEM (Unified)
═══════════════════════════════════════════ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--section-label-size);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: var(--badge-radius);
    margin-bottom: 16px;
}

.section-label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--heading-size);
    font-weight: 700;
    line-height: 1.18;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.75;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head .section-desc {
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.jk-about {
    padding: var(--section-py) 0;
    background: var(--light);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* ── Image side ── */
.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
}

.about-img-accent {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 90px;
    height: 90px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    opacity: 0.25;
    z-index: -1;
}

.about-img-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(42, 50, 113, 0.38);
    min-width: 100px;
}

.about-img-badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-img-badge-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    opacity: 0.9;
    line-height: 1.4;
    margin-top: 3px;
    display: block;
}

/* ── Content side ── */
.about-content {
    padding-right: 8px;
}

.about-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-top: 10px;
    margin-bottom: 0;
    max-width: 480px;
}

/* ── Feature list ── */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--body-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(42, 50, 113, 0.1);
}

.about-feature-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.about-feature:hover .about-feature-icon {
    background: var(--primary);
    color: #fff;
}

.about-feature-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════ */
.jk-products {
    padding: var(--section-py) 0;
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card is an <a> tag — reset link styles */
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(42, 50, 113, 0.25);
}

/* Image wrap */
.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
    background: var(--section-alt);
    flex-shrink: 0;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

/* No-image placeholder */
.product-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #eeeff8 100%);
    color: var(--gray);
}

.product-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17, 24, 39, 0.45) 0%,
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-img-overlay {
    opacity: 1;
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--badge-radius);
    z-index: 1;
}

/* Body */
.product-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin: 0;
}

.product-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 4px;
    transition: gap 0.3s ease;
}

.product-card:hover .product-link {
    gap: 10px;
}

.product-link svg {
    transition: transform 0.3s ease;
}
.product-card:hover .product-link svg {
    transform: translateX(3px);
}

/* CTA */
.products-cta {
    text-align: center;
    margin-top: 44px;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--badge-radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border-color: white;
    transform: translateY(-2px);
}

.btn svg {
    transition: transform 0.3s ease;
}
.btn:hover svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.jk-testimonials {
    padding: var(--section-py) 0;
    background: var(--light);
}

/* Wrapper: arrows + viewport */
.testi-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    /* Extra vertical padding so hovered cards aren't clipped */
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: -10px;
    margin-bottom: -10px;
}

/* Viewport clips the track horizontally only */
.testi-viewport {
    flex: 1;
    overflow: hidden;
    /* Allow vertical overflow so hover lift is visible */
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: -10px;
    margin-bottom: -10px;
}

/* Track: flex row of cards */
.testi-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    /* Vertical padding so box-shadow isn't clipped */
    padding-top: 10px;
    padding-bottom: 10px;
}

/* ── Card ── */
.testi-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
    border-radius: var(--radius);
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    /* Base look: white */
    background: #fff;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-card);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

/* Green fill layer — sits behind content, fades in/out */
.testi-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #2a3271;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.7s ease;
    z-index: 0;
    pointer-events: none;
}

/* All direct children sit above the fill layer */
.testi-card > * {
    position: relative;
    z-index: 1;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(42, 50, 113, 0.3);
}

/* Green state — JS adds this class */
.testi-card--green {
    border-color: #2a3271;
}

.testi-card--green::after {
    opacity: 1;
}

.testi-card--green:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(42, 50, 113, 0.45);
    border-color: #1e2659;
}

/* Quote icon */
.testi-quote {
    color: #2a3271;
    line-height: 1;
    opacity: 0.7;
    transition:
        color 0.7s ease,
        opacity 0.7s ease;
}

.testi-card--green .testi-quote {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

/* Stars */
.testi-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    transition: color 0.7s ease;
}

.testi-card--green .testi-stars {
    color: #ffe066;
}

/* Text */
.testi-text {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    transition: color 0.7s ease;
}

.testi-card--green .testi-text {
    color: rgba(255, 255, 255, 0.88);
}

/* Author */
.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
    transition: border-color 0.7s ease;
}

.testi-card--green .testi-author {
    border-top-color: rgba(255, 255, 255, 0.25);
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a3271, #1e2659);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.7s ease;
}

.testi-card--green .testi-avatar {
    background: rgba(255, 255, 255, 0.25);
}

.testi-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 0.82rem;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.7s ease;
}

.testi-card--green .testi-name {
    color: #fff;
}

.testi-role {
    font-size: 0.72rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.7s ease;
}

.testi-card--green .testi-role {
    color: rgba(255, 255, 255, 0.72);
}

/* ── Arrow buttons ── */
.testi-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    z-index: 2;
}

.testi-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(42, 50, 113, 0.35);
}

/* ── Dots ── */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testi-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(42, 50, 113, 0.5);
}

.testi-dot:hover:not(.active) {
    background: rgba(42, 50, 113, 0.4);
}

/* ═══════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════ */
.jk-why {
    padding: var(--section-py) 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

/* Background image with fixed attachment */
.jk-why::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/bg.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

/* Light overlay for better readability */
.jk-why::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f9fff9 100%);
    opacity: 0.95;
    pointer-events: none;
    z-index: 0;
}

.jk-why .container {
    position: relative;
    z-index: 2;
}

/* ── Two-column layout ── */
.why-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 0;
}

/* ── LEFT visual panel ── */
.why-visual {
    position: sticky;
    top: 100px;
}

.why-visual-inner {
    background: linear-gradient(145deg, var(--primary-light) 0%, #fff 60%);
    border: 1px solid rgba(42, 50, 113, 0.18);
    border-radius: 24px;
    padding: 40px 32px 36px;
    position: relative;
    overflow: hidden;
}

.why-visual-inner::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(
        circle,
        rgba(42, 50, 113, 0.12) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.why-panel-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.why-panel-title span {
    color: var(--primary);
}

.why-panel-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Panel stats list */
.why-panel-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.why-panel-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.why-panel-stat:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateX(4px);
}

.why-panel-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    border: 1px solid rgba(42, 50, 113, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.why-panel-stat:hover .why-panel-stat-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.why-panel-stat-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1.1;
}

.why-panel-stat-lbl {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    margin-top: 1px;
}

/* ── RIGHT feature rows ── */
.why-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-row {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 20px;
    padding: 20px 0;
    position: relative;
    /* background: #ffffff65; */
    border-radius: 14px;
    transition: all 0.3s ease;
}

.why-row:hover {
    /* background: #f8faf9; */
    box-shadow: 0 4px 16px rgba(42, 50, 113, 0.1);
}

/* Scroll-reveal animation */
.why-row-anim {
    opacity: 0;
    transform: translateX(32px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.why-row-anim.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Vertical connector line */
.why-row-line {
    position: absolute;
    left: 25px;
    top: 72px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(42, 50, 113, 0.2) 0%,
        transparent 100%
    );
}

.why-row:last-child .why-row-line {
    display: none;
}

/* Icon box */
.why-row-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-light);
    border: 1.5px solid rgba(42, 50, 113, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    margin-top: 2px;
}

.why-row-icon iconify-icon {
    color: var(--primary);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.why-row:hover .why-row-icon {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(42, 50, 113, 0.3);
}

.why-row:hover .why-row-icon iconify-icon {
    color: #fff;
}

/* Body */
.why-row-body {
    padding-top: 0;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
}

.why-row-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.why-row-num {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    border: 1px solid rgba(42, 50, 113, 0.2);
}

/* Title with reveal underline on hover */
.why-row-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.why-row-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.why-row:hover .why-row-title::after {
    width: 100%;
}

.why-row-text {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}

/* ── Tractor sticker — decorative bg element ── */
.why-tractor-sticker {
    position: absolute;
    bottom: -10px;
    right: -20px;
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.07;
    color: var(--primary);
    transform: scaleX(-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-tractor-sticker iconify-icon {
    width: 300px;
    height: 300px;
    color: var(--primary);
    display: block;
}

/* ── Small image sticker in top right ── */
.why-image-sticker {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: auto;
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
    transform: rotate(-5deg);
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.15));
}

.why-image-sticker img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.jk-cta {
    padding: var(--section-py) 0;
    background: var(--body-bg);
}

.cta-card {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(
        130deg,
        var(--primary-dark) 0%,
        var(--primary) 100%
    );
    border-radius: 24px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(42, 50, 113, 0.3);
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: inherit;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.cta-orb-1 {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    top: -80px;
    right: -60px;
}

.cta-orb-2 {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.06);
    bottom: -50px;
    left: 10%;
}

.cta-body {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.cta-title span {
    color: rgba(255, 255, 255, 0.75);
}

.cta-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 420px;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.cta-call-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    padding: 10px 20px 10px 10px;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.cta-call-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.cta-call-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-call-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
    margin-bottom: 3px;
}

.cta-call-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

/* ═══════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════ */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-whatsapp::before {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid #25d366;
    border-radius: 50%;
    opacity: 0;
    animation: waPulse 2s linear infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.float-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.float-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 105px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(42, 50, 113, 0.3);
}

@media (max-width: 768px) {
    .float-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 85px;
    }
}
