/* ==========================================
   JKWI NAVIGATION
   Compact • Responsive • Premium
========================================== */
.jkwi-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    z-index: 9999;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition:
        height 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
}
/* ==========================================
   NAV CONTAINER
========================================== */
.nav-container {
    width: min(1200px, 92%);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}
/* ==========================================
   JKWI BRAND
========================================== */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
    transition:
        width 0.35s ease,
        height 0.35s ease;
}
.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    white-space: nowrap;
}
.nav-brand strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.2px;
    transition: color 0.35s ease;
}
.nav-brand small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 500;
    margin-top: 3px;
    transition: color 0.35s ease;
}
/* ==========================================
   MAIN NAVIGATION
========================================== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-left: auto;
    margin-right: 28px;
}
.nav-menu > a,
.nav-dropdown > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}
.nav-menu > a:hover,
.nav-dropdown > a:hover {
    opacity: 0.7;
}
/* ==========================================
   DIVISIONS DROPDOWN
========================================== */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a span:last-child {
    font-size: 12px;
    transition:
        transform 0.3s ease;
}
.nav-dropdown:hover > a span:last-child {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    min-width: 210px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform:
        translate(-50%, -8px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform:
        translate(-50%, 0);
}
.dropdown-menu a {
    display: block;
    padding: 9px 12px;
    color: #222222;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}
.dropdown-menu a:hover {
    background: #f2f8fb;
    color: #009FE3;
}
/* ==========================================
   DESKTOP ACCOUNT
========================================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}
.nav-login {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}
.nav-login:hover {
    opacity: 0.7;
}
.nav-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 15px;
    background: #009FE3;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}
.nav-account:hover {
    background: #008dcc;
    transform: translateY(-1px);
}
/* ==========================================
   SCROLLED NAVIGATION
========================================== */
.jkwi-nav.scrolled {
    height: 66px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color:
        rgba(0, 0, 0, 0.06);
    box-shadow:
        0 5px 22px rgba(0, 0, 0, 0.07);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.jkwi-nav.scrolled .nav-logo img {
    width: 34px;
    height: 34px;
}
.jkwi-nav.scrolled .nav-brand strong {
    color: #161b20;
}
.jkwi-nav.scrolled .nav-brand small {
    color: #68727c;
}
.jkwi-nav.scrolled .nav-menu > a,
.jkwi-nav.scrolled .nav-dropdown > a {
    color: #1b1f23;
}
.jkwi-nav.scrolled .nav-login {
    color: #1b1f23;
}
/* ==========================================
   MOBILE ACCOUNT ICON
========================================== */
.mobile-account {
    display: none;
    position: relative;
    flex-shrink: 0;
}
.account-toggle {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.account-toggle svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        stroke 0.3s ease,
        transform 0.25s ease;
}
.account-toggle:hover svg {
    transform: scale(1.06);
}
.jkwi-nav.scrolled .account-toggle svg {
    stroke: #1b1f23;
}
/* ==========================================
   MOBILE ACCOUNT DROPDOWN
========================================== */
.account-menu {
    position: absolute;
    top: 46px;
    right: 0;
    width: 215px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.98);
    border:
        1px solid rgba(0, 0, 0, 0.06);
    border-radius: 9px;
    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(-7px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.mobile-account.active .account-menu {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
}
/* ==========================================
   ACCOUNT HEADER
========================================== */
.account-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 7px 11px;
    margin-bottom: 4px;
    border-bottom:
        1px solid #eeeeee;
}
.account-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef8fd;
}
.account-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #009FE3;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.account-title strong {
    display: block;
    color: #171b1f;
    font-size: 13px;
    font-weight: 700;
}
.account-title small {
    display: block;
    margin-top: 2px;
    color: #7a838b;
    font-size: 10px;
    font-weight: 400;
}
/* ==========================================
   ACCOUNT LINKS
========================================== */
.account-menu > a {
    display: block;
    padding: 10px 9px;
    color: #252a2f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}
.account-menu > a:hover {
    background: #f2f8fb;
    color: #009FE3;
}
/* ==========================================
   MOBILE HAMBURGER
========================================== */
.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    position: relative;
    z-index: 10002;
}
.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background-color 0.3s ease;
}
.jkwi-nav.scrolled .nav-toggle span {
    background: #1b1f23;
}
/* ==========================================
   HAMBURGER ACTIVE
========================================== */
.nav-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}
/* ==========================================
   TABLET
========================================== */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 16px;
        margin-right: 18px;
    }
    .nav-menu > a,
    .nav-dropdown > a {
        font-size: 12px;
    }
    .nav-account {
        padding: 0 12px;
    }
}
/* ==========================================
   MOBILE — 50/50 SIDE DRAWER
========================================== */
@media (max-width: 850px) {
    .jkwi-nav {
        height: 68px;
    }
    .nav-container {
        width: 90%;
    }
    /* Hide desktop account buttons */
    .nav-actions {
        display: none;
    }
    /* ======================================
       MOBILE PROFILE
    ====================================== */
    .mobile-account {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 2px;
        position: relative;
        z-index: 10003;
    }
    /* ======================================
       HAMBURGER
    ====================================== */
    .nav-toggle {
        display: flex;
        z-index: 10003;
    }
    /* ======================================
       DARK BACKDROP
    ====================================== */
    .jkwi-nav::after {
        content: "";
        position: fixed;
        inset: 0;
        background:
            rgba(0, 0, 0, 0.42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 9998;
        transition:
            opacity 0.4s ease,
            visibility 0.4s ease;
    }
    .jkwi-nav:has(.nav-menu.active)::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    /* ======================================
       50/50 SIDE MENU
    ====================================== */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 50%;
        height: 100vh;
        margin: 0;
        padding:
            95px
            28px
            30px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        box-shadow:
            -12px 0 35px
            rgba(0, 0, 0, 0.16);
        overflow-y: auto;
        z-index: 10000;
        transform:
            translateX(100%);
        visibility: hidden;
        transition:
            transform 0.4s
            cubic-bezier(
                0.77,
                0,
                0.175,
                1
            ),
            visibility 0.4s ease;
    }
    /* OPEN */
    .nav-menu.active {
        display: flex;
        transform:
            translateX(0);
        visibility: visible;
    }
    /* ======================================
       SIDE MENU TITLE
    ====================================== */
    .nav-menu::before {
        content: "JKWI MENU";
        position: absolute;
        top: 30px;
        left: 28px;
        color: #1b1f23;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }
    /* ======================================
       SIDE MENU LINKS
    ====================================== */
    .nav-menu > a,
    .nav-menu .nav-dropdown > a {
        width: 100%;
        padding: 15px 0;
        color: #1b1f23;
        font-size: 14px;
        font-weight: 500;
        border-bottom:
            1px solid
            rgba(0, 0, 0, 0.06);
        transition:
            color 0.2s ease,
            padding-left 0.2s ease;
    }
    .nav-menu > a:hover,
    .nav-menu .nav-dropdown > a:hover {
        color: #009FE3;
        padding-left: 5px;
        opacity: 1;
    }
    /* ======================================
       DIVISIONS
    ====================================== */
    .nav-menu .nav-dropdown {
        width: 100%;
    }
    .nav-menu .nav-dropdown > a {
        justify-content: space-between;
    }
    /* ======================================
       MOBILE DIVISIONS DROPDOWN
    ====================================== */
    .nav-menu .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        display: none;
        padding: 4px 0 8px;
        background: #f7fafc;
        border: 0;
        border-radius: 6px;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    .nav-menu .nav-dropdown:hover .dropdown-menu {
        display: none;
    }
    .nav-menu .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    .nav-menu .dropdown-menu a {
        padding:
            9px
            12px;
        color: #68727c;
        font-size: 12px;
    }
    .nav-menu .dropdown-menu a:hover {
        background: #eef8fd;
        color: #009FE3;
    }
    /* ======================================
       MOBILE BRAND
    ====================================== */
    .nav-logo {
        gap: 8px;
    }
    .nav-logo img {
        width: 34px;
        height: 34px;
    }
    .nav-brand strong {
        font-size: 13px;
    }
    .nav-brand small {
        font-size: 9px;
    }
    /* ======================================
       MOBILE SCROLLED
    ====================================== */
    .jkwi-nav.scrolled {
        height: 62px;
    }
    .jkwi-nav.scrolled .nav-logo img {
        width: 32px;
        height: 32px;
    }
}
/* ==========================================
   SMALL PHONES
========================================== */
@media (max-width: 480px) {
    .nav-container {
        width: 92%;
    }
    .nav-logo {
        gap: 7px;
    }
    .nav-logo img {
        width: 32px;
        height: 32px;
    }
    .nav-brand strong {
        font-size: 12px;
    }
    .nav-brand small {
        font-size: 8px;
    }
    .account-toggle,
    .nav-toggle {
        width: 34px;
        height: 34px;
    }
    .account-toggle svg {
        width: 20px;
        height: 20px;
    }
    .nav-toggle span {
        width: 19px;
    }
    .account-menu {
        width: 205px;
        top: 44px;
    }
    /* ======================================
       50/50 DRAWER — SMALL PHONE
    ====================================== */
    .nav-menu {
        width: 50%;
        padding:
            90px
            20px
            25px;
    }
    .nav-menu::before {
        left: 20px;
    }
    .nav-menu > a,
    .nav-menu .nav-dropdown > a {
        font-size: 13px;
        padding: 13px 0;
    }
    .nav-menu .dropdown-menu a {
        font-size: 11px;
        padding:
            8px
            9px;
    }
}
/* ==========================================
   VERY SMALL PHONES
========================================== */
@media (max-width: 360px) {
    .nav-menu {
        width: 50%;
        padding-left: 16px;
        padding-right: 16px;
    }
    .nav-menu::before {
        left: 16px;
    }
    .nav-brand strong {
        font-size: 11px;
    }
    .nav-brand small {
        font-size: 8px;
    }
    .nav-logo img {
        width: 30px;
        height: 30px;
    }
    .account-toggle,
    .nav-toggle {
        width: 32px;
        height: 32px;
    }
}
/* ==========================================
   ACCESSIBILITY
========================================== */
@media (prefers-reduced-motion: reduce) {
    .jkwi-nav,
    .nav-logo img,
    .nav-brand strong,
    .nav-brand small,
    .nav-menu,
    .dropdown-menu,
    .account-menu,
    .account-toggle svg,
    .nav-toggle span {
        transition: none !important;
    }
}

/*==================================================
SECTION 02 - HERO
==================================================*/

.hero{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        url("../images/heroo.jpeg") center center/cover no-repeat;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(0,159,227,.12), transparent 35%),
        radial-gradient(circle at bottom left, rgba(0,159,227,.08), transparent 45%);
    z-index: 1;
}

.hero-container{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 30px;
    text-align: center;
}

.hero-logo img{
    width: 220px;
    margin-bottom: 30px;
    animation: floatLogo 5s ease-in-out infinite;
}

.hero-subtitle{
    display: inline-block;
    color: lab(1.92% 0 0);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1{
    font-size: 72px;
    font-weight: 800;
    color: #009FE3;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero p{
    max-width: 760px;
    margin: auto;
    font-size: 21px;
    line-height: 1.8;
    color: #4B5563;
}

.hero-divider{
    width: 120px;
    height: 5px;
    background: #009FE3;
    margin: 45px auto;
    border-radius: 50px;
}

.scroll-indicator{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-indicator span{
    display: block;
    font-size: 14px;
    color: #1E293B;
    margin-bottom: 12px;
    font-weight: 500;
}

.mouse{
    width: 34px;
    height: 56px;
    border: 2px solid #009FE3;
    border-radius: 20px;
    margin: auto;
    position: relative;
}

.wheel{
    width: 6px;
    height: 12px;
    background: #009FE3;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes floatLogo{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-12px);
    }
}

@keyframes scrollWheel{
    0%{
        opacity: 1;
        transform: translate(-50%,0);
    }
    100%{
        opacity: 0;
        transform: translate(-50%,18px);
    }
}

@media (max-width:768px){

.hero h1{
    font-size: 44px;
}

.hero p{
    font-size: 17px;
}

.hero-logo img{
    width: 160px;
}

.hero-subtitle{
    font-size: 13px;
}

}
/*==================================================
SECTION 02 - HERO ANIMATIONS
==================================================*/

/* Hero Content */

.hero-content{
    animation:heroFade 1.2s ease;
}

.hero-logo{
    animation:logoZoom 1.5s ease;
}

/* Title */

.hero h1{

    opacity:0;

    animation:titleUp 1s ease forwards;

    animation-delay:.4s;

}

/* Subtitle */

.hero-subtitle{

    opacity:0;

    animation:titleUp 1s ease forwards;

    animation-delay:.2s;

}

/* Paragraph */

.hero p{

    opacity:0;

    animation:titleUp 1s ease forwards;

    animation-delay:.6s;

}

/* Divider */

.hero-divider{

    transform:scaleX(0);

    transform-origin:center;

    animation:dividerGrow .8s ease forwards;

    animation-delay:1s;

}

/* Scroll Indicator */

.scroll-indicator{

    animation:bounceDown 2.5s infinite;

}

/* Logo Glow */

.hero-logo img{

    filter:drop-shadow(0 0 30px rgba(0,159,227,.25));

}

/*==========================
KEYFRAMES
==========================*/

@keyframes heroFade{

from{

opacity:0;

}

to{

opacity:1;

}

}

@keyframes logoZoom{

0%{

opacity:0;

transform:scale(.8);

}

100%{

opacity:1;

transform:scale(1);

}

}

@keyframes titleUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes dividerGrow{

to{

transform:scaleX(1);

}

}

@keyframes bounceDown{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,12px);

}

}
/*==================================================
SECTION 02 - HERO FINAL POLISH
==================================================*/

/* Background Overlay */

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.45)
    );
    z-index:1;
}

/* Background Shapes */

.hero-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:0;
    animation:floatShape 12s ease-in-out infinite;
}

.shape-1{
    width:420px;
    height:420px;
    background:rgba(0,159,227,.12);
    top:-120px;
    right:-120px;
}

.shape-2{
    width:320px;
    height:320px;
    background:rgba(0,159,227,.08);
    bottom:-80px;
    left:-80px;
    animation-delay:2s;
}

.shape-3{
    width:220px;
    height:220px;
    background:rgba(0,159,227,.10);
    top:45%;
    left:12%;
    animation-delay:4s;
}

/* Logo Circle */

.hero-logo{
    position:relative;
    display:inline-flex;
    justify-content:center;
    align-items:center;
}

.hero-logo::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(0,159,227,.15),
    transparent 70%);

    animation:pulseGlow 5s ease-in-out infinite;

    z-index:-1;

}

/* Better Typography */

.hero h1{

    letter-spacing:-2px;

    text-shadow:0 3px 10px rgba(0,0,0,.08);

}

.hero p{

    font-weight:400;

}

/* Selection */

.hero h1::selection,
.hero p::selection,
.hero-subtitle::selection{

    background:#009FE3;

    color:#fff;

}

/* Animations */

@keyframes floatShape{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-25px);

}

}

@keyframes pulseGlow{

0%,100%{

transform:scale(1);

opacity:.6;

}

50%{

transform:scale(1.08);

opacity:1;

}

}

/* Large Desktop */

@media(min-width:1700px){

.hero-container{

max-width:1450px;

}

.hero h1{

font-size:86px;

}

.hero p{

font-size:24px;

max-width:900px;

}

.hero-logo img{

width:260px;

}

}
.divisions {
    width: 100%;
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-title span {
    color: #009FE3;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-title h2 {
    color: #111;
    font-size: 46px;
    margin: 15px 0;
}

.section-title p {
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

.division-slider {
    display: flex;
    gap: 70px;
    width: max-content;
    padding: 10px 50px 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.division-slider::-webkit-scrollbar {
    display: none;
}

.division {
    width: 220px;
    flex: 0 0 220px;
    text-align: center;
    scroll-snap-align: center;
}

.division img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    transition: transform .3s ease;
}

.division:hover img {
    transform: translateY(-7px);
}

.division h3 {
    color: #111;
    font-size: 22px;
    margin-bottom: 12px;
}

.division p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.division a {
    color: #009FE3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.division a:hover {
    text-decoration: underline;
}

/* PHONE */

@media (max-width: 768px) {

    .divisions {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-title p {
        font-size: 15px;
    }

    .division-slider {
        gap: 45px;
        padding: 10px 25px 25px;
        scroll-padding-left: 25px;
    }

    .division {
        width: 190px;
        flex: 0 0 190px;
    }

    .division img {
        width: 65px;
        height: 65px;
    }

    .division h3 {
        font-size: 20px;
    }

    .division p {
        font-size: 14px;
    }

}
/*==================================================
SECTION 04 - ABOUT
==================================================*/

.about{
    padding:120px 8%;
    background:#ffffff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.5s;
}

.about-image img:hover{
    transform:scale(1.03);
}

.about-content .section-subtitle{
    display:inline-block;
    color:#009FE3;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.about-content h2{
    font-size:48px;
    color:#1E293B;
    margin-bottom:25px;
    line-height:1.2;
}

.about-content p{
    color:#6B7280;
    line-height:1.9;
    font-size:17px;
    margin-bottom:22px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin:45px 0;
}

.feature{
    background:#F8FBFF;
    border-left:5px solid #009FE3;
    padding:25px;
    border-radius:15px;
    transition:.35s;
}

.feature:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,159,227,.12);
}

.feature h4{
    color:#1E293B;
    font-size:22px;
    margin-bottom:12px;
}

.feature p{
    margin:0;
    font-size:15px;
    color:#6B7280;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#009FE3;
    color:#ffffff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.about-btn:hover{
    background:#0077B6;
    gap:18px;
    transform:translateY(-3px);
}

/*========================
Responsive
========================*/

@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.about-image{
    order:-1;
}

.about-content h2{
    font-size:38px;
}

.about-features{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.about{
    padding:90px 25px;
}

.about-content h2{
    font-size:32px;
}

.about-content p{
    font-size:16px;
}

.about-btn{
    width:100%;
    justify-content:center;
}

}
/*==================================================
   JKWI MARKET PULSE
   Compact • Interactive • Premium
==================================================*/

.jkwi-market-pulse {

    position: relative;

    width: 100%;

    padding: 24px 0 20px;

    background:
        linear-gradient(
            180deg,
            #f8fbfd 0%,
            #ffffff 100%
        );

    border-top: 1px solid #e7edf1;

    border-bottom: 1px solid #e7edf1;

    overflow: hidden;

}


/* ==========================================
   CONTAINER
========================================== */

.market-pulse-container {

    width: min(1200px, 92%);

    margin: 0 auto;

}


/* ==========================================
   TOP
========================================== */

.market-pulse-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 13px;

}


.market-pulse-title {

    display: flex;

    align-items: center;

    gap: 10px;

}


.market-pulse-title strong {

    color: #111827;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .7px;

}


.market-pulse-live {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 4px 7px;

    border-radius: 4px;

    background: #eef8fd;

    color: #009FE3;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

}


.market-pulse-live i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #009FE3;

    animation: pulseLive 1.5s ease-in-out infinite;

}


@keyframes pulseLive {

    0%,
    100% {

        opacity: .35;

        transform: scale(.8);

    }

    50% {

        opacity: 1;

        transform: scale(1.2);

    }

}


.market-pulse-link {

    color: #009FE3;

    font-size: 9px;

    font-weight: 800;

    text-decoration: none;

    transition: .2s ease;

}


.market-pulse-link:hover {

    transform: translateX(3px);

}


/* ==========================================
   CATEGORY BAR
========================================== */

.market-pulse-categories {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 12px;

    overflow-x: auto;

    scrollbar-width: none;

}


.market-pulse-categories::-webkit-scrollbar {

    display: none;

}


.pulse-category {

    flex-shrink: 0;

    min-height: 27px;

    padding: 0 10px;

    border: 1px solid #dfe6eb;

    border-radius: 4px;

    background: #ffffff;

    color: #69737d;

    font-size: 8px;

    font-weight: 800;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;

}


.pulse-category:hover {

    border-color: #009FE3;

    color: #009FE3;

}


.pulse-category:active {

    transform: scale(.95);

}


.pulse-category.active {

    border-color: #009FE3;

    background: #009FE3;

    color: #ffffff;

}


/* ==========================================
   MARKET STAGE
========================================== */

.market-pulse-stage {

    position: relative;

    width: 100%;

    height: 76px;

    overflow: hidden;

    border: 1px solid #e2e8ed;

    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, .035);

}


/* ==========================================
   TRACK
========================================== */

.market-pulse-track {

    height: 100%;

    width: max-content;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 0 25px;

    will-change: transform;

    animation:
        marketPulseMove 32s linear infinite;

}


.market-pulse-stage:hover
.market-pulse-track {

    animation-play-state: paused;

}


@keyframes marketPulseMove {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


/* ==========================================
   MARKET CARD
========================================== */

.market-pulse-card {

    position: relative;

    width: 180px;

    height: 56px;

    flex: 0 0 180px;

    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 8px;

    padding: 8px 10px;

    border: 1px solid #e5eaee;

    border-radius: 6px;

    background: #ffffff;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

}


.market-pulse-card:hover {

    transform: translateY(-2px);

    border-color: #009FE3;

    box-shadow:
        0 8px 22px rgba(0, 159, 227, .10);

}


/* ==========================================
   CARD LEFT
========================================== */

.market-card-name {

    min-width: 0;

}


.market-card-name small {

    display: block;

    margin-bottom: 2px;

    color: #89939d;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;

}


.market-card-name strong {

    display: block;

    overflow: hidden;

    color: #161b20;

    font-size: 11px;

    font-weight: 800;

    text-overflow: ellipsis;

    white-space: nowrap;

}


/* ==========================================
   PRICE
========================================== */

.market-card-value {

    text-align: right;

}


.market-card-price {

    display: block;

    color: #161b20;

    font-size: 11px;

    font-weight: 800;

}


.market-card-change {

    display: block;

    margin-top: 2px;

    font-size: 7px;

    font-weight: 900;

}


.market-card-change.up {

    color: #168a58;

}


.market-card-change.down {

    color: #d94a4a;

}


/* ==========================================
   MINI PULSE
========================================== */

.market-card-pulse {

    position: absolute;

    left: 10px;

    bottom: 7px;

    width: 38px;

    height: 8px;

    overflow: hidden;

}


.market-card-pulse::before {

    content: "";

    position: absolute;

    left: -40px;

    top: 4px;

    width: 80px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #009FE3,
            transparent
        );

    animation:
        miniPulse 1.8s linear infinite;

}


@keyframes miniPulse {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(40px);

    }

}


/* ==========================================
   CARD CATEGORY LINE
========================================== */

.market-card-line {

    position: absolute;

    left: 0;

    top: 0;

    width: 2px;

    height: 100%;

    background: #009FE3;

    border-radius: 6px 0 0 6px;

}


/* ==========================================
   EDGE FADE
========================================== */

.market-pulse-fade {

    position: absolute;

    top: 0;

    width: 75px;

    height: 100%;

    z-index: 3;

    pointer-events: none;

}


.market-pulse-fade.left {

    left: 0;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            rgba(255,255,255,0)
        );

}


.market-pulse-fade.right {

    right: 0;

    background:
        linear-gradient(
            270deg,
            #ffffff,
            rgba(255,255,255,0)
        );

}


/* ==========================================
   BOTTOM
========================================== */

.market-pulse-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 9px;

    color: #929ba4;

    font-size: 7px;

}


.market-pulse-status {

    display: flex;

    align-items: center;

    gap: 5px;

}


.pulse-status-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #168a58;

    box-shadow:
        0 0 0 3px rgba(22,138,88,.08);

    animation:
        statusPulse 1.8s ease-in-out infinite;

}


@keyframes statusPulse {

    0%,
    100% {

        opacity: .5;

    }

    50% {

        opacity: 1;

    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 768px) {

    .jkwi-market-pulse {

        padding: 20px 0 17px;

    }


    .market-pulse-container {

        width: 94%;

    }


    .market-pulse-stage {

        height: 72px;

    }


    .market-pulse-track {

        gap: 7px;

        padding: 0 18px;

        animation-duration: 25s;

    }


    .market-pulse-card {

        width: 165px;

        height: 53px;

        flex-basis: 165px;

    }


    .market-pulse-fade {

        width: 45px;

    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 500px) {

    .market-pulse-top {

        margin-bottom: 10px;

    }


    .market-pulse-title {

        gap: 7px;

    }


    .market-pulse-title strong {

        font-size: 11px;

    }


    .market-pulse-live {

        font-size: 6px;

        padding: 4px 6px;

    }


    .market-pulse-link {

        font-size: 8px;

    }


    .market-pulse-categories {

        margin-bottom: 9px;

    }


    .pulse-category {

        min-height: 25px;

        padding: 0 9px;

        font-size: 7px;

    }


    .market-pulse-stage {

        height: 68px;

        border-radius: 6px;

    }


    .market-pulse-track {

        animation-duration: 22s;

    }


    .market-pulse-card {

        width: 155px;

        height: 50px;

        flex-basis: 155px;

        padding: 7px 9px;

    }


    .market-card-name small {

        font-size: 6px;

    }


    .market-card-name strong {

        font-size: 10px;

    }


    .market-card-price {

        font-size: 10px;

    }


    .market-pulse-bottom {

        font-size: 6.5px;

    }


    .market-pulse-bottom > span:first-child {

        display: none;

    }

}


/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .market-pulse-track,
    .market-pulse-live i,
    .market-card-pulse::before,
    .pulse-status-dot {

        animation: none !important;

    }

}
/* ===========================
WHY CHOOSE US
=========================== */

.why-us{
    padding:100px 8%;
    background:#f8fbff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#003366;
    margin-bottom:15px;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:50px;
    color:#009FE3;
    margin-bottom:20px;
}

.why-card h3{
    color:#003366;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}
/*==========================
CONTACT
==========================*/

.contact{
    padding:100px 8%;
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-box{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:25px;
    border-radius:15px;
    background:#f7f9fc;
}

.info-box i{
    font-size:28px;
    color:#009FE3;
}

.info-box h3{
    color:#003366;
    margin-bottom:8px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    font-size:16px;
}

.contact-form textarea{
    resize:none;
}

.contact-form .btn{
    width:200px;
}
/*==========================
FOOTER
==========================*/

.footer{

    background:#fbfcfd;

    color:#fff;

    padding:80px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-box h3{

    margin-bottom:20px;

    font-size:22px;

}

.footer-box p{

    color:#d8d8d8;

    line-height:1.8;

}

.footer-box a{

    display:block;

    color:#d8d8d8;

    margin-bottom:12px;

    text-decoration:none;

    transition:.3s;

}

.footer-box a:hover{

    color:#009FE3;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.1);

    border-radius:50%;

    color:#fff;

    font-size:18px;

    transition:.3s;

}

.footer-social a:hover{

    background:#009FE3;

    transform:translateY(-5px);

}

.footer-bottom{

    text-align:center;

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

}

.footer-bottom p{

    color:#bdbdbd;

    font-size:15px;

}
/* =========================================
   COMPACT NEWS
========================================= */

.jkwi-news {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 55px 20px;
    background: #fff;
}


/* HEADING */

.news-heading {
    display: flex;
    align-items: baseline;
    gap: 15px;

    border-bottom: 1px solid #ddd;

    padding-bottom: 10px;
    margin-bottom: 20px;
}

.news-heading span {
    color: #009FE3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.news-heading h2 {
    margin: 0;
    color: #111;
    font-size: 28px;
    letter-spacing: 2px;
}


/* =========================================
   NEWS ITEM
========================================= */

.news-item {
    display: grid;

    grid-template-columns: 230px 1fr;

    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid #ddd;
}

.news-item img {
    width: 230px;
    height: 140px;

    object-fit: cover;

    display: block;
}


/* TEXT */

.news-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 10px;

    margin-bottom: 6px;
}

.news-meta span {
    color: #009FE3;
    font-size: 10px;
    font-weight: 700;
}

.news-meta small {
    color: #999;
    font-size: 10px;
}

.news-item h3 {
    color: #111;

    font-family: Georgia, serif;

    font-size: 22px;

    font-weight: 400;

    margin: 0 0 7px;
}

.news-item p {
    color: #666;

    font-size: 13px;

    line-height: 1.6;

    margin: 0 0 8px;
}

.news-item a {
    color: #009FE3;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;
}


/* =========================================
   PHONE
========================================= */

@media (max-width: 600px) {

    .jkwi-news {
        padding: 40px 15px;
    }

    .news-heading {
        margin-bottom: 12px;
    }

    .news-heading h2 {
        font-size: 24px;
    }


    /* IMAGE ON TOP */

    .news-item {
        display: block;

        padding: 12px 0 18px;

        margin-bottom: 4px;
    }

    .news-item img {
        width: 100%;
        height: 190px;

        margin-bottom: 12px;
    }


    /* SUMMARY UNDER IMAGE */

    .news-info {
        display: block;
    }

    .news-meta {
        margin-bottom: 5px;
    }

    .news-meta span {
        font-size: 9px;
    }

    .news-meta small {
        font-size: 9px;
    }

    .news-item h3 {
        font-size: 21px;

        margin-bottom: 7px;
    }

    .news-item p {
        font-size: 14px;

        line-height: 1.55;

        margin-bottom: 8px;
    }

    .news-item a {
        font-size: 11px;
    }

}
/*=========================================
LIVE MARKET - MOBILE
=========================================*/

@media (max-width:768px){

.market-section{

    padding:20px 0;

}

.market-title{

    margin-bottom:15px;

}

.market-title span{

    font-size:18px;

    letter-spacing:1px;

}

.market-ticker{

    width:100%;

    overflow:hidden;

}

.ticker-track{

    gap:20px;

    animation:scrollTicker 20s linear infinite;

}

.market-item{

    min-width:180px;

    padding:12px 18px;

    border-radius:50px;

    background:#ffffff;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    font-size:15px;

}

.market-item span{

    font-size:16px;

    font-weight:700;

}

.up{

    color:#00B050;

}

.down{

    color:#E53935;

}

}
/* =========================================
   JKWI VIDEO SECTION
========================================= */

.jkwi-video-section {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
    padding: 45px 20px;

    background: #ffffff;
    box-sizing: border-box;
}


/* =========================================
   VIDEO HEADING
========================================= */

.video-heading {
    display: flex;
    align-items: baseline;
    gap: 15px;

    margin-bottom: 18px;
    padding-bottom: 10px;

    border-bottom: 1px solid #dddddd;
}

.video-heading span {
    color: #009FE3;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.video-heading h2 {
    margin: 0;

    color: #111111;

    font-size: 28px;
    font-weight: 600;

    letter-spacing: 2px;
}


/* =========================================
   VIDEO CONTAINER
========================================= */

.jkwi-video {
    position: relative;

    width: 100%;

    /*
       Wide shape matching your video
       and removing unnecessary black space.
    */
    aspect-ratio: 5 / 1;

    overflow: hidden;

    background: #ffffff;

    border-radius: 0;

    box-sizing: border-box;
}


/* =========================================
   VIDEO
========================================= */

.jkwi-video video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
       Keeps the JKWI branding centered
    */
    object-position: center center;

    border: none;
    outline: none;

    background: #ffffff;
}


/* =========================================
   REMOVE VIDEO OUTLINE
========================================= */

.jkwi-video video:focus {
    outline: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .jkwi-video-section {
        padding: 40px 18px;
    }

    .video-heading h2 {
        font-size: 25px;
    }

    .jkwi-video {
        aspect-ratio: 5 / 1;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .jkwi-video-section {
        width: 100%;

        padding: 32px 15px;

        margin: 0;
    }


    /* Heading */

    .video-heading {
        gap: 10px;

        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .video-heading span {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .video-heading h2 {
        font-size: 22px;
        letter-spacing: 1.5px;
    }


    /* Video */

    .jkwi-video {
        width: 100%;

        /*
           Keeps the video very wide
           on phones.
        */
        aspect-ratio: 5 / 1;

        overflow: hidden;

        background: #ffffff;
    }

    .jkwi-video video {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;

        display: block;

        background: #ffffff;
    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .jkwi-video-section {
        padding: 28px 12px;
    }

    .video-heading h2 {
        font-size: 20px;
    }

    .jkwi-video {
        aspect-ratio: 5 / 1;
    }

}.equipment-market {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px;

    border: 1px solid #ddd;
    background: #fff;

    text-decoration: none;
    transition: .25s ease;
}

.equipment-item:hover {
    transform: translateY(-2px);
    border-color: #009FE3;
}

.equipment-item img {
    width: 75px;
    height: 55px;

    object-fit: cover;
    flex-shrink: 0;
}

.equipment-item h4 {
    margin: 0 0 5px;

    color: #111;

    font-size: 14px;
    font-weight: 700;
}

.equipment-item span {
    color: #009FE3;

    font-size: 10px;
    font-weight: 700;
}


/* TABLET */

@media (max-width: 900px) {

    .equipment-market {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .equipment-market {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .equipment-item {
        gap: 8px;
        padding: 8px;
    }

    .equipment-item img {
        width: 60px;
        height: 48px;
    }

    .equipment-item h4 {
        font-size: 12px;
    }

    .equipment-item span {
        font-size: 9px;
    }

}/* ==========================================
   JKWI NAV LOGIN / REGISTER
   Desktop + Mobile
========================================== */

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Login */

.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 42px;
    padding: 0 18px;

    color: #111827;
    background: transparent;

    border: 1px solid rgba(17, 24, 39, 0.18);
    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.25s ease;
}

.nav-login:hover {
    background: #f3f4f6;
    border-color: #111827;
}


/* Register */

.nav-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 42px;
    padding: 0 19px;

    color: #ffffff;
    background: #111827;

    border: 1px solid #111827;
    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.25s ease;
}

.nav-register:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}


/* Get in Touch */

.contact-btn {
    height: 42px;
    padding: 0 18px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    .nav-right {
        gap: 7px;
    }

    .nav-login,
    .nav-register,
    .contact-btn {
        height: 40px;
        padding: 0 13px;
        font-size: 13px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .nav-right {
        display: none;
    }

    /*
       Login/Register will appear inside
       the mobile navigation if your
       menu-toggle opens .nav-links.
    */

    .nav-links {
        width: 100%;
    }

}


/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 480px) {

    .nav-login,
    .nav-register {
        height: 40px;
        padding: 0 12px;

        font-size: 13px;
        border-radius: 7px;
    }

}/* ==========================
   JKWI AI SECTION
========================== */

.jkwi-ai-section {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

    padding: 100px 8%;

    background: #f5f8fb;
}


.jkwi-ai-content {
    max-width: 600px;
}


.jkwi-ai-content .eyebrow {
    display: block;

    color: #009fe3;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.jkwi-ai-content h2 {
    font-size: 42px;

    margin-bottom: 18px;
}


.jkwi-ai-content p {
    color: #667085;

    line-height: 1.8;

    margin-bottom: 30px;
}


.ai-button {
    display: inline-block;

    padding: 14px 24px;

    background: #009fe3;

    color: #ffffff;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 700;
}


/* AI CARD */

.jkwi-ai-card {
    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.07);
}


.ai-card-header {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 22px;

    border-bottom:
        1px solid #e5e7eb;
}


.ai-mini-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #009fe3;

    color: white;

    font-weight: 800;
}


.ai-card-header strong {
    display: block;
}


.ai-card-header small {
    display: block;

    margin-top: 4px;

    color: #6b7280;
}


.ai-preview {
    padding: 25px;
}


.preview-message {
    max-width: 80%;

    padding: 12px 15px;

    margin-bottom: 14px;

    border-radius: 12px;

    font-size: 14px;

    line-height: 1.5;
}


.preview-message.ai {
    background: #f1f5f9;
}


.preview-message.user {
    margin-left: auto;

    background: #009fe3;

    color: white;
}


@media (max-width: 750px) {

    .jkwi-ai-section {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 70px 20px;
    }


    .jkwi-ai-content h2 {
        font-size: 32px;
    }

}/*==================================================
   JKWI SHOPPING & RENTING
   Compact • Premium • Responsive
==================================================*/

.shopping-preview {
    width: 100%;
    padding: 55px 0;
    background: #ffffff;
    border-top: 1px solid #eef1f4;
    border-bottom: 1px solid #eef1f4;
}

.shopping-preview-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* ==========================================
   HEADING
========================================== */

.shopping-preview-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.shopping-preview-heading > div {
    max-width: 720px;
}

.shopping-preview-heading span {
    display: block;
    margin-bottom: 7px;

    color: #009FE3;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.shopping-preview-heading h2 {
    margin: 0 0 8px;

    color: #111827;

    font-size: 30px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: -0.5px;
}

.shopping-preview-heading p {
    max-width: 650px;

    margin: 0;

    color: #667085;

    font-size: 14px;
    line-height: 1.6;
}


/* ==========================================
   SEE MORE
========================================== */

.shopping-see-more {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 0 17px;

    background: #009FE3;
    color: #ffffff;

    border-radius: 6px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition:
        background .25s ease,
        transform .25s ease;
}

.shopping-see-more:hover {
    background: #008dcc;
    transform: translateY(-2px);
}


/* ==========================================
   FEATURED CARDS
========================================== */

.shopping-featured {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}


.shopping-card {
    display: flex;

    min-width: 0;

    background: #ffffff;

    border:
        1px solid #e5e7eb;

    border-radius: 9px;

    overflow: hidden;

    text-decoration: none;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.shopping-card:hover {
    transform: translateY(-3px);

    border-color: #009FE3;

    box-shadow:
        0 12px 28px rgba(0, 159, 227, .10);
}


/* ==========================================
   IMAGE
========================================== */

.shopping-card-image {
    position: relative;

    width: 125px;
    min-width: 125px;

    height: 105px;

    overflow: hidden;
}

.shopping-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.shopping-card:hover
.shopping-card-image img {
    transform: scale(1.05);
}


/* BADGE */

.shopping-badge {
    position: absolute;

    top: 7px;
    left: 7px;

    padding: 4px 6px;

    background: #009FE3;
    color: #ffffff;

    border-radius: 4px;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .5px;
}


/* ==========================================
   CARD CONTENT
========================================== */

.shopping-card-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 12px 14px;
}

.shopping-card-content > span {
    color: #009FE3;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .8px;

    margin-bottom: 4px;
}

.shopping-card-content h3 {
    margin: 0 0 5px;

    color: #111827;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.2;
}

.shopping-card-content p {
    margin: 0;

    color: #7b8490;

    font-size: 11px;

    line-height: 1.4;
}


/* ==========================================
   BOTTOM
========================================== */

.shopping-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 18px;

    padding-top: 13px;

    border-top:
        1px solid #eef1f4;
}

.shopping-bottom span {
    color: #8a939d;

    font-size: 10px;
}

.shopping-bottom a {
    color: #009FE3;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
}

.shopping-bottom a:hover {
    text-decoration: underline;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .shopping-preview {
        padding: 45px 0;
    }

    .shopping-featured {
        gap: 10px;
    }

    .shopping-card-image {
        width: 105px;
        min-width: 105px;
        height: 95px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .shopping-preview {
        padding: 38px 0;
    }

    .shopping-preview-container {
        width: 92%;
    }

    .shopping-preview-heading {
        display: block;

        margin-bottom: 18px;
    }

    .shopping-preview-heading h2 {
        font-size: 25px;
    }

    .shopping-preview-heading p {
        font-size: 13px;
        line-height: 1.55;
    }

    .shopping-see-more {
        margin-top: 13px;

        min-height: 36px;
        padding: 0 14px;
    }

    .shopping-featured {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .shopping-card {
        width: 100%;
    }

    .shopping-card-image {
        width: 100px;
        min-width: 100px;
        height: 88px;
    }

    .shopping-card-content {
        padding: 10px 12px;
    }

    .shopping-card-content h3 {
        font-size: 15px;
    }

    .shopping-bottom {
        margin-top: 14px;
    }

    .shopping-bottom span {
        display: none;
    }

    .shopping-bottom a {
        margin-left: auto;
    }

}


/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 380px) {

    .shopping-preview {
        padding: 32px 0;
    }

    .shopping-preview-heading h2 {
        font-size: 23px;
    }

    .shopping-card-image {
        width: 90px;
        min-width: 90px;
        height: 82px;
    }

}