* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

p {
    margin: 0;
}

.swal2-modal {
    background-color: var(--bs-body-bg) !important;
}

.swal2-modal * {
    color: var(--text-dark);
}

.swal2-modal .swal2-confirm {
    color: #cacaca;
}




.theme-switcher {
    display: flex;
    width: 80px;
    height: 36px;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.theme-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.theme-option i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.theme-option.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.theme-option.active i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

.theme-option::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    opacity: 0;
}

.theme-option.active::after {
    width: 15px;
    opacity: 1;
}

.theme-switcher::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 36px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1;
}

/* Default position (light theme) */
.theme-switcher::before {
    transform: translateX(0);
}

/* Dark theme position */
.theme-switcher.dark-mode::before {
    transform: translateX(40px);
}

.navbar-scrolled .theme-switcher {
    background-color: rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .theme-option {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-scrolled .theme-option.active {
    color: var(--text-dark);
    text-shadow: none;
}

.navbar-scrolled .theme-option.active i {
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.navbar-scrolled .theme-option::after {
    background: linear-gradient(90deg, transparent, var(--text-dark), transparent);
}

.navbar-scrolled .theme-switcher::before {
    background-color: rgba(0, 0, 0, 0.05);
}

.theme-switch-animation {
    animation: pulse-switch 0.5s ease;
}

.theme-switch-animation .theme-option.active i {
    animation: icon-pop 0.5s ease;
}

@keyframes pulse-switch {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes icon-pop {
    0% {
        transform: scale(1.2);
    }

    40% {
        transform: scale(1.5);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.2);
    }
}

.theme-ripple {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    z-index: 1;
}

.navbar-scrolled .theme-ripple {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Header and Navigation Styles */
header {
    width: 100%;
    z-index: 1030;
    transition: all 0.3s ease;
}

/* Top Navigation Bar */
.top_nav {
    background-color: transparent;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: none;
}

.contact-info {
    text-decoration: none;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.contact-info:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--secondary);
    transform: translateY(-1.8px);
}

.social-icon i {
    font-size: 1rem;
}

/* Main Navigation */
.navbar {
    background-color: transparent;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-text::after {
    width: 100%;
}

/* Navigation Links */
.navbar-nav {
    margin-right: 2rem;
    margin-left: 2rem;
}

.nav-item {
    margin: 0 5px;
    position: relative;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 8px 15px !important;
    border-radius: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.nav-link.active {
    color: var(--secondary) !important;
    position: relative;
}

.navbar .nav-link:hover {
    color: var(--secondary) !important;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}


.btn-icon i {
    color: inherit;
}

.btn-login {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.btn-login:hover,
.btn-login:focus,
.btn-icon:hover,
.btn-icon:focus {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1.5px);
    color: #fff;
    box-shadow: 0 0px 18px rgba(255, 255, 255, 0.2);
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}


/* Scrolled Navbar Styles */
header.scrolled .top_nav {
    display: none;
}

.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--light-bg-li);
    backdrop-filter: blur(10px);
}

/* Change text colors when scrolled */
.navbar-scrolled .navbar-brand,
.navbar-scrolled .nav-link,
.navbar-scrolled .btn-login,
.navbar-scrolled .btn-icon {
    color: var(--text-dark) !important;
    text-shadow: none;
}

.navbar-scrolled .nav-link.active {
    background-color: rgba(0, 0, 0, 0.05);
}

.navbar-scrolled .btn-login,
.navbar-scrolled .btn-icon {
    background-color: var(--bs-light);
}

.navbar-scrolled .btn-login:hover,
.navbar-scrolled .btn-login:focus,
.navbar-scrolled .btn-icon:hover,
.navbar-scrolled .btn-icon:focus {
    background-color: var(--bs-primary-dark, var(--bs-light));
    color: #333 !important;
    box-shadow: 0 0px 18px rgba(0, 0, 0, 0.189);
}

.navbar-scrolled .navbar-brand {
    font-size: 1.6rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 15px;
        margin-top: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        max-height: 80vh;
        overflow-y: auto;
    }

    header.scrolled .navbar-collapse {
        background-color: var(--light-bg-li);
    }

    .navbar-nav {
        margin-right: 0;
        margin-left: 0;
    }

    .nav-item {
        margin: 5px 0;
    }

    .nav-link.active::after {
        width: 50px;
        bottom: -3px;
    }

    .navbar-actions {
        justify-content: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* Adjust hero section padding for mobile */
    .hero {
        padding-top: 70px;
    }
}

@media (max-width: 767.98px) {
    .top_nav {
        font-size: 0.8rem;
        padding-block: .3;
    }

    .contact-info span {
        font-size: 14px;
    }

    .social-icons {
        justify-content: center !important;
        margin-top: 10px;
    }
}

/* Theme Switcher Adjustments */
.theme-switcher {
    margin: 0 10px;
}

.hero {
    height: min(100vh, fit-content);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 120px;
    /* Account for fixed navbar height */
}

.hero .carousel-item img {
    object-fit: cover;
    object-position: center;
    height: 100vh;
    width: 100vw;
    position: relative;
    filter: brightness(0.6);
    transform: scale(1.05);
    transition: transform 3s ease-in-out;
    /* Specify exact property */
}

/* Only target active state */
.hero .carousel-item.active img {
    transform: scale(1);
}

.booking_box.animated {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
    }

    100% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
}

.hero .carousel-item::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 100, 0.2));
}

.hero-text {
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 100%;
    z-index: 3;
    margin: auto;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
}

@media (max-width: 991.98px) {
    .hero-text {
        left: 10%;
        width: 80%;
    }
}

@media (max-width: 767.98px) {
    .hero-text {
        margin-top: 0;
        left: 5%;
        width: 90%;
        justify-content: center;
        padding-top: 100px;
    }
}

@media (max-width: 575.98px) {
    .hero-text {
        left: 0;
        width: 100%;
        padding: 80px 15px 0;
    }
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 1.2s ease-out;
    max-width: 800px;
    width: 100%;
    transition: all 0.3s ease;
}

.hero-content:hover {
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

@media (max-width: 991.98px) {
    .hero-content {
        max-width: 700px;
    }
}

@media (max-width: 767.98px) {
    .hero-content {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
        border-radius: 10px;
    }
}

.hero-text h1 {
    font-size: 4rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
    position: relative;
    display: inline-block;
    color: var(--secondary);
}

/* .hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--bs-primary, #0d6efd);
    border-radius: 3px;
} */

.hero-text p {
    line-height: 2rem;
    width: 100%;
    font-size: 1.2rem !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .hero-text h1 {
        font-size: 3.5rem !important;
        margin-bottom: 1.2rem;
    }

    .hero-text p {
        font-size: 1.1rem !important;
        line-height: 1.8rem;
        width: 95%;
    }
}

@media (max-width: 767.98px) {
    .hero-text h1 {
        font-size: 2.8rem !important;
        margin-bottom: 1rem;
    }

    .hero-text h1::after {
        width: 60px;
        height: 2px;
        bottom: -8px;
    }

    .hero-text p {
        font-size: 1rem !important;
        line-height: 1.6rem;
        width: 100%;
    }
}

@media (max-width: 575.98px) {

    .hero-text h1,
    h2 {
        font-size: 2.2rem !important;
        /* margin-bottom: 0.8rem; */
        text-align: start;
        display: block;
        width: fit-content;
    }

    .hero-text p {
        font-size: 0.9rem !important;
        line-height: 1.5rem;
        text-align: start;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-text .booking_box {
    position: relative;
    margin: 0 auto 50px;
    width: 90%;
    max-width: 1000px;
    height: auto;
    min-height: 180px;
    background-color: rgba(255, 255, 255, .15) !important;
    backdrop-filter: blur(15px);
    border-radius: 15px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .hero-text .booking_box {
        width: 95%;
        min-height: 160px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-text .booking_box {
        width: 100%;
        min-height: auto;
        margin-bottom: 30px;
        padding: 15px 0;
    }
}

.hero-text .booking_box:hover {
    background-color: rgba(255, 255, 255, .2) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-text .booking_box .nav-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text .booking_box .nav-link {
    color: #fff !important;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
}

.hero-text .booking_box .nav-link.active {
    background-color: var(--bs-light);
    color: #333 !important;
    border: none;
}

.hero-text .booking_box select,
.hero-text .booking_box input {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.hero-text .booking_box select:focus,
.hero-text .booking_box input:focus {
    border-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.hero-text .booking_box select option {
    color: #333;
    background-color: #fff;
}

.booking_box .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.booking_box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.booking_box .btn {
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 10px;
    width: 100%;
}

.booking_box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .hero-text .booking_box .form-wrap {
        padding: 0 10px;
    }

    .hero-text .booking_box .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .hero-text .booking_box select,
    .hero-text .booking_box input {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .booking_box .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .hero-text .booking_box .form-wrap {
        width: 100%;
        margin: 0 10px;
    }

    .hero-text .booking_box .tab-content {
        margin-top: 15px !important;
    }

    .hero-text .booking_box .row {
        margin: 0 -5px;
    }

    .hero-text .booking_box .col-md-3,
    .hero-text .booking_box .col-md-4 {
        padding: 0 5px;
        margin-bottom: 10px;
    }

    .hero-text .booking_box .form-label {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .hero-text .booking_box select,
    .hero-text .booking_box input {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: absolute;
    animation: bounce 1.5s infinite;
    z-index: 10;
    transition: all 0.3s ease;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}

.scroll-indicator:hover {
    border-color: #fff;
    cursor: pointer;
}

.scroll-indicator:after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInOut 1.5s infinite;
}

@media (max-width: 767.98px) {
    .scroll-indicator {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        width: 24px;
        height: 40px;
        border-width: 2px;
        border-color: rgba(255, 255, 255, 0.9);
        z-index: 20;
        animation: bounce 1.5s infinite, glow 2s infinite alternate;
    }

    .scroll-indicator:after {
        width: 6px;
        height: 6px;
        bottom: 20px;
        background-color: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 575.98px) {}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

    to {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
}

/* Start Button */
.btn_start {
    padding: 12px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.btn_start::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 3px;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.3), #fff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    animation: border-pulse 2s linear infinite;
    z-index: -1;
}

.btn_start::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: 2;
}

.btn_start:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    color: var(--secondary)
}

.btn_start:hover::before {
    left: 100%;
}

.btn_start:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

@keyframes border-pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 40px;
    height: 40px;    
    border-radius: 50%;
    animation: pulse 2s infinite;
    background: #25D366;
    outline: none;
    border: none;
    z-index: 10;
}

.whatsapp-button i {
    font-size: 30px;
    color: #fff;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 20px rgba(0, 0, 0, .1), 0 0 20px rgba(255, 255, 255, .1);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Mobile Booking Button */
.mobile-book-btn {
    padding: 12px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.mobile-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

@media (max-width: 575.98px) {
    .mobile-book-btn {
        width: 80%;
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Custom Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
}

.carousel-indicators button.active {
    width: 15px !important;
    height: 15px !important;
    background-color: #fff !important;
    opacity: 1 !important;
    transform: scale(1.1);
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(15px);
    }

    60% {
        transform: translateY(10px);
    }
}

.scroll-text {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

/* hotels cards */
.section-header {
    position: relative;
}

.section-header h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    padding-right: 15px;
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.feature-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.feature-item:nth-child(1) {
    animation: fadeInRight 0.8s ease-out;
}

.feature-item:nth-child(2) {
    animation: fadeInRight 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.feature-item:nth-child(3) {
    animation: fadeInRight 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-number {
    font-size: 8vw;
    font-weight: 100;
    color: var(--primary);
    line-height: 0.8;
    margin-right: 15px;
    font-family: 'sora'
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-color-light);
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .features-container {
        flex-direction: column;
    }

    .feature-item {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .feature-number {
        font-size: 4rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .feature-number {
        font-size: 3.5rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }
}

#advan .btn_start_advan {
    color: var(--primary);
    border-color: var(--primary) !important;
    transition: all .5s ease-in-out;
}

#advan .btn_start_advan:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    padding-inline: 2rem;
}

#advan .card {
    overflow: hidden;
    height: 600px;
    flex-grow: 1;
    background-color: var(--primary-light);
}

#advan .card,
#advan .card>* {
    transition: all 0.5s !important;
}

#advan .item {
    height: auto;
    flex-grow: 1;
}

#advan .card .img_wrap {
    height: 300px !important;
    overflow: hidden;

}


#advan .card img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s !important;
}


#advan .card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.18);
}

#advan .card:hover img {
    scale: 1.051;
}

#advan .card .card-title,
#advan .card .card-text {
    color: var(--primary);
}

#advan .card:hover .card-body {
    margin-top: -0.3rem;
}

#advan .card:hover .btn {
    background-color: var(bs-primary-subitle);
}

/* about us */

.about-image {
    position: relative;
    overflow: visible;
    margin-bottom: 30px;
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}


.experience-badge {
    background-color: var(--primary);
    z-index: 2;
    transition: all 0.3s ease;
}

.about-image:hover .experience-badge {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 20px;
}

.about-content .feature .feature-icon {
    background-color: var(--primary-light);
}

.about-content .feature .feature-icon i {
    color: var(--primary);
}

#aboutus .feature h5 {
    color: var(--primary)
}

.about-content .lead {
    line-height: 1.8;
    font-size: 1.1rem;
}

/* about us */

/* faq */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
}

/* whu-us */
/* Why Choose Us Section */

.feature-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--card-bg);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 1rem;
    background-color: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-color-light);
}

/* whu-us */

/* Ferquent asked quations */
.accordion-button::after {
    margin-right: var(--margin-right);
    margin-left: var(--margin-left);
}

/* Ferquent asked quations */

#contact .contact-form button {
    background-color: var(--primary) !important;
}

#contact .fa-solid {
    color: var(--primary);
    font-size: 1.2rem;
}

/* footer */
footer i:hover {
    color: var(--secondary);
}

/* hotel page */
.hotel-page #lightgallery img {
    object-fit: cover;
    object-position: center;
}

.hotel-page #lightgallery .img-thumbnail {
    height: 211 !important;
    width: 211 !important;
    accent-color: 1/1;
}

.hotel-page .star-rating {
    direction: rtl;
    font-size: 1.5rem;
}

.hotel-page .star-rating input {
    display: none;
}

.hotel-page .star-rating label {
    color: lightgray;
    cursor: pointer;
}

.hotel-page .star-rating input:checked~label {
    color: gold;
}

.hotel-page .star-rating label:hover,
.hotel-page .star-rating label:hover~label {
    color: gold;
}

.hotel-page .form-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.hotel-page .hotel-info h5 {
    font-weight: bold;
}

.hotel-page .hotel-info p {
    line-height: 1.9rem;
}

.hotel-page .hotel-info li {
    line-height: 1.9rem;
}

.hotel-page .serivces li {
    flex: 0 0 30%;
}

.hotel-page .hotel-summary h6 {
    font-weight: bold;
}

.hotel-page .hotel-summary p {
    font-size: 12px;
}

.hotel-page .hotel-summary i {
    scale: 0.6;
}

.modal .nav-link.active {
    background-color: var(--bs-primary-bg-subtle);
}

table td {
    font-size: 14px;
}

.image-counter {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 100vh rgba(0, 0, 0, 0.6);
    font-size: 36px;
    color: #fff;
    /* margin: auto; */
    padding: auto;
    top: 25%;
    /* bottom: 25%; */
    right: 25%;
    left: 25%;
    transform: translateX(-25%);
}

.review-date {
    font-size: 0.85em;
    color: #6e6e73;
    margin-top: 10px;
}