/* ===== Base Styles ===== */
body {
    padding-top: 70px; /* Space for top navbar */
    padding-bottom: 60px; /* Space for bottom navbar */
}
.container-fluid {
  padding-right: calc(var(--bs-gutter-x) * 0.0);
  padding-left: calc(var(--bs-gutter-x) * 0.0);
}
/* ===== Top Navbar (Desktop/Tablet) ===== */
.top-navbar {
    background-color: white;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    height: 70px;
}

/* Logo/Brand - Centered on mobile */
.navbar-brand {
    display: flex;
    align-items: center;
}

    .navbar-brand a {
        display: flex;
        align-items: center;
        color: #076cc5;
        text-decoration: none;
        font-size: 1.3rem;
        font-weight: bold;
    }

    .navbar-brand img {
        height: 50px;
        transition: all 0.3s;
    }

/* Navigation Links */
.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .navbar-links li {
        margin: 0 15px;
    }

    .navbar-links a {
        color: #076cc5;
        text-decoration: none;
        font-size: 1rem;
        padding: 8px 12px;
        border-radius: 4px;
        transition: all 0.3s;
        display: flex;
        align-items: center;
    }

        .navbar-links a:hover {
            background: #0a84e0;
            color: white;
        }

    .navbar-links i {
        margin-right: 8px;
    }

/* ===== Bottom Navbar (Mobile) ===== */
.bottom-navbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: space-around;
}

    .bottom-navbar .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #65676B;
        font-size: 0.8rem;
        padding: 5px 10px;
    }

        .bottom-navbar .nav-link i {
            font-size: 1.3rem;
            margin-bottom: 3px;
        }

        .bottom-navbar .nav-link.active {
            color: #076cc5;
        }

/* ===== Fixed Action Buttons ===== */
.fixed-icons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
}

    .fixed-icon.whatsapp {
        background: #25D366;
    }

    .fixed-icon.call {
        background: #007bff;
    }

    .fixed-icon.booking {
        background: #ff6b6b;
    }

    .fixed-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
    /* Tablet styles */
    .navbar-brand img {
        height: 45px;
    }

    .navbar-links li {
        margin: 0 10px;
    }

    .navbar-links a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* Mobile styles */
    .navbar-brand {
        justify-content: center;
        width: 100%;
    }

    .brand-name {
        display: none; /* Hide brand text on mobile */
    }

    .top-navbar .navbar-links {
        display: none; /* Hide top nav links */
    }

    .bottom-navbar {
        display: flex; /* Show bottom navbar */
    }

    body {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    /* Adjust fixed icons */
    .fixed-icons {
        right: 15px;
    }

    .navbar-brand img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    /* Small mobile adjustments */
    .bottom-navbar .nav-link {
        font-size: 0.7rem;
        padding: 5px;
    }

        .bottom-navbar .nav-link i {
            font-size: 1.1rem;
        }

    .fixed-icons {
        right: 10px;
        bottom: 65px;
    }

    .fixed-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
body {
    margin: 0px;
}
/* ===== Core Elementor Styles ===== */
.elementor-slider-container {
    position: relative;
    width: 100%;
    /*max-width: 1200px;*/
    margin: 0 auto;
    overflow: hidden;
}

.elementor-slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 500px; /* Adjust slider height */
}

.elementor-slide {
    min-width: 100%;
    position: relative;
}

.elementor-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.2);
    color: white;
    padding: 20px;
    text-align: center;
}


.slide-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.slide-description {
    font-size: 16px;
    max-width: 80%;
    margin: 0 auto;
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: white;
        transform: scale(1.2);
    }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .elementor-slides {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .elementor-slides {
        height: 300px;
    }

    .slide-title {
        font-size: 22px;
    }

    .slide-description {
        font-size: 14px;
    }
}