﻿/* GLOBAL */
body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #eef3fb;
    color: #333;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER – LIGHT BROWN */
.tb-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 18px 40px;
    background: linear-gradient(90deg, #b08d57, #d2b48c);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* LOGO + REG NUMBER */
.tb-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tb-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.tb-reg-under-logo {
    margin-top: 6px;
    font-size: 13px;
    color: #fff;
}

/* COMPANY NAME */
.tb-header-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tb-company-name {
    margin: 0;
    font-size: 34px;
    letter-spacing: 6px;
    color: #fff;
}

/* MARQUEE */
.tb-slogan-marquee {
    margin-top: 6px;
    overflow: hidden;
    white-space: nowrap;
    padding: 4px 0;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
}

    .tb-slogan-marquee span {
        display: inline-block;
        padding-left: 100%;
        animation: marqueeSlide 10s linear infinite;
    }

/* HEADER MENU – MATCH LIGHT BROWN THEME */
.tb-top-menu {
    margin-top: 10px;
    display: flex;
    gap: 14px;
}

    .tb-top-menu a {
        padding: 8px 14px;
        background: #8c6f3c; /* darker brown button */
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
        transition: 0.25s;
    }

        .tb-top-menu a:hover {
            background: #b08d57;
            transform: translateY(-2px);
        }

/* MAIN LAYOUT */
.tb-main-layout {
    flex: 1;
    display: flex;
    padding: 20px 40px;
}

/* SIDEBAR – BLUE THEME */
.tb-sidebar {
    width: 230px;
    background: linear-gradient(180deg, #0f4c75, #1b6ca8);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.tb-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .tb-menu a {
        display: block;
        padding: 12px 14px;
        margin-bottom: 12px;
        background: #1b6ca8;
        color: #eaf6ff;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: 0.25s;
    }

        .tb-menu a:hover {
            background: #3282b8;
            color: #fff;
            transform: translateX(4px);
        }

/* CONTENT – BLUE CARD STYLE */
.tb-content {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-left: 6px solid #3282b8;
}

    .tb-content h2 {
        color: #0f4c75;
        font-size: 24px;
        margin-top: 0;
    }

    .tb-content p {
        color: #333;
        font-size: 15px;
    }

/* FOOTER – LIGHT BROWN */
.tb-footer {
    background: #b08d57;
    padding: 14px 40px;
    color: #fff;
}

.tb-footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 30px;
}

.tb-footer-line {
    min-width: 220px;
}

/* MARQUEE ANIMATION */
@keyframes marqueeSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}
/* COMPANY PROFILE PAGE */
.cp-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cp-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-left: 6px solid #3282b8;
}

.cp-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: #fff;
    border-left: none;
}

    .cp-title-card h1 {
        margin: 0;
        font-size: 32px;
        letter-spacing: 3px;
    }

    .cp-title-card h2 {
        margin: 8px 0 0 0;
        font-size: 26px;
    }

.cp-established {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.cp-card h3 {
    margin-top: 0;
    font-size: 22px;
    color: #0f4c75;
}

.cp-list {
    margin: 0;
    padding-left: 20px;
}

    .cp-list li {
        margin-bottom: 6px;
        font-size: 15px;
    }

.cp-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .cp-values span {
        background: #3282b8;
        color: #fff;
        padding: 8px 14px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
    }

.cp-final {
    background: #e8f3ff;
    border-left: 6px solid #0f4c75;
}
/* PRODUCT PAGE */
.prod-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.prod-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 25px;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

    .prod-title-card h1 {
        margin: 0;
        font-size: 32px;
        letter-spacing: 2px;
    }

    .prod-title-card p {
        margin-top: 8px;
        font-size: 16px;
        opacity: 0.9;
    }

.prod-section-title {
    font-size: 24px;
    color: #0f4c75;
    margin-bottom: 10px;
    border-left: 6px solid #3282b8;
    padding-left: 12px;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.prod-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    border-top: 6px solid #3282b8;
}

    .prod-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    }

    .prod-card img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .prod-card h3 {
        margin: 0;
        font-size: 18px;
        color: #0f4c75;
    }

    .prod-card p {
        margin-top: 8px;
        font-size: 14px;
        color: #444;
    }
/* ORDER ONLINE PAGE */
.order-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 25px;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

    .order-title-card h1 {
        margin: 0;
        font-size: 32px;
        letter-spacing: 2px;
    }

    .order-title-card p {
        margin-top: 8px;
        font-size: 16px;
        opacity: 0.9;
    }

.order-section-title {
    font-size: 24px;
    color: #0f4c75;
    margin-bottom: 10px;
    border-left: 6px solid #3282b8;
    padding-left: 12px;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.order-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    border-top: 6px solid #3282b8;
}

    .order-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    }

    .order-card img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .order-card h3 {
        margin: 0;
        font-size: 18px;
        color: #0f4c75;
    }

    .order-card p {
        margin-top: 8px;
        font-size: 14px;
        color: #444;
    }

.order-radio {
    margin-top: 10px;
    font-size: 14px;
}

/* ORDER FORM */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-left: 6px solid #3282b8;
}

.order-input {
    padding: 10px;
    border: 1px solid #cbd6e2;
    border-radius: 6px;
    font-size: 14px;
}

    .order-input:focus {
        outline: none;
        border-color: #3282b8;
        box-shadow: 0 0 6px rgba(50,130,184,0.4);
    }

.order-btn {
    margin-top: 10px;
    padding: 12px;
    background: #0f4c75;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

    .order-btn:hover {
        background: #3282b8;
        transform: translateY(-2px);
    }
/* WHAT WE DO PAGE */
.wwd-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wwd-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 25px;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

    .wwd-title-card h1 {
        margin: 0;
        font-size: 32px;
        letter-spacing: 2px;
    }

    .wwd-title-card p {
        margin-top: 8px;
        font-size: 16px;
        opacity: 0.9;
    }

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.wwd-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-left: 6px solid #3282b8;
    transition: 0.3s ease;
}

    .wwd-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    }

    .wwd-card h3 {
        margin-top: 0;
        font-size: 20px;
        color: #0f4c75;
    }

    .wwd-card p {
        font-size: 14px;
        color: #444;
        margin-bottom: 8px;
    }
/* EXPERIENCE PAGE */
.exp-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exp-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 25px;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

    .exp-title-card h1 {
        margin: 0;
        font-size: 32px;
        letter-spacing: 2px;
    }

    .exp-title-card p {
        margin-top: 8px;
        font-size: 16px;
        opacity: 0.9;
    }

.exp-intro-card {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-left: 6px solid #3282b8;
}

    .exp-intro-card p {
        font-size: 15px;
        color: #444;
    }

/* TIMELINE */
.exp-timeline {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 4px solid #3282b8;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exp-item {
    position: relative;
}

.exp-dot {
    width: 16px;
    height: 16px;
    background: #3282b8;
    border-radius: 50%;
    position: absolute;
    left: -32px;
    top: 8px;
    border: 3px solid #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.exp-card {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-left: 6px solid #0f4c75;
    transition: 0.3s ease;
}

    .exp-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    }

    .exp-card h3 {
        margin-top: 0;
        font-size: 20px;
        color: #0f4c75;
    }

    .exp-card p {
        font-size: 14px;
        color: #444;
        margin-bottom: 8px;
    }

.exp-final-card {
    background: #e8f3ff;
    padding: 20px 24px;
    border-radius: 14px;
    border-left: 6px solid #3282b8;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
/* CONTACT US PAGE */
.cu-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cu-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 25px;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

    .cu-title-card h1 {
        margin: 0;
        font-size: 32px;
        letter-spacing: 2px;
    }

    .cu-title-card p {
        margin-top: 8px;
        font-size: 16px;
        opacity: 0.9;
    }

.cu-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.cu-info-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-top: 6px solid #3282b8;
    transition: 0.3s ease;
}

    .cu-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    }

.cu-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.cu-info-card h3 {
    margin: 0;
    font-size: 20px;
    color: #0f4c75;
}

.cu-info-card p {
    font-size: 14px;
    color: #444;
}

.cu-section-title {
    font-size: 24px;
    color: #0f4c75;
    border-left: 6px solid #3282b8;
    padding-left: 12px;
}

.cu-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-left: 6px solid #3282b8;
}

.cu-input {
    padding: 10px;
    border: 1px solid #cbd6e2;
    border-radius: 6px;
    font-size: 14px;
}

    .cu-input:focus {
        outline: none;
        border-color: #3282b8;
        box-shadow: 0 0 6px rgba(50,130,184,0.4);
    }

.cu-btn {
    margin-top: 10px;
    padding: 12px;
    background: #0f4c75;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

    .cu-btn:hover {
        background: #3282b8;
        transform: translateY(-2px);
    }

.cu-map {
    background: #e8f3ff;
    padding: 40px;
    border-radius: 14px;
    text-align: center;
    font-size: 18px;
    color: #0f4c75;
    border-left: 6px solid #3282b8;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
/* WHAT WE DO – PREMIUM DESIGN */
.wwd-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wwd-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 30px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

    .wwd-title-card h1 {
        margin: 0;
        font-size: 34px;
        letter-spacing: 2px;
    }

    .wwd-title-card p {
        margin-top: 10px;
        font-size: 16px;
        opacity: 0.9;
    }

/* GRID */
.wwd-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* SERVICE CARD */
.wwd-service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-top: 6px solid #3282b8;
    transition: 0.3s ease;
}

    .wwd-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 26px rgba(0,0,0,0.20);
    }

/* ICON */
.wwd-icon {
    font-size: 48px;
    margin-bottom: 12px;
    color: #0f4c75;
}

/* HEADINGS */
.wwd-service-card h3 {
    margin: 0;
    font-size: 20px;
    color: #0f4c75;
    margin-bottom: 10px;
}

/* TEXT */
.wwd-service-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
/* WHAT WE DO – EMBOSSED PREMIUM CARDS */
.wwd-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wwd-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 30px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

    .wwd-title-card h1 {
        margin: 0;
        font-size: 34px;
        letter-spacing: 2px;
    }

    .wwd-title-card p {
        margin-top: 10px;
        font-size: 16px;
        opacity: 0.9;
    }

/* GRID */
.wwd-emboss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* EMBOSSED CARD */
.wwd-emboss-card {
    background: #f7faff;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.08), inset -4px -4px 8px rgba(255,255,255,0.9), 0 8px 20px rgba(0,0,0,0.10);
    transition: 0.3s ease;
    border: 1px solid #e3e9f3;
}

    .wwd-emboss-card:hover {
        transform: translateY(-8px);
        box-shadow: inset 2px 2px 6px rgba(0,0,0,0.06), inset -2px -2px 6px rgba(255,255,255,0.95), 0 14px 28px rgba(0,0,0,0.18);
    }

/* ICON */
.wwd-emboss-icon {
    font-size: 50px;
    margin-bottom: 14px;
    color: #0f4c75;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* HEADINGS */
.wwd-emboss-card h3 {
    margin: 0;
    font-size: 20px;
    color: #0f4c75;
    margin-bottom: 12px;
}

/* TEXT */
.wwd-emboss-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
/* EXPERIENCE PAGE – EMBOSSED PREMIUM DESIGN */
.exp-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exp-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 30px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

    .exp-title-card h1 {
        margin: 0;
        font-size: 34px;
        letter-spacing: 2px;
    }

    .exp-title-card p {
        margin-top: 10px;
        font-size: 16px;
        opacity: 0.9;
    }

.exp-intro-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-left: 6px solid #3282b8;
    font-size: 15px;
    color: #444;
}

/* GRID */
.exp-emboss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* EMBOSSED CARD */
.exp-emboss-card {
    background: #f7faff;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.08), inset -4px -4px 8px rgba(255,255,255,0.9), 0 8px 20px rgba(0,0,0,0.10);
    transition: 0.3s ease;
    border: 1px solid #e3e9f3;
}

    .exp-emboss-card:hover {
        transform: translateY(-8px);
        box-shadow: inset 2px 2px 6px rgba(0,0,0,0.06), inset -2px -2px 6px rgba(255,255,255,0.95), 0 14px 28px rgba(0,0,0,0.18);
    }

/* ICON */
.exp-emboss-icon {
    font-size: 50px;
    margin-bottom: 14px;
    color: #0f4c75;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* HEADINGS */
.exp-emboss-card h3 {
    margin: 0;
    font-size: 20px;
    color: #0f4c75;
    margin-bottom: 12px;
}

/* TEXT */
.exp-emboss-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.exp-final-card {
    background: #e8f3ff;
    padding: 24px;
    border-radius: 16px;
    border-left: 6px solid #3282b8;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    font-size: 15px;
    color: #444;
}
/* COMPANY PROFILE – EMBOSSED PREMIUM DESIGN */
.cp-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cp-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 30px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

    .cp-title-card h1 {
        margin: 0;
        font-size: 34px;
        letter-spacing: 2px;
    }

    .cp-title-card h2 {
        margin: 8px 0 0 0;
        font-size: 26px;
    }

.cp-established {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.9;
}

/* EMBOSSED CARD */
.cp-emboss-card {
    background: #f7faff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.08), inset -4px -4px 8px rgba(255,255,255,0.9), 0 8px 20px rgba(0,0,0,0.10);
    border: 1px solid #e3e9f3;
    transition: 0.3s ease;
}

    .cp-emboss-card:hover {
        transform: translateY(-8px);
        box-shadow: inset 2px 2px 6px rgba(0,0,0,0.06), inset -2px -2px 6px rgba(255,255,255,0.95), 0 14px 28px rgba(0,0,0,0.18);
    }

    .cp-emboss-card h3 {
        margin-top: 0;
        font-size: 20px;
        color: #0f4c75;
        margin-bottom: 12px;
    }

.cp-list {
    margin: 0;
    padding-left: 20px;
}

    .cp-list li {
        margin-bottom: 6px;
        font-size: 15px;
    }

.cp-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .cp-values span {
        background: #3282b8;
        color: #fff;
        padding: 8px 14px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
    }

.cp-final {
    background: #e8f3ff;
    border-left: 6px solid #3282b8;
}
/* ORDER ONLINE – EMBOSSED PREMIUM DESIGN */
.order-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-title-card {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 30px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.order-section-title {
    font-size: 24px;
    color: #0f4c75;
    border-left: 6px solid #3282b8;
    padding-left: 12px;
}

/* PRODUCT CARDS */
.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.order-card {
    background: #f7faff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.08), inset -4px -4px 8px rgba(255,255,255,0.9), 0 8px 20px rgba(0,0,0,0.10);
    border: 1px solid #e3e9f3;
    transition: 0.3s ease;
}

    .order-card:hover {
        transform: translateY(-8px);
        box-shadow: inset 2px 2px 6px rgba(0,0,0,0.06), inset -2px -2px 6px rgba(255,255,255,0.95), 0 14px 28px rgba(0,0,0,0.18);
    }

    .order-card img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .order-card h3 {
        margin: 0;
        font-size: 18px;
        color: #0f4c75;
    }

/* FORM */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f7faff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.08), inset -4px -4px 8px rgba(255,255,255,0.9), 0 8px 20px rgba(0,0,0,0.10);
    border: 1px solid #e3e9f3;
}

.order-input {
    padding: 10px;
    border: 1px solid #cbd6e2;
    border-radius: 6px;
    font-size: 14px;
}

.order-btn {
    margin-top: 10px;
    padding: 12px;
    background: #0f4c75;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

    .order-btn:hover {
        background: #3282b8;
        transform: translateY(-2px);
    }
