/* =========================
   RESET & BASE (HARD RESET)
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
}

/* remove theme bullets + spacing */
header ul,
header li {
    list-style: none ;
    margin: 0 ;
    padding: 0;
}

/* =========================
   HEADER
========================= */

header {
    clear: both;
}

header {
    background: #ffffff;
    
    position: relative;
    z-index: 1200;
    height: 65px;
    overflow: visible;
}

/* =========================
   NAV WRAPPER
========================= */
.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    display: block;
}

/* =========================
   MAIN NAV
========================= */
.main-nav {
    display: flex ;
    align-items: center;
   
    height: 100%;
}

.main-nav > li {
    position: relative;
    height: 100%;
}

.main-nav > li > a {
    display: flex;
    align-items: center;
    height: 65px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

/* =========================
   CONTACT BUTTON
========================= */
.contact-btn {
    background: #21ad66;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* =========================
   DROPDOWN
========================= */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
    display: block;
    padding: 10px 0;

    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .2s ease;
    z-index: 9999;
}

/* JS will toggle this */
.dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 15px;
    color: #111;
    text-decoration: none;
}

.dropdown a:hover {
    background: #f3f4f6;
}

/* =========================
   MEGA MENU
========================= */
#megaMenu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #ffffff;
   
    box-shadow: 0 12px 35px rgba(0,0,0,.15);
    display: none;
    z-index: 1300;
}

/* JS controlled */
#megaMenu.show {
    display: flex;
}
.mega-right {
    width: 25%;
    min-width: 260px;
    padding-left: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    align-content: start;
}

/* ------ Mega Layout ------ */
.mega-left {
    width: 25%;
   
}

.cat-item {
    padding: 14px 12px;
    margin-bottom: 8px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.cat-item.active,
.cat-item:hover {
    background: #e5f6ee;
    color: #009f63;
}

.mega-middle {
    width: 40%;
  
}

.panel-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.panel-list a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

.panel-list a:hover {
    color: #009f63;
}

.mega-right {
    width: 20%;
   
    display: grid;
   

}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {

    .nav-wrapper {
        padding: 0 20px;
    }

  
}


