:root {
    /* Brand Theme (tuned to your design) */
    --brand-800: #123b7a;
    --brand-700: #1b4f9b;
    --brand-600: #2465c0;
    --brand-500: #2f7ae5;
    --brand-400: #63a2ff;

    --accent-600: #e64a3c; /* CTA red/orange */
    --accent-500: #ff5a4f;
    --accent-400: #ff7d73;

    --bg: #f5f7fb;
    --surface: #ffffff;
    --muted: #6b778c;
    --text: #182033;
    --ring: #b6c7e5;
    --shadow: 0 8px 24px rgba(16, 36, 94, 0.12);

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --gap: clamp(14px, 2.6vw, 24px);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family:
        Poppins,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        "Apple Color Emoji",
        "Segoe UI Emoji";
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    cursor: pointer;
}

/* ---------- Header ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(140%) blur(8px);
    background: linear-gradient(90deg, var(--brand-800), var(--brand-600));
    color: #fff;
    box-shadow: 0 6px 16px rgba(10, 26, 64, 0.18);
}
.nav {
    max-width: var(--max);
    margin: auto;
    padding: 10px var(--gap);
    display: flex;
    align-items: center;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: radial-gradient(120px 60px at 30% 30%, #fff8, transparent 60%),
        linear-gradient(135deg, #6ca8ff, #2a6ad7);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    box-shadow:
        inset 0 0 0 2px #ffffff22,
        0 4px 12px #0002;
}

.menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu > ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu a {
    padding: 10px 12px;
    border-radius: 8px;
    color: #e9f1ff;
    font-weight: 500;
}
.menu a:hover {
    background: #ffffff14;
}
.menu li {
    position: relative;
}

/* Dropdown (desktop) */
.dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 280px;
    padding: 14px;
    display: none;
    background: var(--surface);
    color: var(--text);
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid #e8eef8;
}
.menu li:focus-within > .dropdown,
.menu li:hover > .dropdown {
    display: grid;
}
.dropdown.grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    color: var(--text);
}
.dropdown a:hover {
    background: #f1f5ff;
}
.dd-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
    font-size: 16px;
}

/* CTA */
.cta {
    margin-left: 10px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-400));
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(255, 90, 79, 0.35);
}
.cta:hover {
    transform: translateY(-1px);
}

/* Mobile menu button */
.hamburger {
    display: none;
    background: #ffffff18;
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 10px;
}

/* ---------- Hero ---------- */
.hero {
    background:
        linear-gradient(160deg, #0a2a6a 0%, #1a4aa8 48%, #2661d6 100%),
        url("https://images.unsplash.com/photo-1544207240-4bf8141c2a05?q=80&w=1600&auto=format&fit=crop") center/cover
            no-repeat;
    color: #fff;
}
.hero-inner {
    max-width: var(--max);
    margin: auto;
    padding: 40px var(--gap) 54px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}
.hero h1 {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.15;
    margin: 10px 0 12px;
}
.hero p {
    color: #e5efff;
    margin: 0 0 18px;
}
.hero .tag {
    display: inline-block;
    background: #ffffff1c;
    border: 1px solid #ffffff2a;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ffffff33;
    color: #fff;
    background: #ffffff20;
    font-weight: 600;
}
.btn.primary {
    background: linear-gradient(135deg, var(--accent-600), var(--accent-400));
    border: none;
}
.hero-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.hero-card {
    background: #ffffff10;
    border: 1px solid #ffffff1f;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.hero-card img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 6px 14px #0003;
}
.hero-card .muted {
    color: #ffffff !important;
} /* your request: white subtext */

/* ---------- Sections ---------- */
.section {
    max-width: var(--max);
    margin: 24px auto;
    padding: 0 var(--gap);
}
.sec-title {
    text-align: center;
    margin: 22px 0 14px;
    font-size: clamp(22px, 2.6vw, 28px);
}
.muted {
    color: var(--muted);
}

/* Services icons */
.services {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 18px;
    border: 1px solid #e8eef8;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.svc {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    transition: 0.2s background;
}
.svc:hover {
    background: #f6f9ff;
}
.svc .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
    box-shadow: 0 8px 18px rgba(36, 101, 192, 0.25);
    font-size: 22px;
}
.svc span {
    font-weight: 600;
    font-size: 14px;
}

/* Brands strip */
.brands {
    margin-top: 18px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.brand-logo-sm {
    filter: grayscale(1) contrast(0.8) brightness(1.1);
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8eef8;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 6px rgba(10, 26, 64, 0.04);
}

/* Product grid */
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}
.card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8eef8;
    box-shadow: var(--shadow);
}
.card img {
    aspect-ratio: 16 / 10;
    width: 100%;
    object-fit: cover;
}
.card-body {
    padding: 14px 14px 16px;
}
.card-title {
    font-weight: 700;
}
.card p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

/* Contact */
.contact {
    background: linear-gradient(180deg, #f5f9ff, #ffffff);
    border: 1px solid #e8eef8;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
}
.contact .lead {
    text-align: center;
    margin-top: -4px;
    color: var(--muted);
}
.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}
.form .full {
    grid-column: 1 / -1;
}
.input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #dfe7f5;
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow:
        inset 0 1px 0 #fff,
        0 1px 0 #ffffff80;
}
.input:focus-within {
    outline: 2px solid var(--ring);
    border-color: var(--brand-400);
}
.input input,
.input textarea {
    border: 0;
    outline: 0;
    width: 100%;
    font: inherit;
    background: transparent;
    resize: vertical;
    min-height: 22px;
}
.send {
    justify-self: end;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    color: white;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-400));
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 90, 79, 0.35);
}

/* Footer strip */
.foot {
    margin: 16px auto 28px;
    max-width: var(--max);
    padding: 0 var(--gap);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 14px;
}
.foot .phone {
    font-weight: 700;
    color: var(--brand-600);
}
.foot .tiny-btn {
    padding: 8px 12px;
    border: 1px solid #e8eef8;
    background: #fff;
    border-radius: 10px;
}

/* ===== Drawer visibility control ===== */
/* Hide drawer on desktop & tablet */
.drawer {
    display: none;
}

/* Overlay (hidden by default); sits beneath drawer */
#drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 59; /* drawer uses 60 */
}

/* Mobile styles */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .services {
        grid-template-columns: repeat(3, 1fr);
    }
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 720px) {
    .menu > ul {
        display: none;
    }
    .hamburger {
        display: inline-flex;
        margin-left: auto;
    }

    /* Drawer – solid background, full-height, scrollable */
    .drawer {
        display: flex;
        position: fixed;
        inset: 0 0 0 30%; /* drawer occupies right ~70% */
        background: #0e2e70; /* SOLID */
        color: #eef5ff;
        transform: translateX(100%); /* off-canvas by default */
        transition: 0.28s transform;
        z-index: 60;
        flex-direction: column;
        gap: 12px;
        padding: 18px;

        height: 100dvh; /* modern viewport height (handles browser UI) */
        max-height: 100dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.28);
    }
    .drawer.open {
        transform: translateX(0);
    }

    /* Overlay appears when drawer opens */
    #drawer-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    .drawer a {
        padding: 10px 8px;
        border-radius: 8px;
    }
    .drawer .sub {
        background: #183e8d;
        border-radius: 12px;
        padding: 10px 10px 6px;
        margin: 6px 0 10px;
        display: none;
    }
    .drawer .item.open + .sub {
        display: block;
    }

    .hero-cards {
        display: none;
    }
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
    .products {
        grid-template-columns: 1fr;
    }
    .form {
        grid-template-columns: 1fr;
    }
    .foot {
        flex-direction: column;
        gap: 10px;
    }
}

/* Brand image sizing */
.brand-logo-img {
    display: block;
    height: 38px;
    width: auto;
}
.brand-text {
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #fff;
}

/* ===== Employee Welcome Kits Section (Aligned Width) ===== */

.employee-kits {
    position: relative;
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid #e8eef8;

    background:
        linear-gradient(
            90deg,
            rgba(10, 42, 106, 0.75) 0%,
            rgba(10, 42, 106, 0.55) 40%,
            rgba(10, 42, 106, 0.15) 65%,
            rgba(10, 42, 106, 0.05) 100%
        ),
        url("employee_kit.png") no-repeat center right / cover;
}

.employee-content {
    max-width: 480px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 28px;
    color: #fff;
}

.employee-content h2 {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.6vw, 30px);
}

.employee-content p {
    margin-bottom: 18px;
    line-height: 1.6;
    color: #e5efff;
}

.emp-btn {
    background: linear-gradient(135deg, var(--accent-600), var(--accent-400));
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 90, 79, 0.35);
    cursor: pointer;
}

.emp-btn:hover {
    transform: translateY(-2px);
}

.tag-mini {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #ffffffcc;
}

/* Mobile */
@media (max-width: 720px) {
    .employee-kits {
        padding: 24px;
        min-height: 320px;
        background-position: center right;
    }

    .employee-content {
        max-width: 100%;
    }
}

/* ===== Carousel Section ===== */

.carousel-title {
    margin-bottom: 24px;
    font-size: clamp(22px, 2.4vw, 28px);
}

/* Scroll Container */
.product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

/* Product Card */
.product-card {
    flex: 0 0 calc((100% - 60px) / 4.5); /* 4.5 cards visible */
    height: 250px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e8eef8;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.card-img {
    height: 230px;
    background: linear-gradient(135deg, #f5f8ff, #e6efff);
    border-radius: 12px;
}

.product-card h3 {
    font-size: 16px;
    margin-top: 14px;
}

/* Build Kit Special Styling */
.build-kit {
    background: linear-gradient(135deg, var(--accent-600), var(--accent-400));
    color: #fff;
}

.build-kit .card-img {
    background: rgba(255, 255, 255, 0.15);
}

.build-kit h3 {
    color: #fff;
}

@media (max-width: 720px) {
    .product-card {
        flex: 0 0 calc((100% - 20px) / 1.5); /* 1.5 visible */
    }
}

/* Flip content to right side */
.right-content {
    margin-left: auto;
    text-align: left;
}

/* Optional: Reverse gradient direction for better readability */
.sustainable-kits {
    background:
        linear-gradient(
            270deg,
            rgba(10, 42, 106, 0.75) 0%,
            rgba(10, 42, 106, 0.55) 40%,
            rgba(10, 42, 106, 0.15) 65%,
            rgba(10, 42, 106, 0.05) 100%
        ),
        url("sustainable_gift.png") no-repeat center left / cover;
}

/* Optional: Reverse gradient direction for better readability */
.stationery-kits {
    background:
        linear-gradient(
            90deg,
            rgba(10, 42, 106, 0.75) 0%,
            rgba(10, 42, 106, 0.55) 40%,
            rgba(10, 42, 106, 0.15) 65%,
            rgba(10, 42, 106, 0.05) 100%
        ),
        url("office_stationary.png") no-repeat center left / cover;
}

/* Optional: Reverse gradient direction for better readability */
.promo-kits {
    background:
        linear-gradient(
            270deg,
            rgba(10, 42, 106, 0.75) 0%,
            rgba(10, 42, 106, 0.55) 40%,
            rgba(10, 42, 106, 0.15) 65%,
            rgba(10, 42, 106, 0.05) 100%
        ),
        url("promo-kits.png") no-repeat center left / cover;
}

/* ===== Footer ===== */

.site-footer {
    background: linear-gradient(135deg, #0e2e70, #1b4f9b);
    color: #eef3ff;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1180px;
    margin: auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.footer-col h4 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #ffffff;
}

.footer-col p {
    color: #d6e3ff;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #d6e3ff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-logo {
    height: 40px;
    margin-bottom: 12px;
}

/* Bottom strip */

.footer-bottom {
    text-align: center;
    padding: 14px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
    color: #c9d8ff;
}

/* Responsive */

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: auto;
    }
}
