
    .icon-circle {
        background: linear-gradient(135deg, #007bff, #00c6ff);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .room-img {
        transition: transform 0.4s ease;
    }

    .room-card:hover .room-img {
        transform: scale(1.05);
    }

    .room-card .card-body {
        padding: 1.25rem;
    }
    .body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: transparent;
overflow-x: hidden;
}
html, body {
height: 100%;
}

.hero {
height: 100vh;
}



.navbar {
background-color: transparent;
position: absolute;
width: 100%;
top: 0;
z-index: 1000;
}


    .navbar-brand,
    .nav-link {
        color: #fff !important;
    }

    .nav-link:hover {
        color: #ffc107 !important;
    }

    .hero {
        position: relative;
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
        overflow: hidden;
    }


    .hero-content {
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
        padding: 40px;
        border-radius: 15px;
    }

    .hero h1 {
        font-size: 3.5rem;
        font-weight: bold;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .btn-custom {
        background: linear-gradient(135deg, #007bff, #00c6ff);
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s ease;
    }

    .btn-custom:hover {
        background: linear-gradient(135deg, #0056b3, #009ecf);
        text-decoration: none;
    }

    .footer {
        background-color: #1a1a1a;
        color: #aaa;
        padding: 30px 0;
    }

    .footer a {
        color: #ccc;
        text-decoration: none;
        margin: 0 10px;
    }

    .footer a:hover {
        text-decoration: underline;
        color: #fff !important;
        transition: all 0.3s ease;
    }



    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.2rem;
        }
        .hero p {
            font-size: 1rem;
        }
    }

    .navbar .dropdown-menu {
        min-width: 200px;
    }
    .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.4em 0.6em;
        border-radius: 0.5rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }
    
    header h1 {
        font-weight: 700;
    }
    
    header p {
        font-size: 1.1rem;
    }
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8f9fa;
            margin: 0;
            padding: 0;
        }

        .card {
            transition: transform 0.3s ease;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .card:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .card-title {
            font-weight: bold;
            font-size: 1.2rem;
        }

        .container {
            margin-top: 50px;
        }

        .navbar {
            background-color: #343a40;
        }

        .navbar-nav .nav-link {
            color: #fff !important;
        }
        #background-video {
            position: fixed;
            right: 0;
            bottom: 0;
            min-width: 100%;
            min-height: 100%;
            z-index: -1; /* Put it behind everything */
            object-fit: cover;
            opacity: 0.5; /* You can adjust this */
    }
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-banner {
        height: 600px;
        overflow: hidden;
    }
    
    .hero-overlay {
        z-index: 2;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    }
    
    .hero h1, .hero p, .hero a {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s forwards;
    }

    .hero p {
        animation-delay: 0.3s;
    }

    .hero a {
        animation-delay: 0.6s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes twinkle {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.6; transform: scale(1.05); }
    }

    .fa-star {
        transition: transform 0.3s ease;
    }

    .fa-star:hover {
        transform: scale(1.3);
        color: #ffd700;
        }
    /* Fade effect at bottom of video */
#video-fade-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    z-index: 0;
}

/* Card animation */
.card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}


    