/* =========================================================
   ANUBHUTI HEADER
========================================================= */

:root {

    --an-maroon: #7a1f2b;
    --an-maroon-dark: #5b151f;

    --an-saffron: #e0932c;

    --an-cream: #fbf3e7;

    --an-light: #fffaf4;

    --an-text: #241611;

    --an-border: rgba(122, 31, 43, 0.10);

}


/* =========================================================
   HEADER
========================================================= */

.anubhuti-header {

    width: 100%;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 9999;

    background: #fff;

}


/* =========================================================
   TOP CONTACT BAR
========================================================= */

.anubhuti-topbar {

    width: 100%;

    height: 34px;

    background: var(--an-maroon);

    color: #fff;

}


.anubhuti-topbar-inner {

    width: min(1200px, 92%);

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.topbar-left,
.topbar-right {

    display: flex;

    align-items: center;

    gap: 18px;

}


.topbar-item {

    display: flex;

    align-items: center;

    gap: 7px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 400;

}


.topbar-item i {

    color: #f2b558;

    font-size: 11px;

}


.topbar-item a {

    color: #fff;

    text-decoration: none;

    transition: 0.25s ease;

}


.topbar-item a:hover {

    color: #f2b558;

}


.topbar-divider {

    width: 1px;

    height: 14px;

    background: rgba(255,255,255,0.25);

}


.topbar-location {

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    opacity: 0.85;

}


/* =========================================================
   MAIN NAV
========================================================= */

.anubhuti-nav {

    width: 100%;

    height: 78px;

    background: var(--an-cream);

    border-bottom: 1px solid var(--an-border);

    transition: 0.3s ease;

}


.anubhuti-nav-inner {

    width: min(1200px, 92%);

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

}


/* =========================================================
   LOGO
========================================================= */

.anubhuti-logo {

    width: 170px;

    height: 100%;

    display: flex;

    align-items: center;

    flex-shrink: 0;

    text-decoration: none;

}


.anubhuti-logo img {

    width: 130px;

    max-height: 68px;

    height: auto;

    display: block;

    object-fit: contain;

}


/* =========================================================
   MENU
========================================================= */

.anubhuti-menu {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 8px;

}


.anubhuti-link {

    position: relative;

    padding: 10px 15px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    color: var(--an-text);

    background: transparent;

    border: 0;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 500;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    cursor: pointer;

    transition: 0.25s ease;

}


.anubhuti-link::after {

    content: "";

    position: absolute;

    bottom: 1px;

    left: 50%;

    width: 0;

    height: 3px;

    border-radius: 20px;

    background: var(--an-saffron);

    transform: translateX(-50%);

    transition: 0.3s ease;

}


.anubhuti-link:hover {

    color: var(--an-maroon);

}


.anubhuti-link:hover::after,
.anubhuti-link.active::after {

    width: 22px;

}


.anubhuti-link.active {

    color: var(--an-maroon);

}


/* =========================================================
   DROPDOWN
========================================================= */

.anubhuti-dropdown {

    position: relative;

}


.anubhuti-dropdown-btn {

    font-family: "Poppins", sans-serif;

}


.anubhuti-dropdown-btn i {

    font-size: 9px;

    transition: transform 0.3s ease;

}


.anubhuti-dropdown:hover
.anubhuti-dropdown-btn i {

    transform: rotate(180deg);

}


.anubhuti-dropdown-menu {

    position: absolute;

    top: calc(100% + 12px);

    left: 50%;

    width: 240px;

    padding: 10px;

    background: rgba(255, 250, 244, 0.97);

    backdrop-filter: blur(15px);

    border: 1px solid var(--an-border);

    border-radius: 15px;

    box-shadow:
        0 18px 40px rgba(50, 25, 15, 0.12);

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, 8px);

    transition: 0.25s ease;

}


.anubhuti-dropdown:hover
.anubhuti-dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);

}


.dropdown-heading {

    padding: 7px 10px 9px;

    color: var(--an-saffron);

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;

    border-bottom: 1px solid var(--an-border);

}


.anubhuti-dropdown-menu a {

    display: block;

    padding: 10px;

    margin-top: 3px;

    color: var(--an-text);

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;

    border-radius: 8px;

    transition: 0.25s ease;

}


.anubhuti-dropdown-menu a:hover {

    color: var(--an-maroon);

    background: #f8e8d8;

    padding-left: 14px;

}


/* =========================================================
   GET IN TOUCH
========================================================= */

.anubhuti-enquiry {

    height: 44px;

    margin-left: 28px;

    padding:  2px  12px !important;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    background: var(--an-maroon);

    border-radius: 50px;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(122,31,43,0.16);

    transition: 0.3s ease;

}


.anubhuti-enquiry:hover {

    background: var(--an-maroon-dark);

    transform: translateY(-2px);

}


.anubhuti-enquiry i {

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #fff5e8;

    color: var(--an-maroon);

    font-size: 11px;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.anubhuti-mobile-btn {

    display: none;

    width: 44px;

    height: 44px;

    margin-left: auto;

    border: 0;

    border-radius: 12px;

    background: var(--an-maroon);

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.anubhuti-mobile-btn span {

    width: 19px;

    height: 2px;

    background: #fff;

    border-radius: 10px;

    transition: 0.3s ease;

}


/* X */

.anubhuti-mobile-btn.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.anubhuti-mobile-btn.active span:nth-child(2) {

    opacity: 0;

}


.anubhuti-mobile-btn.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .anubhuti-nav-inner {

        width: 94%;

    }


    .anubhuti-logo {

        width: 145px;

    }


    .anubhuti-logo img {

        width: 115px;

    }


    .anubhuti-link {

        padding: 10px 9px;

        font-size: 14px;

    }


    .anubhuti-enquiry {

        margin-left: 12px;

        padding-left: 14px;

        font-size: 11px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .anubhuti-topbar {

        height: 32px;

    }


    .anubhuti-topbar-inner {

        width: 92%;

    }


    /* .topbar-left {

        display: none;

    } */


    .topbar-right {

        width: 100%;

        justify-content: flex-end;

    }


    .topbar-item {

        font-size: 10px;

    }


    .topbar-location,
    .topbar-divider {

        display: none;

    }


    /* MAIN NAV */

    .anubhuti-nav {

        height: 68px;

    }


    .anubhuti-nav-inner {

        width: 92%;

    }


    /* LOGO */

    .anubhuti-logo {

        width: 120px;

    }


    .anubhuti-logo img {

        width: 108px;

        max-height: 58px;

    }


    /* HIDE DESKTOP MENU */

    .anubhuti-menu {

        position: absolute;

        top: calc(100% + 8px);

        left: 4%;

        width: 92%;

        padding: 10px;

        margin: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 3px;

        background: rgba(251,243,231,0.82);

        backdrop-filter: blur(18px);

        -webkit-backdrop-filter: blur(18px);

        border: 1px solid rgba(255,255,255,0.65);

        border-radius: 18px;

        box-shadow:
            0 18px 40px rgba(50,25,15,0.12);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: 0.3s ease;

    }


    .anubhuti-menu.open {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .anubhuti-link {

        width: 100%;

        min-height: 48px;

        padding: 12px 14px;

        justify-content: space-between;

        border-radius: 10px;

        font-size: 16px;

    }


    .anubhuti-link::after {

        display: none;

    }


    .anubhuti-link:hover {

        background: rgba(255,255,255,0.45);

    }


    /* MOBILE DROPDOWN */

    .anubhuti-dropdown {

        width: 100%;

    }


    .anubhuti-dropdown-btn {

        width: 100%;

        justify-content: space-between;

    }


    .anubhuti-dropdown-menu {

        position: static;

        width: 100%;

        margin-top: 3px;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        background: rgba(255,255,255,0.28);

    }


    .anubhuti-dropdown.mobile-open
    .anubhuti-dropdown-menu {

        display: block;

    }


    .anubhuti-dropdown:hover
    .anubhuti-dropdown-menu {

        transform: none;

    }


    /* CTA HIDE */

    .anubhuti-enquiry {

        display: none;

    }


    /* MOBILE BUTTON */

    .anubhuti-mobile-btn {

        display: flex;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .anubhuti-topbar-inner {

        width: 94%;

    }

  


    .anubhuti-logo {

        width: 110px;

    }


    .anubhuti-logo img {

        width: 100px;

    }


    .anubhuti-mobile-btn {

        width: 40px;

        height: 40px;

    }

}