@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/mont');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/proxima-nova');


body {
    font-family: 'Poppins', sans-serif;
    color: black;

    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent scrolling */
    /* margin-right: -20px; */
}

body.loading {
    overflow: hidden;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 14px;
}

body::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 14px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    color: black !important;
    transition: background-color 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #1C39BB !important;
    background-color: #f1f1f1;
    border-radius: 8px;
}

.navbar-nav .nav-link.active {
    color: #1C39BB !important;
    font-weight: 600;
}

.navbar.navbar-scroll {
    transition: box-shadow 0.3s;
    box-shadow: none;
}

.navbar.navbar-scroll.navbar-shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-primary {
    color: #1C39BB !important;
}

.btn-primary {
    background-color: #1C39BB !important;
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid white !important;
    border-radius: 32px;
}

.btn-outline-primary {
    border-color: #1C39BB !important;
    background-color: white !important;
    color: #1C39BB !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 32px;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    color: black !important;
    background-color: #FFB717 !important;
    border: 1px solid #FFB717 !important;

}

.bg-primary {
    background-color: #1C39BB !important;
}

.text-primary {
    color: #1C39BB !important;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFFFF;
    transition: background-color 1s ease-out;
    z-index: -1;
}

/* margin-top: 7%;
    position: fixed;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #1C39BB;
    opacity: 0;
    transition: opacity 0.5s ease-out, width 0.5s ease-out, height 0.5s ease-out;
    z-index: -1; */

.circle1 {
    position: fixed;
    top: 55%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    z-index: -1;
    transition: opacity 0.5s ease-out, width 0.5s ease-out, height 0.5s ease-out;
}

.circle1 {
    background-color: #1C39BB;
}

@media (min-width: 576px) {

    /* Small screens and above */
    .circle1,
    .circle2 {
        top: 85%;
        left: 50%;

    }
}

@media (min-width: 768px) {

    /* Medium screens and above */
    .circle1,
    .circle2 {
        top: 50%;
        left: 70%;
    }
}

@media (min-width: 992px) {

    /* Large screens and above */
    .circle1,
    .circle2 {
        top: 58%;
        left: 73%;
    }
}

@media (min-width: 1200px) {

    /* Extra-large screens and above */
    .circle1,
    .circle2 {
        top: 65%;
        left: 65%;
    }
}

.circle1.active,
.circle2.active {
    opacity: 1;
    width: 200vw;
    height: 100vw;
    transform: translate(-50%, -50%);
}

.room-image {
    position: fixed;
    top: 50%;
    transform: translateY(-50%) translateX(20%);
    max-height: 60%;
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 1s ease-out;
}

.room-image.active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* * Scroll to Top Button * */
.fixed-action-button {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
}

.btn-floating {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-floating i {
    font-size: 24px;
    color: white;
}

.btn-floating.btn-primary {
    background-color: #1C39BB;
    transition: background-color 0.2s ease-in-out, outline-color 0.2s ease-in-out;
}

.btn-floating.btn-primary:hover {
    background-color: #FFB717;
    outline-color: #FFB717;
}

.btn-floating[title]::after {
    content: attr(title);
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    transform: translateY(-50%);
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    border-radius: 4px;
}

.btn-floating[title]:hover::after {
    opacity: 1;
}

.ServicesBox {
    border-radius: 18px;
}

.BookingBox {
    border-radius: 18px;
}

.ServicesBoxText {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: medium;
    color: white;
    background-color: #FFB717;
    border-radius: 32px;
    padding: 8px;
    padding-left: 12px;
    padding-right: 12px;
}

.ServicesBoxDescription {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 16px;
    padding-top: 42px;
    height: 20vh;
    line-height: 2.2;
}

.reviews-design {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.navbar.navbar-scroll {
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: none;
}

.navbar.navbar-scroll.navbar-shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    /* Add transition property */
}

.navbar-nav .nav-link {
    transition: background-color 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

/* Shrink room image */
.room-image-shrink {
    max-height: 50%;
}


.bookLine {
    position: relative;
    height: 6vh;
}

.bookLine:after {
    content: '';
    position: absolute;
    border-right: 2px #ffb617 solid;
    height: 100%;
    width: 100%;
    transform: translateX(-50%);
}

.bookCircle {
    border: 4px solid #FFB717;
    border-radius: 100%;
    height: 4vh;
    width: 4vh;
    background-color: white;
    transition: background-color 0.3s ease-in-out;
}

.bookCircle:hover {
    background-color: #FFB717;
    transition: background-color 0.3s ease-in-out;
}

.semi-circle {
    position: relative;
    overflow: hidden;
}

.semi-circle::before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 200%;
    height: 400%;
    border-radius: 200%;
    background-color: #fff;
    overflow: hidden;
}

.section {
    padding: 100px 0;
}


#HeroHeading1,
#HeroHeading2 {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1C39BB;
    transition: color 0.3s ease-in-out;
}

#HeroHeading2:hover {
    color: #FFB717;
}

#HeroSubHeading {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
}

.Heading1 {
    font-family: 'Mont', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
    color: #FFB717;
}

.Heading2 {
    font-family: 'Mont', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
    color: #1C39BB;
}

.chooseBox {
    border-radius: 16px;
    border: 3px #FFB717 solid;
}

.chooseIcon {
    font-size: 10vh;
    color: #FFB717;
}

#loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


#L1,
#L2 {
    font-family: 'Mont', sans-serif;
    font-weight: 700;
}

#L1 {
    font-size: 26px;
}

#L2 {
    font-size: 84px;
    margin-left: -6px;

}

#ListingButton {
    background-color: #FFB717;
    border-radius: 0px;
    font-family: 'Montserrat', sans-serif;
}

/* * Animation * */

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fade-in 1s forwards;
}

.slide-in {
    animation: slide-in 1s forwards;
    opacity: 1;

    transition: opacity 0.8s ease-in-out;
}

.slide-down {
    animation: slide-down 0.7s forwards;

    transition: opacity 0.5s ease-in-out;
}

.slide-up {
    animation: slide-up 0.7s forwards;

    transition: opacity 0.5s ease-in-out;
}

.slide-out {
    animation: slide-out 1s forwards;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

@keyframes slide-in {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slide-out {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slide-down {
    from {
        transform: translateY(175%);
        transform: translateX(100%);
    }

    to {
        transform: translateY(0);
        transform: translateX(0);
    }
}

@keyframes slide-up {
    from {
        transform: translateY(0);
        transform: translateX(0);
    }

    to {
        transform: translateY(175%);
        transform: translateX(100%);
    }
}

/* Shrink logo */
.logo-shrink {
    height: 45px;
    transition: ease-in-out 0.5s;
}

.logo-grow {
    height: 75px;
    transition: ease-in-out 0.5s;
}

.show {
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.hide {
    opacity: 0;
    transition: ease-in-out 0.5s;
}

.hide1 {
    opacity: 0;
}

.cannot-click {
    pointer-events: none;
    cursor: default;
}

.bx {
    font-size: 32px;
    color: white;
}

.footer-button {
    background-color: #1C39BB;
    border-radius: 256px;
    border: 0px;
    width: 46px;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-container {
    height: 8rem;
}

.services-icon {
    opacity: 0;
    font-size: 6rem;
    transition: font-size 0.5s ease-in-out;
    color: #1C39BB;
}

.services-icon.big {
    opacity: 1;
    font-size: 8rem;
    transition: opacity 0.8s ease, font-size 0.8s ease;
}

.booking-box,
.services-box,
.credentials-box {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.booking-box.fade-in1,
.services-box.fade-in1,
.credentials-box.fade-in1 {
    opacity: 1;
    transform: translateY(0);
}