﻿:root {
    --orange: #FF6B00;
    --orange-light: #FF9500;
    --orange-pale: #FFF4EC;
    --dark: #1A0A00;
    --text: #333;
    --muted: #777;
    --border: #F0E8E0;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'QuicksandRegular';
    src: url('/fonts/Quicksand-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'QuicksandBold';
    src: url('/fonts/Quicksand-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
.quick {
    font-family: 'QuicksandRegular' !important;
    src: url('/fonts/Quicksand-Regular.ttf') format('truetype');
}

.quicksand {
    font-family: 'QuicksandRegular';
}

.quicksand-bold {
    font-family: 'QuicksandBold';
    font-weight: 700;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'QuicksandRegular' !important;
    color: var(--text);
    background: #fff;
}

/* ───── NAVBAR ───── */
.navbar {
    background: #fff;
    border-bottom: 1.5px solid var(--border);
    padding: .9rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(255,107,0,.07);
}

.navbar-brand img {
    width: 200px;
    height: auto;
}

.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: .92rem;
    padding: .4rem 1.1rem !important;
    border-radius: 8px;
    transition: color .2s,background .2s;
}

    .navbar-nav .nav-link:hover {
        color: var(--orange) !important;
        background: var(--orange-pale);
    }

    .navbar-nav .nav-link.active {
        color: var(--orange) !important;
    }

.btn-login-nav {
    background: linear-gradient(135deg,var(--orange),var(--orange-light));
    color: #fff !important;
    font-weight: 600;
    font-size: .88rem;
    padding: .45rem 1.3rem !important;
    border-radius: 25px;
    box-shadow: 0 3px 12px rgba(255,107,0,.3);
    transition: opacity .2s,transform .15s;
}

    .btn-login-nav:hover {
        opacity: .88;
        transform: translateY(-1px);
    }

.navbar-toggler {
    border-color: var(--orange);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,107,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ───── HERO ───── */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
    opacity: .08;
}

.hero-glow {
    position: absolute;
    right: -200px;
    top: -100px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(255,149,0,.18) 0%,transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 20px;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(255,107,0,.2);
}

.hero-headline {
    font-size: clamp(2.4rem,5vw,3.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: -.5px;
    margin-bottom: 1.3rem;
}

    .hero-headline span {
        background: linear-gradient(135deg,var(--orange),var(--orange-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.2rem;
}

.btn-primary-kx {
    background: linear-gradient(135deg,var(--orange),var(--orange-light));
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .75rem 2rem;
    border-radius: 30px;
    border: none;
    box-shadow: 0 6px 22px rgba(255,107,0,.35);
    transition: transform .15s,box-shadow .2s;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary-kx:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(255,107,0,.45);
        color: #fff;
    }

.btn-outline-kx {
    border: 2px solid var(--orange);
    color: var(--orange);
    font-weight: 600;
    font-size: .95rem;
    padding: .73rem 1.8rem;
    border-radius: 30px;
    background: transparent;
    text-decoration: none;
    display: inline-block;
    transition: background .2s,color .2s;
}

    .btn-outline-kx:hover {
        background: var(--orange-pale);
        color: var(--orange);
    }

.hero-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    box-shadow: 0 16px 60px rgba(255,107,0,.12),0 2px 8px rgba(0,0,0,.05);
    padding: 2.5rem 2rem;
    text-align: center;
}

.hero-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
}

.hero-stat-label {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: .2rem;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    height: 48px;
    align-self: center;
}

/* ───── SECTION COMMONS ───── */
section {
    padding: 5rem 0;
}

.section-eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.section-title {
    font-size: clamp(1.7rem,3vw,2.4rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.3px;
    margin-bottom: .8rem;
}

.section-sub {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.7;
    max-width: 560px;
}

.orange-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg,var(--orange),var(--orange-light));
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

/* ───── ABOUT ───── */
#about {
    background: var(--orange-pale);
}

.about-img-wrap {
    position: relative;
    display: inline-block;
}

    .about-img-wrap img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(255,107,0,.15);
    }

.about-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--orange);
    color: #fff;
    border-radius: 12px;
    padding: 1rem 1.3rem;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 6px 20px rgba(255,107,0,.4);
}

    .about-badge small {
        display: block;
        font-size: .7rem;
        font-weight: 500;
        opacity: .85;
        margin-top: .2rem;
    }

.about-check {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .9rem;
}

.about-check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--orange),var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

    .about-check-icon i {
        color: #fff;
        font-size: .65rem;
    }

.about-check p {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* ───── SERVICES ───── */
#services {
    background: #fff;
}

.service-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.6rem;
    transition: transform .25s,box-shadow .25s,border-color .25s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(255,107,0,.12);
        border-color: rgba(255,107,0,.3);
    }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--orange),var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 14px rgba(255,107,0,.3);
}

    .service-icon i {
        color: #fff;
        font-size: 1.3rem;
    }

.service-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
}

.service-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ───── TEAM ───── */
#teams {
    background: var(--orange-pale);
}

.team-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid var(--border);
    padding: 2rem 1.4rem;
    text-align: center;
    transition: transform .25s,box-shadow .25s;
    height: 100%;
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 36px rgba(255,107,0,.12);
    }

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--orange),var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 16px rgba(255,107,0,.3);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
}

.team-card h6 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .25rem;
}

.team-card .role {
    font-size: .78rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: .7rem;
}

.team-card p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.social-links a {
    color: var(--muted);
    font-size: 1rem;
    margin: 0 .3rem;
    transition: color .2s;
}

    .social-links a:hover {
        color: var(--orange);
    }

/* ───── CTA STRIP ───── */
.cta-strip {
    background: linear-gradient(135deg,var(--orange) 0%,var(--orange-light) 100%);
    padding: 4rem 0;
    text-align: center;
}

    .cta-strip h2 {
        color: #fff;
        font-size: clamp(1.6rem,3vw,2.2rem);
        font-weight: 800;
        margin-bottom: .7rem;
    }

    .cta-strip p {
        color: rgba(255,255,255,.82);
        font-size: .95rem;
        margin-bottom: 1.8rem;
    }

.btn-white-kx {
    background: #fff;
    color: var(--orange);
    font-weight: 700;
    padding: .75rem 2rem;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    text-decoration: none;
    display: inline-block;
    transition: transform .15s,box-shadow .2s;
}

    .btn-white-kx:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 26px rgba(0,0,0,.18);
        color: var(--orange);
    }

/* ───── FOOTER ───── */
footer {
    background: var(--dark);
    padding: 2.8rem 0 1.6rem;
}

.footer-logo img {
    width: 130px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-tagline {
    color: rgba(255,255,255,.45);
    font-size: .78rem;
    margin-top: .5rem;
}

.footer-divider {
    border-color: rgba(255,255,255,.1);
    margin: 1.8rem 0 1.4rem;
}

.footer-link {
    color: rgba(255,255,255,.55);
    font-size: .82rem;
    text-decoration: none;
    transition: color .2s;
    margin: 0 .8rem;
}

    .footer-link:hover {
        color: var(--orange);
    }

.footer-copy {
    color: rgba(255,255,255,.3);
    font-size: .76rem;
}

.footer-center-logo img {
    width: 128px;
    height: 128px;
    object-fit: contain;
    border-radius: 10px;
    border: 1.5px solid rgba(255,107,0,.35);
    background: rgba(255,255,255,.06);
    padding: 4px;
}
