:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

    .navbar-nav .nav-link:hover {
        color: #ffd700 !important;
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #ffd700;
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

.cta-buttons {
    display: flex;
    gap: 10px;
}

.btn-book {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

    .btn-book:hover {
        background: #c0392b;
        transform: scale(1.05);
    }

.btn-call {
    background: #25d366;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .btn-call:hover {
        background: #20b358;
        transform: scale(1.05);
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

/* Carousel Styles */
.hero-carousel {
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .carousel-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }

.carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
}

    .carousel-caption h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        animation: fadeInUp 1s ease-out;
    }

    .carousel-caption p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

.zoom-effect {
    animation: zoomInOut 8s ease-in-out infinite;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Room Cards */
/* Room Cards Container */
.rooms-container {
    display: grid;
    gap: 20px;
    margin: 0 auto;
}



.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--secondary-color);
    }



/* Mobile: 1 card per row */
.rooms-container {
    grid-template-columns: 1fr;
}

/* Tablet: 2 cards per row */
@media (min-width: 768px) {
    .rooms-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Laptop/Desktop: 3 cards per row */
@media (min-width: 1024px) {
    .rooms-container {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Room Card Styles */
.room-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .room-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.room-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.room-content {
    padding: 20px;
}

.room-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.room-price {
    font-size: 1.3rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 15px;
}

.boys-rooms {
    font-size: 19px;
    font-style:italic;
    background-color: #fea116;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
}

/* Room Features - 2 items per row */
.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    list-style: none;
    margin-bottom: 20px;
}

    .room-features li {
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        color: #666;
    }

        .room-features li i {
            margin-right: 8px;
            color: #3498db;
            width: 16px;
        }

/* Room Buttons */
.room-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-room {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 80px;
}

/* Room Description */
.room-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 20px;
    padding: 0;
}

.btn-view {
    background-color: #338fc2;
    color: white;
}

    .btn-view:hover {
        background-color: #2980b9;
    }

.btn-contact {
    background-color: #27ae60;
    color: white;
}

    .btn-contact:hover {
        background-color: #219a52;
    }

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

    .btn-whatsapp:hover {
        background-color: #1ebe57;
    }

/* Responsive button adjustments */

@media (max-width: 480px) {
    /* Room Buttons */
    .room-buttons {
        display: flex;
        gap: 7px;
        flex-wrap: wrap;
    }

    .btn-room {
        flex: 1;
        min-width: 70px;
    }
}

/* Header */
.page-header {
    text-align: center;
    margin-bottom: 30px;
}

    .page-header h1 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 1.1rem;
        color: #7f8c8d;
    }

/* Facilities Section */
.facilities-section {
    padding: 80px 0;
    background: white;
}

.facility-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

    .facility-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px #52a7e0;
    }

.facility-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.facility-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: bold;
    color: #ffd700;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #ffd700;
        }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: var(--secondary-color);
        transform: translateY(-3px);
    }

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    /* Room Buttons */
    .room-buttons {
        display: flex;
        gap: 7px;
        flex-wrap: wrap;
    }

    .btn-room {
        margin-bottom: 10px;
    }
}




/*AboutUs content--------------------------*/

.content-section {
    padding: 30px;
    border-radius: 15px;
    color: white;
    margin-bottom: 30px;
}

    .content-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        background: linear-gradient(45deg, #ffd700, #ffed4e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: bold;
        text-align: center;
    }

.description-text {
    color:black;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 25px;
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .platform-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        color: white;
    }

.yt-button {
    background: linear-gradient(45deg, #ff0000, #ff4444);
}

.fb-button {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
}

.insta-button {
    background: linear-gradient(45deg, #e91e63, #f06292);
}

.platform-link i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 400px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
}

    .gallery-item:hover {
        transform: scale(1.05);
    }

    .gallery-item:last-child {
        grid-column: 1 / -1;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-float i {
        color: white;
        font-size: 28px;
    }

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }

    .platform-link {
        width: 200px;
        justify-content: center;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        height: 600px;
    }

    .gallery-item:last-child {
        grid-column: 1;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

        .whatsapp-float i {
            font-size: 24px;
        }
}

@media (max-width: 576px) {
    .image-gallery {
        height: 500px;
    }
}







.review-section {
    padding: 50px 20px;
    /*background-color: #f2f2f2;*/
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.review-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    margin: 15px 0;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    height: 100%;
    text-align: left;
}

.review-text {
    font-style: normal;
    color: #444;
    line-height: 1.6;
    min-height: 90px; /* force minimum 3 lines */
}

.reviewer-info {
    margin-top: 15px;
    text-align: left;
}

    .reviewer-info h4 {
        margin: 0;
        font-size: 1.1rem;
        color: #222;
    }

.designation {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .review-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}




.gallery-section {
    padding: 30px 10px;
    background-color: #fdfdfd;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.gallery-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

    .gallery-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

        .gallery-image img:hover {
            transform: scale(1.05);
        }



