/* ===== TOP BAR ===== */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}


.top-bar {
    background: #000; 
    padding: 5px;
    color: #fff;
 }

.logo {
    height: 70px;
    border-radius: 10px;
}

.top-info {
    display: flex;
    gap: 20px;
    color: #ddd;
    font-weight: 400;
}

.top-info i {
    color: #0dcaf0;
    margin-right: 5px;
}

/* CONTACT */
.contact-box {
    display: flex;
    align-items: center;
    justify-content:end;
    gap: 25px;
}

.contact-lines {
    display: flex;
    flex-direction: column;
    /* text-align: right; */
}

.phone {
    font-weight: 700;
    text-decoration: none;
    font-size: 20px;
}

.whatsapp { color: #25D366; }
.call { color: #ff4d4d; }
.email { color: #ccc; }

.trusted {
    height: 70px;
}

/* ===== NAV BAR ===== */

/* MENU UL FIX */
.nav-bar {
    background: #2e2d2d; /* carbon black */
    padding: 5px 0;
}
.menu {
    display: flex;
    justify-content: left;
    align-items:center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu li {
    position: relative;
}

.menu li a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
}

.menu li a:hover {
    color: #0dcaf0;
}

/* ===== MEGA MENU ===== */
.mega-parent {
    position: relative;
}

.mega-parent .mega-menu {
    position: absolute;
    top: 100%;
    left: 400%;
    transform: translateX(-50%);
    width: 1240px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    display: none;
    z-index: 99999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    /* color: red; */
}

/* SHOW ON HOVER */
.mega-parent:hover .mega-menu {
    display: block;
}

.mega-menu__row {
    display: flex;
    gap: 20px;
    text-align: left;
}

.mega-menu__column {
    width: 25%;
}

.mega-menu__column h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0c0d0e;
    margin-bottom: 10px;
}

.sub-menu--mega {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sub-menu--mega li {
    margin-bottom: 10px;
}

.sub-menu--mega li a {
    color: #444;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.sub-menu--mega li a:hover {
    color: #00796b;
}

/* .mm_va {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: #00796b;
    text-decoration: underline;
    font-size: 15px;
  
} */

.mega-menu__bottom {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.has-dropdown::after {
    content: " ▼";
    font-size: 12px;
}
/* .mega-btn {
    background: #d8e4e6; 
    padding: 4px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 300; 
    text-decoration: none; 
    color: #000; 
} */

.more{
    font-size: 15px; 
    color: #03584e;
    text-decoration: underline;
}

/* responsive hide on mobile */
@media (max-width: 992px) {
    .mega-parent .mega-menu {
        display: none !important;
    }
}

/*  Search Wrap and Button  */
.search-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;  /* search box size */
    height: 45px;
}

.search-bar {
    display: flex;
    width: 100%;
}

.search-bar input {
    width: 100%;
    padding: 10px 10px;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 8px 0 0 8px;
    vertical-align: middle;
}

.search-bar button {
    background: #03584e;
    color: white;
    border: none;
    padding: 0 18px;
    font-size: 18px;
    border-radius: 0 8px 8px 0;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}


/* ----------  Search Bar & Categories ----------- */ 
.search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 0px;   /* like screenshot */
    box-shadow: 0 15px 40px rgba(242, 158, 158, 0.18);
    z-index: 999999;
    display: none;
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid #ddd;
}

.search-item {
    padding: 14px 14px;
    cursor: pointer;
    border-bottom: 1px solid #eee;

    font-size: 16px;   
    font-weight: 400;
    color: #000;

    line-height: 1.4;
    white-space: normal;      /* IMPORTANT */
    word-break: break-word;   /* IMPORTANT */
}

.search-item:hover {
    background: #f4f4f4;
}

.search-item strong {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.search-item span {
    display: block;
    margin-top: 6px;
    font-size: 22px;
    font-weight: 400;
    color: #000;
}


/* =========================================
   MOBILE HEADER – UPDATED CONTACT DISPLAY
   (NO DESKTOP CHANGE)
========================================= */
@media (max-width: 768px) {

    /* Slightly increase padding */
    .top-bar {
        padding: 10px 8px;
    }

    /* Keep logo and company name in one row */
    .top-bar .row {
        align-items: center;
    }

    /* Logo slightly smaller */
    .logo {
        height: 50px;
    }

    /* Company name beside logo in single line */
    .top-bar h3 {
        font-size: 20px;
        margin: 0;
        white-space: nowrap;
    }

    /* Ensure logo + name stay in same line */
    .top-bar .col-6.col-md-2 {
        flex: 0 0 auto;
        width: auto;
    }

    .top-bar .col-6.col-md-5 {
        flex: 1;
    }

    /* Location readable */
    .top-info {
        gap: 0px;
        font-size: 15px;
        flex-wrap: wrap;
    }

    .top-info span {
        font-size: 15px;
    }

    /* ===== HIDE GST (2nd span inside top-info) ===== */
    .top-info span:nth-child(2) {
        display: none;
    }

    /* ===== ADD WHATSAPP NUMBER AFTER LOCATION ===== */
 /*   .top-info::after {
        content: " \f232  9274260228";
        font-family: "Font Awesome 6 Brands";
        font-weight: 400;
        color: #25D366;
        font-size: 16px;
    }
*/
    .top-info::after {
        content: " \f095  9274260228";   /* Phone icon */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;               /* Solid icon */
        color: #ff4d4d;                     /* Red color */
        font-size: 16px;
    }
    /* Contact numbers bigger */
    .phone {
        font-size: 16px;
    }

    /* ===== HIDE CALL NUMBER ===== */
    .phone.call {
        display: none !important;
    }
    .phone.whatsapp {
        display: none !important;
    }
    /* Hide Trusted Image */
    .trusted {
        display: none !important;
    }

    /* Hide Enquiry Image */
    .contact-box img.logo:last-child {
        display: none !important;
    }

    /* Reduce gap */
    .contact-box {
        gap: 15px;
    }

    .menu {
        gap: 6px;
    }
  .menu li a {
    font-size: 15px;
}
}