﻿
body, html {
    margin: 0;
    padding: 0;
    font-family: Poppins, Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    box-sizing: border-box;
}



/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fefefe;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

@media screen and (max-width:991px) {
    .navbar {
        padding: 20px 10px 20px 0;
    }
        .navbar .logo {
            text-align: left;
            float: none !important;
            margin-left: 8px !important;
          
        }
}

    .navbar.scrolled {
        background: #f8f9fa;
        box-shadow: 0 4px 10px rgb(200 37 129 / 20%)
    }

    .navbar .logo {
        font-size: 20px;
        font-weight: bold;
        color: #ff6600;
        width:220px;
    }

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    top: 2px;
    position: relative;
}

    .nav-links li {
        display: inline;
    }

    .nav-links a {
        text-decoration: none;
        color: #000;
        font-size: 16px;
    }

        .nav-links a:hover {
            text-decoration: underline;
        }

.login-btn, .enquiry-btn {
    padding: 7.5px 15px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
}

.login-btn {
    background: #ff6600;
    color: #fff;
}

.enquiry-btn {
    background: #44265a;
    padding: 10px;
    color: #fff !important;
}


.cta-button {
    background: #44265a;
    padding: 10px;
    color: #fff !important;
    padding: 15px 30px;
    border-radius:10px;
}

    .cta-button:hover {
        background: #14055a;
        transition: 0.2s ease-in-out;
    }

    .enquiry-btn:hover {
        background: #14055a;
        transform: translateY(5px) !important;
        transition: 0.2s ease-in-out;
    }
     
    /* Font Awesome Menu Icon */
        .menu-icon {
        display: none;
        width: 24px;
        cursor: pointer;
    }

.logo {
    width: 280px;
}

.menu-icon i {
    color: #000;
}

/* Modal Menu for Small Devices */
.modal-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

    .modal-content a {
        display: block;
        margin: 10px 0;
        font-size: 18px;
        color: #000;
        text-decoration: none;
    }

        .modal-content a:hover {
            text-decoration: underline;
        }

/* Hero Section */
.hero {
    /*   background: linear-gradient(169deg, #402355, #694185);*/
    
    color: #fff;
    padding: 100px 20px 50px;
    /*  margin-top: 50px;*/
    border-radius: 10px;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
    /* box-shadow: rgb(37 64 106 / 40%) -5px 5px, rgb(116 115 208 / 30%) -10px 10px, rgb(59 100 160 / 20%) -15px 15px, rgb(70 62 170 / 10%) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
*/
}
@media screen and (min-width:991px){
    .hero {
        background: linear-gradient(135deg, #694185 51%, #f5f5f4 50%);
        transition:0.2s ease-in-out;
    }
   
}
.text-dark2 {
    color: #445464!important;
}
.font-italic{
    font-style: italic !important
}

@media screen and (max-width:991px) {
    .hero {
        background: linear-gradient(172deg, #562678 7%, #562678 99%);
        transition: 0.2s ease-in-out;
    }
    .text-dark2{
        color:white!important
    }
    .hero-tile-2 {
        font-size: 23px!important;
    }
}

.hero-bg {
    background: #fefefe;
    padding: 10px;
}



.main {
    margin-top: 40px;
    margin-bottom:10px;
}

@media screen and (max-width:991px) {
    .hero {
        width: 98%;
        margin: 0 auto;
        padding: 20px 20px 50px !important;

    }

    .main {
        margin-top: 80px;
        margin-bottom: 150px;
    }

    .why-img {
        width: 200px;
    }

    .navbar .logo {
        width: 200px;
    }

   
}
.features-item:hover {
    cursor: pointer;
    background: linear-gradient(to right, #94e6f3, #edf4ff);
    background-size: 200% 100%;
    transition: background-position 0.8s ease-in-out;
    background-position: right center;
    border: 1px solid;
    border-color: #4262c2 #1472c0 #99d9e7 #2807a3;
}

@media screen and (max-width:768px) {
    .features-item {
        padding: 10px;
    }

        .features-item img {
            margin-bottom: 0px;
        }

        .features-item h4 {
            margin-bottom: 4px;
        }
}


@media screen and (min-width:991px) {
    .hero {
        width: 95%;
        margin: 40px auto;
    }
    .why-img {
        width: 300px;
    }
}


.search-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

    .search-form input,
    .search-form button {
        padding: 10px;
        font-size: 16px;
        border: none;
        border-radius: 5px;
    }

    .search-form input {
        flex: 1;
    }

.search-btn {
    background-color: #ff6600;
    color: #fff;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .modal-menu.active {
        display: flex;
    }
}



.bg-btn-theme {
    background: #ff325d;
    color:white !important;
    padding:8px 20px;
    border-radius:10px;
}

.nav-links a:hover {
    text-decoration: none;
}

.bg-btn-theme:hover {
    background: #ff6600;
    transform: translateY(2px);
    transition: 0.2s ease-in-out;
}

.form-floating label{
    color:#161414;
    font-weight:bold;
    font-size:large;
}
.hero-title {
    display: inline-block;

    overflow: hidden; /* Ensures the text is hidden while typing */
   /* border-right: 4px solid #000;*/ /* Simulates the typing cursor */
    white-space: nowrap; /* Prevents the text from wrapping */
    animation: typing 4s steps(50) infinite, blink 0.75s step-end infinite, reset 4s 1.2s infinite;
}
.hero-title-2 {
    display: inline-block;
    color:black !important;
    overflow: hidden; /* Ensures the text is hidden while typing */
   /* border-right: 4px solid #000;*/ /* Simulates the typing cursor */
    white-space: nowrap; /* Prevents the text from wrapping */
}

@media screen and (min-width:1500px){
    .hero-title {
        font-size: 2.8em;
    }

}

@media screen and (min-width:1320px) and (max-width:1500px) {
    .hero-title {
        font-size: 2em;
    } .hero-title-2 {
        font-size: 2em;
    }
}
@media screen and (min-width:991px) and (max-width:1320px) {
    .hero-title-2 {
        font-size: 1.8em;
    }
}

@keyframes typing {
    0% {
        width: 0;
    }
    25%{
        width:40%;
    }
    50%{
        width:70%;
    }
    75%{
        width:85%;
    }
    100% {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes reset {
    0%, 100% {
        width: 100%;
    }

    25% {
        width: 0;
    }

    50% {
        width: 50%;
    }

    75% {
        width: 75%;
    }
}


.hero-sub-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.0125rem;
    line-height: 2rem;
    max-width: none;
    text-align: left;
    color:#ebe4e4 !important;
}



.btn-hero {
    font-size: 1.2rem;
    padding: 12px 20px;
    border-radius: 8px;
   background: #fff;
    color: orangered;
}

    .btn-hero:hover {
        background-color: #ff5757 !important;
        color: white;
        transform: scale(1.05) !important;
        transition:0.2s ease-in-out;
}


/* CSS */
.button-64 {
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 12px 20px;
    border-radius: 8px;
    background:  #44265a;
    color: #fff;
}

.button-64:active,
.button-64:hover {
    outline: 0;
}


    .button-64:hover {
        background: #44005a;
        transform:translateY(5px);
        transition:0.2s ease-in-out;
    }

@media (min-width: 768px) {
    .button-64 {
        font-size: 24px;
        min-width: 196px;
    }
}


/* Booking Form*/

.formbold-mb-5 {
    margin-bottom: 12px;
}

.formbold-pt-3 {
    padding-top: 12px;
}

.formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.formbold-form-wrapper {
    margin: 0 auto;
    width: 100%;
    background: white;
}

.formbold-form-label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #07074d;
    margin-bottom: 5px;
}

.formbold-form-label-2 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.formbold-form-input {
    width: 100%;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: white;
    font-weight: 400;
    font-size: 15px;
    color: #6b7280;
    outline: none;
    resize: none;
}

    .formbold-form-input:focus {
        border-color: #6a64f1;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
    }

.formbold-btn {
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    padding: 14px 32px;
    border: none;
    font-weight: 600;
    background-color: #6a64f1;
    color: white;
    cursor: pointer;
}

    .formbold-btn:hover {
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
    }

.formbold--mx-3 {
    margin-left: -12px;
    margin-right: -12px;
}

.formbold-px-3 {
    padding-left: 12px;
    padding-right: 12px;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.w-full {
    width: 100%;
}

@media (min-width: 540px) {
    .sm\:w-half {
        width: 50%;
    }
}


.nav-links a:hover{
    color:orangered;
    transform:translateY(5px);
    transition:0.2s ease-in-out;
}

.min-ht{
    min-height:70vh;
}
.form-control {
   height:46px;
}

.btn-login {
    background: transparent;
    width: 100%;
    padding:7.5px 15px;
    border-radius: 5px;
    color: black;
    border: 1px solid #ff7575;
}

.btn-login:hover{
    background:#fc5740;
    transition:0.3s ease-in-out;
    color:white;
}


.error{
     font-weight:normal;
     font-style:italic;
     margin-left:10px;
}

.tooltip {
    background-color: #007bff !important; /* Change background color */
    color: #fff !important; /* Change text color */
    border-radius: 8px; /* Rounded corners */
    font-size: 14px; /* Custom font size */
    padding: 8px 12px !important; /* Add padding */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition */
    transform: scale(0.9); /* Scale down initially */
}

    /* Tooltip arrow customization */
    .tooltip .arrow::before {
        border-top-color: #007bff !important; /* Match arrow color with tooltip */
    }

    /* Fade-in effect */
    .tooltip.show {
        opacity: 1; /* Fully visible */
        transform: scale(1); /* Restore size */
    }


.bg-header {
    background: #26469b !important;
}
.container{
   min-width:95% !important;
    margin:0 auto;
}

.refer-benefits {
    list-style: none;
    padding: 0;
}

    .refer-benefits li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        margin-bottom: 5px;
    }

.refer-btn {
    font-size: 1.2rem;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    background: #ff5757;
    color: #fff;
}

    .refer-btn:hover {
        background-color: whitesmoke !important;
        color: black;
        border: 1px solid;
        border-color: #ff5757;
        transform: scale(1.05);
    }

.quick-link{
    margin-top:5px;
}

.quick-link li a {
    color: #d3cece;
    letter-spacing: 0.2px;
    font-weight: 300;
}

    .quick-link li a:hover {
        color: orangered;
        transition: 0.2s ease-in-out;
        
    }

    .my-main{
        margin-top:100px !important;
        margin-bottom:100px !important;
    }

.btn-theme {
   background:linear-gradient(145deg, rgba(244,129,63,1) 0%, rgba(241,85,106,1) 100%);
   width:100%!important;
   padding:15px 25px;
   border-radius:5px;
   color:white;
}

    .btn-theme:hover {
        color: black;
        border:1px solid;
        border-color:  rgba(244,129,63,1);
        background: #ffff;
        transition: 0.8s ease-in-out;
    }

    @media screen and (max-width:674px){
        .aff-img {
            height:280px;
        }
    }

    @media screen and (min-width:675px) and (max-width:991px){
        .aff-img {
            height: 320px;
        }
    }
@media screen and (min-width:991px) {
    .aff-img {
        height: 350px;
    }
}

.whatsapp_float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 78px;
    right: 32px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: none;
    transition: display 0.3s ease, opacity 0.3s ease;
}

@media screen and (min-width:768px) and (max-width:1200px) {
    .whatsapp_float {
        position: fixed;
        width: 50px;
        height: 50px;
        bottom: 160px;
        right: 32px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        display: none;
        transition: display 0.3s ease, opacity 0.3s ease;
    }
}

.whatsapp_float:hover {
    transform: scale(1.2);
    transition: ease-in-out;
}

.whatsapp_float.show {
    display: block;
    opacity: 1;
}

.whatsapp_icon {
    width: 72px;
    height: 54px;
    margin-top: 0px;
    position: relative;
    left: -9px;
    top: -2px;
}


.scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--color-white);
    background-color: var(--theme-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

    .scroll-top.active {
        opacity: 1;
        visibility: visible;
        bottom: 20px;
    }


@media all and (min-width: 768px) and (max-width: 1199px) {
    .scroll-top.active {
        bottom: 100px;
    }
}

.iconSocial {
    height: 35px;
}

    .iconSocial:hover {
        transform: translateY(-5px);
        transition: 0.5s;
    }

.text-theme{
    color:orangered;
}

    .text-theme:hover {
        color: red;
    }

.card-theme {
    border: 1px solid;
    border-radius: 10px;
    box-shadow: 10px 10px #e6e3e1;
    border-color: gray;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 20px;
    height: 20px;
    background-color: #F73378;
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

.square {
    width: 22px;
    height: 22px;
    background-color: #F73378;
    animation: rotate 1.5s infinite linear;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.square {
    animation-delay: 0.4s;
}

.dot:nth-child(4) {
    animation-delay: 0.6s;
}

.dot:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.banner-theme {
    background-color: #7D4CDB !important;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.location .card {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px !important;
}
.hs-tag {
    font-size: 19px;
    line-height: 28px;

}

@media screen and (min-width:991px){
    .hs-tag {
        font-size: 30px;
        line-height: 40px;
    }
}

.search-header {
    padding: 30px;
    background: #9956CC !important;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;

}

.search-title {
    color: white;
    text-shadow: 0px 7px 4px black;
    font-size: 35px;
}
.search-box {
    border-radius: 27px;
    height: 53px;
    margin-top: 19px;

}
@media screen and (max-width:991px){
    .search-kuddo{
        display:none;
    }
}

.search-kuddo {
    background: white;
    width: 84px;
    height: 100px;
    position: relative;
    top:30px;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    text-align: center;
    left: 340px;
}
.search-img {
    position: relative;
    top: 30px;

}

.h-name {
    color: #1F1D1F;
    font-size:14px;
}

.price {
    color: #9D05A8;
}
.h-img {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    height: 193px;
    width: 100%;
}

.rating {
    padding: 2px 6px;
    background: #0ebe0c;
    color: white;
    border-radius: 4px;
}

.justify-between{
    justify-content:space-between;
}

.h-card {
    border-radius: 10px;
    box-shadow: 3px 0px 16px 0px #EEC0F1;
    margin-bottom: 10px;
}

    .h-card:hover{
        transform:scale(1.03) !important;
        transition:0.2s ease-in-out !important;
    }
    .h-body {
        height: 100px
    }