/* Fonts */
:root {
    --default-font: "Barlow", sans-serif;
    --heading-font: "Gilda Display", serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #222222;
    --accent-color: #014e3f;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

:root {
    --nav-color: #222222;
    --nav-hover-color: #014e3f;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #222222;
    --nav-dropdown-hover-color: #014e3f;
}


.light-background {
    --background-color: #f5f9ff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

section,
.section {
    padding: 60px 0;
    overflow: clip;
}

.section-title {
    padding-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    min-height: 70vh;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .breadcrumbs ol li a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    font-size: 15px !important;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: bold;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

.header .topbar {
    background-color: var(--accent-color);
    height: 40px;
    padding: 0;
    transition: all 0.5s;
}

.header .topbar .contact-info i {
    font-style: normal;
    color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}

@media (max-width: 575px) {

    .header .topbar .contact-info a,
    .header .topbar .contact-info span {
        font-size: 13px;
    }
}

.header .topbar .contact-info a {
    line-height: 0;
    transition: 0.3s;
    color: var(--contrast-color);
}

.header .topbar .contact-info a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}

.header .branding {
    background-color: var(--background-color);
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 70px;
    width: 250px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
    border: 1px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;

        font-family: var(--default-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;

        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--default-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    .header .logo img {
        width: 120px;
    }

    .header .btn-getstarted {
        margin: 0;
        order: 2;
    }

    .header .logo {
        order: 1;
    }

    .navmenu {
        order: 3;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    --background-color: #014e3f;
    --color: #fff;
    color: var(--color);
    background-color: var(--background-color);
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--heading-color);
}


.footer .footer-about p a {
    --color: #fff;
    color: var(--color);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
    color: color-mix(in srgb, var(--contrast-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--surface-color);
    border-color: var(--accent-color);
}

.footer h4 {
    --color: #fff;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: var(--color);
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    --color: #fff;
    color: color-mix(in srgb, var(--color), transparent 0%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    --color: #fff;
    color: var(--color);
    text-decoration: underline;
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
    --color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--color), transparent 0%);
    display: flex;
    background-color: var(--background-color);
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--background-color);
    color: var(--default-color);
    font-size: 16px;
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form button[type=submit] {
    --background-color: #ffffff;
    --color: #000000;
    border: 0;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--background-color);
    color: var(--color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
}

.footer .footer-newsletter .newsletter-form button[type=submit]:hover {
    --background-color: #c9ab65;
    background: color-mix(in srgb, var(--background-color), transparent 0%);
}

.footer .copyright {
    --color: #fff;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, var(--color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

@media (max-width: 468px) {
    .footer .footer-links{
        margin: 0;
    }

    .footer .footer-newsletter .newsletter-form{
        margin-bottom: 0;
    }
}

/*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* General Section Styling */
.hero {
    width: 100%;
    height: 650px;
    position: relative;
    padding: 0;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    overflow: hidden;
}

.hero .info {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
}

.hero .info h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 700;
    position: relative;
}


@media (max-width: 768px) {
    .hero .info h1 {
        font-size: 25px;
    }
}

.hero .info p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
}

.hero .info .btn-get-started {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
    background: var(--accent-color);
}

/* .hero .carousel {
    inset: 0;
    position: absolute;
    overflow: hidden;
} */

.hero .carousel .carousel-inner {
    height: 100%;
}

.hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition-duration: 0.4s;
    height: 650px;
}

.hero .carousel-item img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item::before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 70%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

/* General Form Styles */
.hero form {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.hero form .form-group {
    position: relative;
}


/* Form Control Styles */
.hero .form-control {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px;
}

.hero .inputtext {
    width: 100%;
}

.hero .left_data {
    padding-right: 5px;
}


.hero .pax-div {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px;
}

.hero .pax-div label {
    display: block;
}

.hero .flightpax {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px;
    display: none;
    max-height: 250px;
    overflow: auto;
    scrollbar-width: thin;
    position: absolute;
    top: 100%;
    background-color: #fff;
    width: 100%;
}

.hero .flightpax.animated {
    animation: fadeIn 0.3s ease-in-out;
}

.hero .flightpax.animated.raj_fixt0 {
    display: block;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.hero .room_edit h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--surface-color);
}

.hero .pax_width {
    margin-bottom: 10px;
}

.hero .addremovedv {
    margin-top: 10px;
}

.hero .add_room,
.remove_room,
.secondry_bg {
    display: inline-block;
    text-align: center;
    padding: 5px;
    font-size: 13px;
    cursor: pointer;
}

.hero .add_room {
    color: var(--accent-color);
    font-weight: 600;
}

.hero .remove_room {
    color: #dc3545;
    display: none;
}

.hero .flightpax.animated.raj_fixt0 .remove_room.disblock {
    display: block;
}

.hero .secondry_bg {
    background-color: var(--accent-color);
    color: #fff;
}

.hero .btn.bbh-btn {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px;
}

.hero .btn.bbh-btn:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*offer*/
.offer-section {
    padding: 60px 0;
}

.offer-section .section-title {
    padding-bottom: 0;
    height: 100%;
}

.offer-section .section-title h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.offer-section .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

/* .offer-section .section-title h2 {
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 0;
    color: var(--accent-color);
} */
.offer-section .section-title h3 {
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 0;
    color: var(--accent-color);
}

.offer-section p {
    color: #555;
    margin-bottom: 0;
    text-align: justify;
}

.offer-section .carousel {
    position: relative;
    height: 100%;
}

.offer-section .carousel-inner {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.offer-section .carousel-inner .carousel-item {
    height: 100%;
}

.offer-section .carousel-inner img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media only screen and (max-width: 600px) {
    .offer-section .section-title h1 {
        font-size: 25px;
    }

    .offer-section .section-title h2 {
        font-size: 20px;
    }


    .section-title h2 {
        font-size: 25px !important;
    }
}

/* .offer-section .carousel-control-prev,
.offer-section .carousel-control-next {
    width: 5%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.offer-section .carousel-control-prev-icon,
.offer-section .carousel-control-next-icon {
    background-color: #fff;
    border-radius: 50%;
}

.offer-section .carousel-control-prev-icon,
.offer-section .carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

.offer-section .carousel-control-prev-icon::after,
.offer-section .carousel-control-next-icon::after {
    content: '';
} */


/*room*/
.room-section {
    background: linear-gradient(to right, #f8f8f8, #ececec);
}

.room-section .section-title h2 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.room-box {
    display: block;
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.room-box img {
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.room-box .room-content {
    padding: 20px;

}

.room-box h6 {
    font-size: 20px;
    font-weight: 600;
}

.room-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.room-box:hover h6 {
    color: var(--accent-color);
}

.room-box:hover p {
    color: var(--default-color);
}

@media (max-width: 768px) {
    .room-box {
        margin-bottom: 20px;
    }
}

/*facility*/
.facilitybox {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: start;
    height: 100%;
}

.facilitybox:hover {
    background-color: #ffffff;
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.facilitybox i {
    font-size: 45px;
    color: var(--accent-color);
    margin-right: 15px;
    transition: color 0.3s ease;
}

.facilitybox:hover i {
    color: var(--accent-color);
}

.facilitybox h5 {}

.facilitybox p {
    color: #333;
    margin: 0;
}

.offer-para {
    color: #666;
}

@media (max-width: 576px) {
    .col-sm-3 {
        width: 100%;
        margin-bottom: 15px;
    }

    .facilitybox {
        padding: 15px;
    }

    .facilitybox i {
        font-size: 40px;
    }

    .facilitybox p {}

    .offer-para {
        font-size: 12px;
    }
}


/*modal*/
/* General Modal Styles */
.modal .modal-content {
    border-radius: 10px;
    overflow: hidden;
}

.modal .modal-header {
    padding: 15px;
    position: relative;
}

.modal .modal-header h4,
.modal .modal-header h6 {
    margin: 0;
}

.modal .modal-body .btn-close {
    background: none;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 40px;
    cursor: pointer;
}

/* Modal Body */
.modal .modal-body {
    padding: 20px;
    height: 100%;
}

.modal .modal-body.modalbg {
    background-color: var(--accent-color);
    color: #fff;
}

.modal .modal-body.modalbg h5 {
    color: #ffffff;
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
}

.modal .modal-body h5 {
    font-size: 20px;
}

.modal .modal-body ul {
    list-style: none;
    padding-left: 0;
}

.modal .modal-body ul li {
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    background-color: rgb(0 255 205 / 22%);
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 10px;
}

.modal .modal-body ul li span {
    font-weight: bold;
    margin-right: 10px;
}

.modal .modal-body p {
    color: #fff;
}

.modal .modal-body p span {
    display: block;
}

.modal .modal-body svg {
    fill: var(--accent-color);
    margin-bottom: 10px;
}

.modal .modal-body .call_dat12 {
    margin-top: 20px;
}

.modal .modal-body .call_dat12 p {
    font-size: 15px;
    margin-bottom: 5px;
    color: #ffffff;
}

.modal .modal-body .form-group {
    margin-bottom: 10px;
}

/* Form Styling */
.modal #enquery_form_submit .form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    color: #333;
}

.modal #enquery_form_submit .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

.modal #enquery_form_submit label {
    color: #555;
}

.modal #enquery_form_submit textarea {
    resize: none;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.modal .btn.bbh-btn {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
    padding: 10px 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal .btn.bbh-btn:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* .modal .modal-dialog {
        margin: 10px;
    } */


    .modal .modal-header .btn-close {
        position: relative;
        top: auto;
        right: auto;
    }

    .modal .modal-body ul li p {
        line-height: 1.5;
    }
}

/* Additional utility classes */
.modal .text-center {
    text-align: center;
}

.modal .mt-2 {
    margin-top: 10px;
}

.modal .mr-md-0 {
    margin-right: 0;
}

.modal .fw_4 {
    font-weight: 400;
}

.modal .position-relative {
    position: relative;
}

.modal input,
.modal textarea {
    width: 100%;
    box-sizing: border-box;
}

.modal .ul_listpop ul li p {
    display: flex;
    align-items: center;
    margin: 0;
}

/*about page*/
/* General Styles */
.about-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}


.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-content h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #34495e;
}

.about-content p {
    line-height: 1.8;
    color: #7f8c8d;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    padding: 0 0 10px 0px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--accent-color);
}

.about-content .btn-primary {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 8px 25px;
    border-radius: 4px;
    transition: 0.3s;
    border: 1px solid var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 25px
    }

    .about-content h4 {
        font-size: 1.5rem;
    }
}


/* General Styling for the Section */
.call-to-action {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3)),
        url('/webroot/images/about-page-image-nityati.webp') center/cover no-repeat;

    background-attachment: fixed;
    padding: 80px 0;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.call-to-action h3 {
    color: var(--contrast-color);
}

.call-to-action .btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    /* Button shadow */
}

.call-to-action .btn-primary:hover {
    background-color: var(--background-color);
    transform: scale(1.05);
    /* Slight scaling effect */
    color: var(--default-color);
}


/* New gallery-section class for more specific styling */
.gallery-section {
    background-color: #f9f9f9;
    border-radius: 15px;
}

.gallery-section .carousel-inner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-section .carousel-inner .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.gallery-section .carousel-control-prev-icon,
.gallery-section .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
}

.gallery-section .carousel-control-prev-icon:hover,
.gallery-section .carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


@media (max-width: 768px) {
    .gallery-section {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-section .carousel-inner .carousel-item, .gallery-section .carousel-inner{
        height: 300px;
    }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.3s;
}

.gallery .gallery-links {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    line-height: 1.2;
    margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
    color: #ffffff;
}

.gallery .gallery-links .details-link {
    font-size: 30px;
    line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
    opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
    margin-top: 0;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.glightbox-clean .gslide-description {
    background: #272727;
}

.glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/*dinner*/
.dining-banner {
    position: relative;
    overflow: hidden;
}


.dining-banner .carousel-inner {
    height: 400px;
}

.dining-banner .carousel-item {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.dining-banner .carousel-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.dining-description {
    padding-right: 20px;
}

.dining-description .title {
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 15px;
    position: relative;
}

.dining-description .title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #ff6b6b;
    /* Accent color */
    margin-top: 5px;
}

.bar-section,
.cafe-section {
    margin-top: 30px;
}

.image-container {
    text-align: center;
}

.image-container img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

.image-caption {
    font-style: italic;
    color: #6c757d;
    margin-top: 10px;
}

/*contact us*/
.contact-info1,
.contact-info2 {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--default-color);
    margin-bottom: 20px;
}

.contact-info1 h3,
.contact-info2 h3 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-info1 ul,
.contact-info2 ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-info1 ul li,
.contact-info2 ul li {
    display: flex;
    gap: 10px;
}

.contact-info1 ul li h6,
.contact-info2 ul li h6 {
    color: var(--default-color);
}

.contact-info1 .main_contact_form,
.contact-info2 .main_contact_form {
    background-color: var(--background-color);
}

.contact-info2 ul li {
    margin-bottom: 5px;
    align-items: center;
}

.contact-info2 ul li h6,
.contact-info2 ul li p {
    margin: 0;
}

.main_contact_form {
    padding: 30px;
    background-color: var(--background-color);
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.main_contact_form .form-group {
    margin-bottom: 20px;
}

.main_contact_form .form-group .form-control {
    padding: 12px 10px;
}

.main_contact_form .form-submit {
    text-align: center;
}

.main_contact_form .form-submit button {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: 1px solid var(--accent-color);
    padding: 12px 30px;
    border-radius: 5px;
}

/* Video section */
.video-section {
    background-color: #014e3f;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
    transition: background-image 0.5s ease-in-out;
    z-index: 1;
}

/* .video-section::after {
        position: absolute;
        content: "";
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(19, 19, 15);
        z-index: -1;
    } */

.video-section .section-title h2 {
    color: #fff;
}

.video-section p {
    color: #fff;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.faq .content p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 20px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}
@media (max-width: 468px) {
    .faq .faq-container .faq-item h3{
        font-size: 16px;
    }
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    transition: 0.5s;
    padding: 30px;
    height: 100%;
}

@media (max-width: 468px) {
    .team .team-member {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }
}

.team .team-member .pic {
    overflow: hidden;
    width: 70px;
    border-radius: 50%;
    flex-shrink: 0;
}

.team .team-member .pic img {
    transition: ease-in-out 0.3s;
}

.team .team-member:hover {
    transform: translateY(-10px);
}

.team .team-member .member-info {
    padding-left: 30px;
}

@media (max-width: 468px) {
    .team .team-member .member-info {
        padding: 30px 0 0 0;
        text-align: center;
    }

    .team .team-member .member-info  h4{
        margin-bottom: 10px;
        width: 100%;
    }
}

.team .team-member h4 {
    font-weight: 700;
    margin-bottom: 0px;
    font-size: 20px;
}

.team .team-member span {
    display: block;
    font-size: 15px;
    position: relative;
    font-weight: 500;
}

/* .team .team-member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    bottom: 0;
    left: 0;
} */

@media (max-width: 468px) {
    .team .team-member span::after {
        left: calc(50% - 25px);
    }
}

.team .team-member p {
    margin: 20px 0 0 0;
    font-size: 14px;
}

.team .team-member i {
    color: #FFD700;
}

.team .team-member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

@media (max-width: 468px) {
    .team .team-member .social {
        justify-content: center;
    }
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 36px;
    height: 36px;
}

.team .team-member .social a i {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    margin: 0 2px;
}

.team .team-member .social a:hover {
    background: var(--accent-color);
}

.team .team-member .social a:hover i {
    color: var(--contrast-color);
}

.team .team-member .social a+a {
    margin-left: 8px;
}


/*rooms*/
.pinned-image.rounded_container {
    display: flex;
    height: 70vh;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.pinned-image__container {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #ccc;
}

.pinned-image__container img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #ccc;
}


.box_item_info {
    margin: -20px 0px 60px 0px;
    background-color: #fff;
    z-index: 9;
    position: relative;
    padding: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.box_item_info small {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    font-size: 20px;
    color: #000000;
}

.box_item_info h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--accent-color);
}


.box_item_info .facilities ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.box_item_info .facilities ul li {
    display: inline-block;
    line-height: 1;
    margin: 0 15px 10px 0;
}

.box_item_info .facilities ul li img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.box_item_info .box_item_footer {
    border-top: 2px solid #ededed;
    margin-top: 15px;
    padding: 15px 0 0px 0;
}

.room-content .btn-getstarted {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 8px 25px;
    border-radius: 4px;
    transition: 0.3s;
    border: 1px solid var(--accent-color);
}