/* ================= HEADER ================= */

header {
    background-color: #fff;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ================= LOGO ================= */

header img {
    width: 150px;
    height: auto;
}

/* ================= NAV ================= */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-left: 16px;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 14px;
    margin: 0;
    padding: 0;
}

nav ul.left-menu li a,
nav ul.right-menu li a {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #3d3d41;
    padding: 6px 8px;
    text-decoration: none;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #0078d7;
}

/* ================= RIGHT MENU ================= */

nav ul.right-menu {
    gap: 12px;
    transform: translateX(-100px);
}

/* ================= CTA ================= */

.cta-button {
    background: green;
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
}

.cta-button:hover {
    background: #074e07;
}

/* ================= MEGA MENU ================= */

.mega-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 28px 48px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    header {
        height: 52px;
        padding: 6px 12px;
    }

    header img {
        width: 120px;
    }

    nav ul {
        gap: 8px;
    }

    nav ul.left-menu li a,
    nav ul.right-menu li a {
        font-size: 12px;
        padding: 4px 6px;
    }

    .cta-button {
        font-size: 12px;
        padding: 5px 10px;
    }
}


/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* 👈 single column */
    gap: 25px;
}

.product-card {
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    transition: 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* SOLUTIONS */
.solutions-container {
    display: flex;
    gap: 60px;
}

.solution-group p {
    font-size: 18px;
    font-weight: bold;
}

.solutions-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.solutions-list li {
    padding: 8px 0;
    font-size: 16px;
    cursor: pointer;
}

.solutions-list li:hover {
    color: #0078d7;
}

/* SERVICES */
.list {
    list-style: none;
    padding: 0;
}

.list li {
    margin-bottom: 15px;
}

.toggle-header {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.submenu {
    display: none;
    margin-top: 8px;
    padding-left: 10px;
}

.submenu a {
    display: block;
    padding: 6px 0;
    color: #333;
    text-decoration: none;
}

.submenu a:hover {
    color: #0078d7;
}

.product-card-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.product-image {
    width: 140px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.product-text {
    flex: 1;
}

.product-text h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: bold;
}

.product-text p {
    margin: 8px 0;
    font-size: 15px;
}

.product-text a {
    color: #0078d7;
    text-decoration: none;
}

.product-text a:hover {
    text-decoration: underline;
}