/* =====================================
        GLOBAL HEADER
===================================== */

header {
    width: 100%;
    position: relative;
    z-index: 999;
}


/* =====================================
        TOP HEADER BAND
===================================== */

.top-band {
    background: var(--tts-buttton-bg);
    padding: 8px 0;
}

.tp-band-text p {
    margin: 0;
    color: var(--tts-buttton-txt);
    font-size: 14px;
    font-weight: 500;
}

.social-icon {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.social-icon a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    color: var(--tts-buttton-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.social-icon a i {
    font-size: 14px;
}

.social-icon a:hover {
    background: var(--topbar-bg);
    color: var(--white);
}


/* =====================================
        TOP NAVBAR (LOGO + CONTACT)
===================================== */

.top-navbar {
    background:var(--header-bg);
    border-bottom: 1px solid var(--topbar-txt-color);
    padding: 15px 0;
}

.logo-img img {
    max-width: 180px;
    max-height: 55px;
}

.widget-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-icon i {
    color: var(--tts-buttton-bg);
    font-size: 16px;
}

.widget-content {
    line-height: 1.3;
}

.widget-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--header-txt-color);
}

.widget-desc,
.widget_desc {
    font-size: 13px;
    margin: 0;
    color: var(--header-txt-color);
}

.widget-desc a,
.widget_desc a {
    text-decoration: none;
    color: var(--header-txt-color);
}

.widget-desc a:hover,
.widget_desc a:hover {
    color: var(--tts-buttton-bg);
}


/* =====================================
        SECOND NAVBAR
===================================== */

.second-navbar {
    background: var(--header-bg);
    border-top: 1px solid var(--topbar-txt-color);
}

.second-navbar .navbar {
    padding: 0;
}

.second-navbar .navbar-nav {
    align-items: center;
}

.second-navbar .nav-item {
    margin-right: 18px;
}

.second-navbar .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--header-txt-color);
    padding: 18px 0;
    transition: .3s;
    position: relative;
}

.second-navbar .nav-link:hover {
    color: var(--tts-buttton-bg);
}

.second-navbar .nav-link.active {
    color: var(--tts-buttton-bg);
}


/* =====================================
        NAV HOVER LINE
===================================== */

.custom-nav .nav-link:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: var(--tts-buttton-bg);
    transform: scaleX(0);
    transition: .3s;
}

.custom-nav .nav-link:hover:before {
    transform: scaleX(1);
}


/* =====================================
        LOGIN BUTTON
===================================== */

.cust-login {
    background:var(--tts-buttton-bg);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
}

.cust-login a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

.cust-login:hover {
    background:var(--tts-buttton-bg1);
}


/* ====================================================
   DROPDOWN BASE
======================================================= */
.second-navbar .navbar-nav .dropdown-menu {
    background: var(--white);
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 1000;
    min-width: 260px;
}

@media (min-width: 992px) {
    .second-navbar .navbar-nav .nav-item:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
    }
}

/* ====================================================
   MEGA MENU
======================================================= */
.second-navbar .nav-item.mega-dropdown {
    position: static;
}

.second-navbar .mega-menu {
    width: 100%;
    left: 0%;
    padding: 0px;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
}

.second-navbar .mega-menu li {
    text-align: left;
    float: left;
    width: 25%;
    position: relative;
}

.second-navbar .mega-menu li.bronwco-ad-bt {
    width: 100%;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--tts-buttton-bg) 0%, var(--topbar-bg) 100%);
    color: var(--white);
    font-weight: 600;
}

.second-navbar .mega-menu a {
    width: 100%;
    font-size: 14px;
    border-bottom: 1px solid var(--topbar-txt-color);
    text-transform: capitalize;
    color: var(--header-txt-color);
    padding: 8px 20px;
    text-decoration: none;
    transition: 0.25s ease;
}

.second-navbar .mega-menu a:hover {
    background:var(--tts-buttton-bg);
    color:var(--white);
}

.second-navbar .mega-menu li .dropdown-menu li {
    width: 100%;
}

.second-navbar .navbar-nav .dropdown-menu li:hover>.dropdown-menu.thirleveradd {
    left: auto;
    right: 100%;
}

/* ====================================================
   MULTI-LEVEL DROPDOWN
======================================================= */
.second-navbar .dropdown-menu .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: 0.25s ease;
    border-top: 3px solid var(--tts-buttton-bg);
    min-width: 200px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.second-navbar .dropdown-menu li:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: translateX(0);
    max-height: 250px;
    overflow-x: auto;
}

.second-navbar .dropdown-menu li a {
    padding: 8px 15px;
    color: var(--header-txt-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.second-navbar .dropdown-menu li a:hover {
    color: var(--white);
}


/* =====================================
        RESPONSIVE
===================================== */

@media (max-width:992px) {

    .display-responsivemd {
        display: none;
    }

    .second-navbar .nav-link {
        padding: 10px 0;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler i {
        font-size: 22px;
    }

}

@media (max-width:768px) {

    .second-navbar {
        padding: 10px 0;
    }

    .navbar-nav {
        margin-top: 10px;
    }

    .cust-login {
        margin-top: 10px;
    }

}

@media (max-width:576px) {

    .logo-img img {
        margin: auto;
        display: block;
    }

    .tp-band-text p {
        text-align: center;
    }

    .social-icon {
        display: none;
    }

}