:root {
    /* --primary-color: #0d6efd; */
    --base-color: #ffffff;
    --primary-color: #fd7e14;
    --secondary-color: #ffffff;
    --accent-color: #fd7e14;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --maroon-color: #800020;
}

/* Active menu item styling */
    .navbar-nav .nav-item .nav-link.active {
    color: var(--accent-color) !important;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-item .nav-link.active::after {
    /* content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px; */
} 

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    background-color: var(--base-color);
    color: #333;
}
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&h=800&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
}
section{
        background-color: var(--base-color) !important;
    }
/* Top Strip Styles */
.top-strip {
    background-color: var(--maroon-color);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.phone-numbers i {
    margin-right: 5px;
}

/* Carousel Styles */
.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    animation: zoomOut 15s infinite;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
}

/* Testimonials Styles */
.testimonials-section {
    /* background-color: #f8f9fa; */
    background-color: var(--base-color);
    padding: 60px 0;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 25px;
    margin: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/* .section-title {
    position: relative;
    margin-bottom: 0px;
    padding-bottom: 15px;
} */
 .section-title {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 15px;
            text-align: center;
    }
.section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
        }
/* .section-to-animate {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease-in-out;
} */

/* .section-to-animate:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7); Shadow on hover
} */
/* section>.container{
    margin-top: 40px;
    margin-bottom: 40px;
    border:2px solid #a8a84d;
    border-radius: 10px;
    padding: 20px;
} */

/* .section-title::after {
    content: '';
    position-area: center;
    position: absolute;
    margin-top: 30px;
    display: inline-block;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
} */
p{
    font-size: 1.3rem;
    line-height: 1.6;
    
}
.room-card1 {
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    height: 100%;
}

.room-card1:hover {
    transform: translateY(-5px);
    
}
.room-card {
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.room-card>.card-body>div {
    position: absolute;
  bottom: 0; /* Aligns the bottom of the label with the bottom of the parent */
  left: 0; /* Aligns the left of the label with the left of the parent */
  width: 100%; /* Makes the label span the full width of the parent */
  text-align: center; /* Centers the text within the label */
  
  padding: 25px;
}

.amenities-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.social-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #ddd;
    transition: color 0.3s;
}

.social-icon:hover {
    color: white;
}

.booking-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


        li::marker {
            color: var(--accent-color); /* Change 'red' to your desired color */
        }