:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d75e12e *//* =========================================================
   NIHARIKA BHAWAN
   HEADER — LARGE LEFT LOGO
========================================================= */

.nb-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99999;

    width: 100%;

    background: rgba(255, 253, 249, 0.98);

    border-bottom: 1px solid #e6ddd1;

    box-sizing: border-box;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* =========================================================
   HEADER INNER
========================================================= */

.nb-header-inner {
    width: 100%;
    min-height: 96px;

    margin: 0;
    padding: 7px 24px 7px 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
}


/* =========================================================
   LOGO — FAR LEFT
========================================================= */

.nb-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    width: auto;
    height: 100%;

    margin: 0;
    padding: 0;

    text-decoration: none;
}


.nb-logo img {
    display: block;

    width: 350px;
    height: auto;

    max-height: 82px;

    margin: 0;
    padding: 0;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nb-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;

    margin-left: auto;
}


.nb-nav > a {
    position: relative;

    display: inline-block;

    padding: 8px 0;

    color: #44382d;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;

    text-decoration: none;
    white-space: nowrap;

    transition: color 0.25s ease;
}


/* =========================================================
   NAV UNDERLINE
========================================================= */

.nb-nav > a:not(.nb-nav-button)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 1px;

    width: 0;
    height: 1px;

    background: #9a7650;

    transition: width 0.25s ease;
}


.nb-nav > a:not(.nb-nav-button):hover {
    color: #8a6848;
}


.nb-nav > a:not(.nb-nav-button):hover::after {
    width: 100%;
}


/* =========================================================
   ENQUIRE BUTTON
========================================================= */

.nb-nav-button {
    padding: 12px 21px !important;

    background: #624832;

    border-radius: 7px;

    color: #ffffff !important;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.nb-nav-button:hover {
    background: #463326;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.nb-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    margin: 0;
    padding: 8px;

    background: transparent;

    border: 1px solid #d8cbbb;
    border-radius: 8px;

    cursor: pointer;

    box-sizing: border-box;
}


.nb-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #624832;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .nb-header-inner {
        padding-left: 6px;
        padding-right: 20px;
    }


    .nb-logo img {
        width: 300px;
        max-height: 74px;
    }


    .nb-nav {
        gap: 20px;
    }


    .nb-nav > a {
        font-size: 13px;
    }

}


/* =========================================================
   TABLET / MOBILE MENU
========================================================= */

@media (max-width: 900px) {

    .nb-header-inner {
        min-height: 82px;

        padding: 6px 16px 6px 5px;
    }


    /* LARGE LOGO */

    .nb-logo img {
        width: 270px;
        max-height: 68px;
    }


    /* HAMBURGER */

    .nb-menu-button {
        display: block;

        flex-shrink: 0;
    }


    /* HIDE DESKTOP NAV */

    .nb-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        width: 100%;

        margin: 0;
        padding: 10px 18px 20px;

        background: #fffdf9;

        border-bottom: 1px solid #e6ddd1;

        box-shadow: 0 14px 30px rgba(50, 40, 30, 0.08);

        box-sizing: border-box;
    }


    /* OPEN MOBILE MENU */

    .nb-nav.nb-menu-open {
        display: flex;
    }


    /* MOBILE LINKS */

    .nb-nav > a {
        display: block;

        width: 100%;

        padding: 14px 5px;

        border-bottom: 1px solid #eee7de;

        font-size: 15px;

        box-sizing: border-box;
    }


    .nb-nav > a:not(.nb-nav-button)::after {
        display: none;
    }


    /* MOBILE ENQUIRE */

    .nb-nav-button {
        margin-top: 12px;

        padding: 14px 18px !important;

        text-align: center;

        border-bottom: none !important;
    }


    /* =====================================================
       HAMBURGER → X
    ===================================================== */

    .nb-menu-button.nb-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }


    .nb-menu-button.nb-active span:nth-child(2) {
        opacity: 0;
    }


    .nb-menu-button.nb-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .nb-header-inner {
        min-height: 72px;

        padding: 5px 12px 5px 3px;
    }


    .nb-logo img {
        width: 225px;
        max-height: 58px;
    }


    .nb-menu-button {
        width: 42px;
        height: 42px;

        padding: 8px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .nb-logo img {
        width: 195px;
        max-height: 51px;
    }


    .nb-header-inner {
        padding-left: 2px;
        padding-right: 10px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-202ac51 *//* ================================
   NIHARIKA BHAWAN
   MORE THAN JUST A ROOM
================================ */

#stay-experience {
    max-width: 1100px;
    margin: 70px auto;
    padding: 70px 60px;
    background: #faf7f0;
    border: 1px solid #e8dfd0;
    border-radius: 24px;
    text-align: center;
    box-sizing: border-box;
}

/* Main Heading */
#stay-experience h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #2f2923;
    letter-spacing: -0.5px;
}

/* Sub Heading */
#stay-experience > h3 {
    margin: 0 auto 30px;
    font-size: 20px;
    font-weight: 500;
    color: #8a6848;
    letter-spacing: 0.5px;
}

/* Paragraphs */
#stay-experience p {
    max-width: 850px;
    margin: 0 auto 20px;
    font-size: 17px;
    line-height: 1.8;
    color: #5d554d;
}

/* Divider */
#stay-experience hr {
    width: 70px;
    margin: 45px auto;
    border: 0;
    border-top: 2px solid #b7956a;
}

/* Inner Headings */
#stay-experience h3:not(:first-of-type) {
    margin: 38px auto 12px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 650;
    color: #332b24;
}

/* Strong Text */
#stay-experience strong {
    color: #6d4d32;
}

/* Final Statement */
#stay-experience p:last-child {
    margin-top: 38px;
    padding-top: 25px;
    border-top: 1px solid #ded3c3;
    font-size: 18px;
}

/* ================================
   HOVER / PREMIUM FEEL
================================ */

#stay-experience {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#stay-experience:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(60, 45, 30, 0.10);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    #stay-experience {
        margin: 45px 15px;
        padding: 45px 22px;
        border-radius: 18px;
    }

    #stay-experience h2 {
        font-size: 31px;
    }

    #stay-experience > h3 {
        font-size: 18px;
    }

    #stay-experience h3:not(:first-of-type) {
        font-size: 20px;
    }

    #stay-experience p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    #stay-experience p:last-child {
        font-size: 16px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-efb3028 *//* =========================================
   NIHARIKA BHAWAN
   BEFORE YOU ARRIVE
========================================= */

#before-you-arrive {
    max-width: 1100px;
    margin: 100px auto;
    padding: 20px;
    box-sizing: border-box;
}


/* INTRO */

.arrival-intro {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.arrival-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a7650;
}

.arrival-intro h2 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.2;
    color: #302921;
}

.arrival-intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #665e55;
}


/* LIST */

.arrival-list {
    max-width: 900px;
    margin: 0 auto;
}


/* ITEM */

.arrival-item {
    display: flex;
    gap: 28px;
    padding: 32px 10px;
    border-bottom: 1px solid #e5dccf;
}

.arrival-item:first-child {
    border-top: 1px solid #e5dccf;
}


/* NUMBER */

.arrival-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cdb99e;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: #8a6848;
}


/* CONTENT */

.arrival-content {
    flex: 1;
}

.arrival-content h3 {
    margin: 0 0 8px;
    font-size: 21px;
    color: #332b24;
}

.arrival-content p {
    margin: 0;
    max-width: 720px;
    font-size: 15.5px;
    line-height: 1.75;
    color: #696158;
}


/* CTA */

.arrival-cta {
    max-width: 900px;
    margin: 55px auto 0;
    padding: 32px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #f4eee4;
    border: 1px solid #dfd2c1;
    border-radius: 18px;
    box-sizing: border-box;
}

.arrival-cta span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    color: #9a7650;
}

.arrival-cta h3 {
    margin: 8px 0 0;
    font-size: 21px;
    color: #332b24;
}


/* CTA BUTTON */

.arrival-cta a {
    display: inline-block;
    padding: 13px 21px;
    background: #624832;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.arrival-cta a:hover {
    background: #3f3023;
    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    #before-you-arrive {
        margin: 65px auto;
        padding: 15px;
    }

    .arrival-intro {
        margin-bottom: 40px;
    }

    .arrival-intro h2 {
        font-size: 31px;
    }

    .arrival-intro p {
        font-size: 15.5px;
    }

    .arrival-item {
        gap: 18px;
        padding: 26px 4px;
    }

    .arrival-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .arrival-content h3 {
        font-size: 19px;
    }

    .arrival-content p {
        font-size: 15px;
    }

    .arrival-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 27px 23px;
    }

    .arrival-cta a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-46963cc *//* =========================================
   NIHARIKA BHAWAN
   BOOKING PROCESS
========================================= */

#booking-process {
    max-width: 1100px;
    margin: 100px auto;
    padding: 20px;
    box-sizing: border-box;
}


/* INTRO */

.booking-process-intro {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.booking-process-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a7650;
}

.booking-process-intro h2 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.2;
    color: #302921;
}

.booking-process-intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #665e55;
}


/* STEPS */

.booking-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}


/* VERTICAL LINE */

.booking-steps::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 35px;
    bottom: 35px;
    width: 1px;
    background: #ded2c2;
}


/* STEP */

.booking-step {
    position: relative;
    display: flex;
    gap: 28px;
    padding: 25px 0;
}


/* NUMBER */

.booking-step-number {
    position: relative;
    z-index: 2;
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf7f1;
    border: 1px solid #cdb99e;
    border-radius: 50%;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 700;
    color: #8a6848;
}


/* CONTENT */

.booking-step-content {
    padding: 5px 0;
}

.booking-step-content > span {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #9a7650;
}

.booking-step-content h3 {
    margin: 0 0 9px;
    font-size: 22px;
    color: #332b24;
}

.booking-step-content p {
    max-width: 680px;
    margin: 0;
    font-size: 15.5px;
    line-height: 1.75;
    color: #696158;
}


/* NOTE */

.booking-process-note {
    max-width: 900px;
    margin: 45px auto 0;
    padding: 24px 28px;
    background: #fffdf9;
    border-left: 3px solid #b7956a;
    box-sizing: border-box;
}

.booking-process-note strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #5f452f;
}

.booking-process-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #696158;
}


/* CTA */

.booking-process-cta {
    max-width: 900px;
    margin: 25px auto 0;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #f4eee4;
    border: 1px solid #dfd2c1;
    border-radius: 16px;
    box-sizing: border-box;
}

.booking-process-cta h3 {
    margin: 0;
    font-size: 20px;
    color: #332b24;
}

.booking-process-cta a {
    display: inline-block;
    padding: 13px 22px;
    background: #624832;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.booking-process-cta a:hover {
    background: #3f3023;
    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    #booking-process {
        margin: 65px auto;
        padding: 15px;
    }

    .booking-process-intro {
        margin-bottom: 40px;
    }

    .booking-process-intro h2 {
        font-size: 31px;
    }

    .booking-process-intro p {
        font-size: 15.5px;
    }

    .booking-steps::before {
        left: 25px;
    }

    .booking-step {
        gap: 18px;
        padding: 22px 0;
    }

    .booking-step-number {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        font-size: 11px;
    }

    .booking-step-content > span {
        font-size: 9px;
    }

    .booking-step-content h3 {
        font-size: 19px;
    }

    .booking-step-content p {
        font-size: 15px;
    }

    .booking-process-note {
        padding: 20px;
    }

    .booking-process-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 25px 20px;
    }

    .booking-process-cta a {
        width: 100%;
        box-sizing: border-box;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7c6aa1b *//* =========================================
   NIHARIKA BHAWAN
   DO'S & DON'TS
========================================= */

#dos-donts {
    max-width: 1100px;
    margin: 100px auto;
    padding: 20px;
    box-sizing: border-box;
}


/* INTRO */

.dos-donts-intro {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.dos-donts-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a7650;
}

.dos-donts-intro h2 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.2;
    color: #302921;
}

.dos-donts-intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #665e55;
}


/* GRID */

.dos-donts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


/* BOX */

.rules-box {
    padding: 35px;
    border-radius: 22px;
    box-sizing: border-box;
}


/* DO BOX */

.rules-do {
    background: #f7f4ed;
    border: 1px solid #ddd5c8;
}


/* DON'T BOX */

.rules-dont {
    background: #fbf8f4;
    border: 1px solid #e2d9ce;
}


/* HEADING */

.rules-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 25px;
    margin-bottom: 5px;
    border-bottom: 1px solid #e2d9ce;
}

.rules-symbol {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    font-weight: 400;
}


/* SYMBOL COLORS */

.rules-do .rules-symbol {
    background: #e8e3d8;
    color: #5d684d;
}

.rules-dont .rules-symbol {
    background: #eee3d9;
    color: #8a5f4a;
}


/* SMALL HEADING */

.rules-heading > div > span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #9a7650;
}


/* MAIN HEADING */

.rules-heading h3 {
    margin: 5px 0 0;
    font-size: 22px;
    color: #332b24;
}


/* LIST */

.rules-box ul {
    list-style: none;
    margin: 0;
    padding: 10px 0 0;
}


/* LIST ITEM */

.rules-box li {
    padding: 20px 0;
    border-bottom: 1px solid #e5ddd2;
}

.rules-box li:last-child {
    border-bottom: none;
    padding-bottom: 5px;
}


/* ITEM TITLE */

.rules-box li strong {
    display: block;
    margin-bottom: 7px;
    font-size: 16px;
    color: #40372f;
}


/* ITEM TEXT */

.rules-box li p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #6b6259;
}


/* FOOTER */

.rules-footer {
    max-width: 950px;
    margin: 35px auto 0;
    padding: 22px 25px;
    background: #fffdf9;
    border: 1px solid #e5dccf;
    border-radius: 14px;
    text-align: center;
    box-sizing: border-box;
}

.rules-footer p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: #6b6259;
}

.rules-footer strong {
    color: #5f452f;
}


/* =========================================
   HOVER
========================================= */

.rules-box {
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.rules-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(60, 45, 30, 0.08);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    #dos-donts {
        margin: 65px auto;
        padding: 15px;
    }

    .dos-donts-intro {
        margin-bottom: 35px;
    }

    .dos-donts-intro h2 {
        font-size: 31px;
    }

    .dos-donts-intro p {
        font-size: 15.5px;
    }

    .dos-donts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rules-box {
        padding: 27px 22px;
        border-radius: 18px;
    }

    .rules-heading {
        gap: 14px;
    }

    .rules-symbol {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 22px;
    }

    .rules-heading h3 {
        font-size: 20px;
    }

    .rules-box li strong {
        font-size: 15.5px;
    }

    .rules-box li p {
        font-size: 14.5px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ffb06cd *//* =========================================
   NIHARIKA BHAWAN
   FAQ SECTION
========================================= */

#nih-faq {
    max-width: 1000px;
    margin: 100px auto;
    padding: 20px;
    box-sizing: border-box;
}


/* INTRO */

.faq-intro {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.faq-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a7650;
}

.faq-intro h2 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.2;
    color: #302921;
}

.faq-intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #665e55;
}


/* FAQ LIST */

.faq-list {
    border-top: 1px solid #ded5c9;
}


/* FAQ ITEM */

.faq-item {
    border-bottom: 1px solid #ded5c9;
}


/* QUESTION */

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 25px 5px;
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 600;
    color: #332b24;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}


/* PLUS */

.faq-item summary b {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cdb99e;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 400;
    color: #8a6848;
    transition: transform 0.3s ease;
}


/* OPEN STATE */

.faq-item[open] summary b {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: #6d4d32;
}


/* ANSWER */

.faq-answer {
    padding: 0 55px 25px 5px;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #696158;
}


/* BOTTOM CTA */

.faq-bottom {
    margin-top: 50px;
    padding: 35px;
    text-align: center;
    background: #f4eee4;
    border: 1px solid #dfd2c1;
    border-radius: 20px;
}

.faq-bottom h3 {
    margin: 0 0 10px;
    font-size: 23px;
    color: #332b24;
}

.faq-bottom p {
    max-width: 600px;
    margin: 0 auto 22px;
    font-size: 15px;
    line-height: 1.7;
    color: #696158;
}

.faq-bottom a {
    display: inline-block;
    padding: 13px 23px;
    background: #624832;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.faq-bottom a:hover {
    background: #3f3023;
    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    #nih-faq {
        margin: 65px auto;
        padding: 15px;
    }

    .faq-intro {
        margin-bottom: 35px;
    }

    .faq-intro h2 {
        font-size: 31px;
    }

    .faq-intro p {
        font-size: 15.5px;
    }

    .faq-item summary {
        padding: 21px 2px;
        font-size: 15.5px;
        gap: 15px;
    }

    .faq-item summary b {
        flex-basis: 27px;
        width: 27px;
        height: 27px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 35px 22px 2px;
    }

    .faq-answer p {
        font-size: 14.5px;
    }

    .faq-bottom {
        padding: 28px 20px;
    }

    .faq-bottom h3 {
        font-size: 21px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c6de581 *//* =========================================
   NIHARIKA BHAWAN
   CONTACT SECTION
========================================= */

#contact-niharika {
    max-width: 1100px;
    margin: 100px auto;
    padding: 20px;
    box-sizing: border-box;
}


/* =========================================
   INTRO
========================================= */

.contact-intro {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a7650;
}

.contact-intro h2 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.2;
    color: #302921;
}

.contact-intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #665e55;
}


/* =========================================
   CONTACT GRID
========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


/* =========================================
   CONTACT CARD
========================================= */

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 28px;

    background: #faf7f1;
    border: 1px solid #e4dbcf;
    border-radius: 18px;

    text-decoration: none;

    box-sizing: border-box;

    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(60, 45, 30, 0.09);
}


/* =========================================
   ICON
========================================= */

.contact-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #cdb99e;
    border-radius: 50%;

    font-size: 15px;
    font-weight: 700;

    color: #765637;
    background: #f4eee4;
}


/* =========================================
   TEXT
========================================= */

.contact-card span {
    display: block;
    margin-bottom: 5px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #9a7650;
}

.contact-card h3 {
    margin: 0 0 5px;

    font-size: 18px;
    line-height: 1.4;

    color: #332b24;
}

.contact-card p {
    margin: 0;

    font-size: 13.5px;
    line-height: 1.6;

    color: #70675e;
}


/* =========================================
   BOTTOM CTA
========================================= */

.contact-bottom {
    margin-top: 35px;
    padding: 38px;

    text-align: center;

    background: #f4eee4;
    border: 1px solid #dfd2c1;
    border-radius: 20px;
}

.contact-bottom h3 {
    margin: 0 0 9px;

    font-size: 24px;
    color: #332b24;
}

.contact-bottom p {
    max-width: 650px;

    margin: 0 auto 24px;

    font-size: 15px;
    line-height: 1.7;

    color: #696158;
}


/* =========================================
   BUTTONS
========================================= */

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact-actions a {
    display: inline-block;

    min-width: 130px;

    padding: 13px 22px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.25s ease;
}


/* CALL */

.contact-call-btn {
    background: #624832;
    color: #ffffff;
}

.contact-call-btn:hover {
    background: #3f3023;
    transform: translateY(-2px);
}


/* WHATSAPP */

.contact-whatsapp-btn {
    background: #ffffff;
    border: 1px solid #cdb99e;
    color: #624832;
}

.contact-whatsapp-btn:hover {
    background: #faf7f1;
    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    #contact-niharika {
        margin: 65px auto;
        padding: 15px;
    }

    .contact-intro {
        margin-bottom: 35px;
    }

    .contact-intro h2 {
        font-size: 31px;
    }

    .contact-intro p {
        font-size: 15.5px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .contact-card h3 {
        font-size: 17px;
    }

    .contact-bottom {
        padding: 30px 20px;
    }

    .contact-bottom h3 {
        font-size: 21px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions a {
        width: 100%;
        box-sizing: border-box;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-32d26ff *//* =========================================
   NIHARIKA BHAWAN
   PREMIUM FOOTER
========================================= */

#nih-footer {
    margin-top: 100px;
    background: #302921;
    color: #ffffff;
    box-sizing: border-box;
}


/* =========================================
   FOOTER MAIN
========================================= */

.nih-footer-main {
    max-width: 1150px;
    margin: 0 auto;
    padding: 70px 25px 55px;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;

    box-sizing: border-box;
}


/* =========================================
   BRAND
========================================= */

.nih-footer-logo {
    margin-bottom: 18px;

    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;

    color: #ffffff;
}

.nih-footer-brand p {
    max-width: 330px;
    margin: 0 0 22px;

    font-size: 14px;
    line-height: 1.8;

    color: #d5cdc3;
}


/* INDEPENDENT LABEL */

.nih-footer-independent {
    display: inline-block;

    padding: 7px 12px;

    border: 1px solid #706354;
    border-radius: 20px;

    font-size: 11px;
    letter-spacing: 0.5px;

    color: #d9c8b2;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.nih-footer-column h3 {
    margin: 0 0 20px;

    font-size: 15px;
    font-weight: 600;

    color: #ffffff;
}

.nih-footer-column a {
    display: block;

    width: fit-content;

    margin-bottom: 12px;

    font-size: 14px;
    line-height: 1.5;

    color: #cfc6bb;

    text-decoration: none;

    transition: color 0.25s ease,
                transform 0.25s ease;
}

.nih-footer-column a:hover {
    color: #ffffff;
    transform: translateX(3px);
}


/* =========================================
   CONTACT
========================================= */

.nih-footer-contact p {
    max-width: 250px;

    margin: 0 0 20px;

    font-size: 14px;
    line-height: 1.7;

    color: #cfc6bb;
}


/* CTA */

.nih-footer-button {
    display: inline-block !important;

    padding: 12px 18px;

    background: #b7956a;

    color: #ffffff !important;

    border-radius: 7px;

    font-size: 13px !important;
    font-weight: 600;

    transition: all 0.25s ease !important;
}

.nih-footer-button:hover {
    background: #9a7650;
    transform: translateY(-2px) !important;
}


/* =========================================
   DISCLAIMER
========================================= */

.nih-footer-disclaimer {
    max-width: 1100px;

    margin: 0 auto;

    padding: 22px 25px;

    border-top: 1px solid #51483f;
    border-bottom: 1px solid #51483f;

    box-sizing: border-box;
}

.nih-footer-disclaimer p {
    margin: 0;

    font-size: 12.5px;
    line-height: 1.7;

    text-align: center;

    color: #bdb4aa;
}

.nih-footer-disclaimer strong {
    color: #e0d5c8;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.nih-footer-bottom {
    max-width: 1150px;

    margin: 0 auto;

    padding: 22px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    box-sizing: border-box;
}

.nih-footer-bottom p {
    margin: 0;

    font-size: 11.5px;
    line-height: 1.6;

    color: #9e958c;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .nih-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}


@media (max-width: 600px) {

    #nih-footer {
        margin-top: 70px;
    }

    .nih-footer-main {
        grid-template-columns: 1fr;
        padding: 50px 22px 40px;
        gap: 35px;
    }

    .nih-footer-brand p {
        max-width: 100%;
    }

    .nih-footer-column a {
        font-size: 14px;
    }

    .nih-footer-disclaimer {
        padding: 20px 22px;
    }

    .nih-footer-disclaimer p {
        font-size: 11.5px;
        text-align: left;
    }

    .nih-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 22px 25px;
        gap: 8px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a68714c *//* =========================================
   NIHARIKA BHAWAN
   PREMIUM FOOTER
========================================= */

#nih-footer {
    margin-top: 100px;
    background: #302921;
    color: #ffffff;
    box-sizing: border-box;
}


/* =========================================
   FOOTER MAIN
========================================= */

.nih-footer-main {
    max-width: 1150px;
    margin: 0 auto;
    padding: 70px 25px 55px;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;

    box-sizing: border-box;
}


/* =========================================
   BRAND
========================================= */

.nih-footer-logo {
    margin-bottom: 18px;

    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;

    color: #ffffff;
}

.nih-footer-brand p {
    max-width: 330px;
    margin: 0 0 22px;

    font-size: 14px;
    line-height: 1.8;

    color: #d5cdc3;
}


/* INDEPENDENT LABEL */

.nih-footer-independent {
    display: inline-block;

    padding: 7px 12px;

    border: 1px solid #706354;
    border-radius: 20px;

    font-size: 11px;
    letter-spacing: 0.5px;

    color: #d9c8b2;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.nih-footer-column h3 {
    margin: 0 0 20px;

    font-size: 15px;
    font-weight: 600;

    color: #ffffff;
}

.nih-footer-column a {
    display: block;

    width: fit-content;

    margin-bottom: 12px;

    font-size: 14px;
    line-height: 1.5;

    color: #cfc6bb;

    text-decoration: none;

    transition: color 0.25s ease,
                transform 0.25s ease;
}

.nih-footer-column a:hover {
    color: #ffffff;
    transform: translateX(3px);
}


/* =========================================
   CONTACT
========================================= */

.nih-footer-contact p {
    max-width: 250px;

    margin: 0 0 20px;

    font-size: 14px;
    line-height: 1.7;

    color: #cfc6bb;
}


/* CTA */

.nih-footer-button {
    display: inline-block !important;

    padding: 12px 18px;

    background: #b7956a;

    color: #ffffff !important;

    border-radius: 7px;

    font-size: 13px !important;
    font-weight: 600;

    transition: all 0.25s ease !important;
}

.nih-footer-button:hover {
    background: #9a7650;
    transform: translateY(-2px) !important;
}


/* =========================================
   DISCLAIMER
========================================= */

.nih-footer-disclaimer {
    max-width: 1100px;

    margin: 0 auto;

    padding: 22px 25px;

    border-top: 1px solid #51483f;
    border-bottom: 1px solid #51483f;

    box-sizing: border-box;
}

.nih-footer-disclaimer p {
    margin: 0;

    font-size: 12.5px;
    line-height: 1.7;

    text-align: center;

    color: #bdb4aa;
}

.nih-footer-disclaimer strong {
    color: #e0d5c8;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.nih-footer-bottom {
    max-width: 1150px;

    margin: 0 auto;

    padding: 22px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    box-sizing: border-box;
}

.nih-footer-bottom p {
    margin: 0;

    font-size: 11.5px;
    line-height: 1.6;

    color: #9e958c;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .nih-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}


@media (max-width: 600px) {

    #nih-footer {
        margin-top: 70px;
    }

    .nih-footer-main {
        grid-template-columns: 1fr;
        padding: 50px 22px 40px;
        gap: 35px;
    }

    .nih-footer-brand p {
        max-width: 100%;
    }

    .nih-footer-column a {
        font-size: 14px;
    }

    .nih-footer-disclaimer {
        padding: 20px 22px;
    }

    .nih-footer-disclaimer p {
        font-size: 11.5px;
        text-align: left;
    }

    .nih-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 22px 25px;
        gap: 8px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b44145a *//* =========================================================
   NIHARIKA BHAWAN KATRA
   STICKY CONTACT BUTTONS
========================================================= */

.nb-sticky-contact {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 99999;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.nb-sticky-contact a {

    min-width: 126px;

    height: 48px;

    padding: 0 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 30px;

    color: #FFFFFF;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .02em;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .16);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}


/* =========================================================
   ICON
========================================================= */

.nb-contact-icon {

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .18);

    font-size: 13px;

    line-height: 1;
}


/* =========================================================
   WHATSAPP
========================================================= */

.nb-sticky-whatsapp {

    background: #1F9D55;
}


/* =========================================================
   CALL
========================================================= */

.nb-sticky-call {

    background: #8B1E2D;
}


/* =========================================================
   HOVER
========================================================= */

.nb-sticky-contact a:hover {

    color: #FFFFFF;

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .22);

    filter:
        brightness(1.04);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .nb-sticky-contact {

        right: 14px;

        bottom: 14px;

        gap: 8px;
    }


    .nb-sticky-contact a {

        min-width: 112px;

        height: 44px;

        padding: 0 13px;

        font-size: 10px;
    }


    .nb-contact-icon {

        width: 23px;

        height: 23px;

        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .nb-sticky-contact {

        right: 10px;

        bottom: 10px;
    }


    .nb-sticky-contact a {

        min-width: 105px;

        height: 41px;

        font-size: 9px;
    }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .nb-sticky-contact a {

        transition: none;
    }

}/* End custom CSS */