/* =========================================================
   BHARAT ITC - HEADER
   ========================================================= */

:root {
    --bitc-blue: #063b91;
    --bitc-dark-blue: #052d6f;
    --bitc-yellow: #f5c400;
    --bitc-red: #d71920;
    --bitc-text: #172033;
    --bitc-muted: #667085;
    --bitc-white: #ffffff;
    --bitc-border: #e7ebf2;
}


/* RESET */

.bitc-header,
.bitc-header * {
    box-sizing: border-box;
}

.bitc-header {
    font-family: "Poppins", Arial, sans-serif;
    background: var(--bitc-white);
    color: var(--bitc-text);
    position: relative;
    z-index: 999;
}

.bitc-header a {
    text-decoration: none;
    color: inherit;
}


/* CONTAINER */

.bitc-container {
    width: min(1320px, 92%);
    margin: 0 auto;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.bitc-topbar {
    background: var(--bitc-dark-blue);
    color: #fff;
    font-size: 13px;
}

.bitc-topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bitc-top-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.bitc-top-info a,
.bitc-top-right span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .25s ease;
}

.bitc-top-info a:hover {
    color: var(--bitc-yellow);
}

.bitc-top-info i,
.bitc-top-right i {
    color: var(--bitc-yellow);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.bitc-navbar {
    background: #fff;
    border-bottom: 1px solid var(--bitc-border);
}

.bitc-navbar-inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 35px;
}


/* LOGO */

.bitc-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bitc-logo img {
    width: 390px;
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.bitc-nav {
    margin-left: auto;
}

.bitc-nav > ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.bitc-nav li {
    position: relative;
}

.bitc-nav > ul > li > a {
    min-height: 100px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 14px;
    font-weight: 600;

    color: #26364d;

    transition: .25s ease;
}

.bitc-nav > ul > li > a:hover,
.bitc-nav > ul > li > a.active {
    color: var(--bitc-blue);
}

.bitc-nav > ul > li > a.active {
    position: relative;
}

.bitc-nav > ul > li > a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background: var(--bitc-yellow);
}

.bitc-nav i {
    font-size: 10px;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.bitc-submenu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;

    width: 220px;

    padding: 10px 0;
    margin: 0;

    list-style: none;

    background: #fff;

    border-top: 3px solid var(--bitc-yellow);

    box-shadow: 0 15px 40px rgba(0, 35, 90, .14);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: .25s ease;
}

.bitc-dropdown:hover > .bitc-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bitc-submenu li a {
    display: flex;
    padding: 11px 18px;

    font-size: 13px;
    font-weight: 500;

    color: #344054;

    transition: .2s ease;
}

.bitc-submenu li a:hover {
    background: #f4f7fc;
    color: var(--bitc-blue);
    padding-left: 23px;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.bitc-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 19px;

    background: var(--bitc-yellow);
    color: #10234d !important;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: .25s ease;
}

.bitc-header-btn:hover {
    background: var(--bitc-blue);
    color: #fff !important;
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.bitc-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    border: 1px solid var(--bitc-border);
    background: #fff;

    border-radius: 5px;

    cursor: pointer;
}

.bitc-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--bitc-blue);

    transition: .25s ease;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.bitc-mobile-menu {
    position: fixed;

    top: 0;
    right: -360px;

    width: min(340px, 88vw);
    height: 100vh;

    background: #fff;

    padding: 25px;

    overflow-y: auto;

    box-shadow: -10px 0 40px rgba(0,0,0,.15);

    transition: .35s ease;

    z-index: 1002;
}

.bitc-mobile-menu.active {
    right: 0;
}

.bitc-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--bitc-border);
}

.bitc-mobile-head span {
    font-size: 20px;
    font-weight: 700;
    color: var(--bitc-blue);
}

.bitc-mobile-close {
    width: 38px;
    height: 38px;

    border: 0;
    background: #f3f5f8;

    border-radius: 50%;

    cursor: pointer;

    color: var(--bitc-blue);
}

.bitc-mobile-menu nav ul {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.bitc-mobile-menu nav li {
    border-bottom: 1px solid #eef1f5;
}

.bitc-mobile-menu nav a {
    display: block;

    padding: 13px 4px;

    color: #25354b;

    font-size: 14px;
    font-weight: 600;
}

.bitc-mobile-menu nav a:hover {
    color: var(--bitc-blue);
}


/* MOBILE CONTACT */

.bitc-mobile-contact {
    display: grid;
    gap: 10px;

    margin-top: 15px;
    padding: 15px;

    background: #f6f8fc;

    border-radius: 7px;
}

.bitc-mobile-contact a {
    display: flex;
    gap: 9px;

    font-size: 13px;
    color: var(--bitc-blue);
}


/* MOBILE CTA */

.bitc-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 18px;

    padding: 13px;

    background: var(--bitc-yellow);

    color: #10234d !important;

    font-size: 14px;
    font-weight: 700;

    border-radius: 5px;
}


/* OVERLAY */

.bitc-overlay {
    position: fixed;

    inset: 0;

    background: rgba(3, 20, 48, .55);

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    z-index: 1001;
}

.bitc-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

    .bitc-logo img {
        width: 330px;
    }

    .bitc-navbar-inner {
        gap: 20px;
    }

    .bitc-nav > ul > li > a {
        padding: 0 10px;
        font-size: 13px;
    }

}


@media (max-width: 991px) {

    .bitc-topbar-right {
        display: none;
    }

    .bitc-topbar-inner {
        justify-content: center;
    }

    .bitc-navbar-inner {
        min-height: 82px;
    }

    .bitc-logo img {
        width: 320px;
    }

    .bitc-nav,
    .bitc-header-btn {
        display: none;
    }

    .bitc-menu-toggle {
        display: block;
        margin-left: auto;
    }

}


@media (max-width: 575px) {

    .bitc-topbar {
        font-size: 11px;
    }

    .bitc-top-info {
        gap: 12px;
    }

    .bitc-top-info span {
        display: none;
    }

    .bitc-navbar-inner {
        min-height: 70px;
    }

    .bitc-logo img {
        width: 270px;
    }

}