 :root {
            --primary: #0a4a6a;
            --secondary: #b68a40;
            --light: #f8f9fa;
            --dark: #212529;
            --transition: all 0.3s ease;
        }
        
 body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
/* Fullscreen Splash */
#splash {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #fff; /* White background */
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.8s ease;
}

/* Logo Animation */
.splash-logo {
width: 200px;
animation: pulse 1s infinite;
}

@keyframes pulse {
0% { transform: scale(1); opacity: 0.8; }
50% { transform: scale(1.1); opacity: 1; }
100% { transform: scale(1); opacity: 0.8; }
}

        /* Header & Navigation */
                 
.navbar {
            background: transparent;
            padding: 1.2rem 1rem;
            transition: all 0.4s ease;
        }
        
.navbar.scrolled {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0.8rem 1rem;
        }
        
        /* Navbar brand (logo/title) */
.navbar-brand { 
            height: 100px;
            width: auto;
            align-items: center;
        }
        
.navbar.scrolled .navbar-brand {
            color: #000000;
        }
        
        /* Navbar links */
.navbar-nav .nav-link {
            color: #000000;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.4s;
        }
        
.navbar.scrolled .navbar-nav .nav-link {
            color: #333;
        }
        
.navbar-nav .nav-link:hover {
            color: #c19a6b;
        }
        
        /* Social icons */
.social-icons a {
            color: #171616;
            margin-left: 10px;
            font-size: 1.2rem;
            transition: color 0.4s;
        }
        
.navbar.scrolled .social-icons a {
            color: #333;
        }
        
.social-icons a:hover {
            color: #c19a6b;
        }
        
        /* Toggler icon color */
.navbar-toggler {
            border: none;
            color: #fff;
        }
        
.navbar.scrolled .navbar-toggler {
            color: #333;
        }

        /* Hero Section */
.hero {
            height: 100vh;
            position: relative;
        }
        
.carousel-item {
            height: 100vh;
            background-position: center;
            background-size: cover;
        }
        
.carousel-caption {
            top: 40%;
            text-align: left;
            max-width: 600px;
           
        }
        
.carousel-caption h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
           
        }
        
.carousel-caption p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease;
           
        }
        
.btn-primary {
            background-color: var(--secondary);
            border: none;
            padding: 12px 30px;
            font-weight: 500;
            transition: var(--transition);
        }
        
.btn-primary:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        /* Facilities Section */
.section-title {
            position: relative;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
        }
        
.section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .facility-item {
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            cursor: pointer;
        }
        
        .facility-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .facility-img {
            height: 350px;
            object-fit: cover;
            width: 100%;
            transition: var(--transition);
        }
        
        .facility-item:hover .facility-img {
            transform: scale(1.1);
        }
        
        .facility-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 30px 20px 20px;
            color: white;
        }
        
        /* Facility Detail Drawer */
        .facility-drawer {
            position: fixed;
            top: 0;
            right: -100%; 
            width: 100%;
            max-width: 800px; 
            height: 100vh;
            background: white;
            z-index: 1050;
            transition: var(--transition);
            overflow-y: auto;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        }
        
        .drawer-open {
            right: 0;
        }
        
        .drawer-header {
            padding: 20px;
            background: var(--primary);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .drawer-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .drawer-body {
            padding: 30px;
        }
        
        .drawer-gallery {
            margin-bottom: 30px;
        }
        
        .gallery-main {
            height: 500px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .gallery-main img {
            width: 100%;
            height: 100%;
             object-fit: cover; 
        }
        
        .gallery-thumbs {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        
        .gallery-thumb {
            width: 80px;
            height: 60px;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .gallery-thumb:hover, .gallery-thumb.active {
            opacity: 1;
            transform: scale(1.05);
        }
        
        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .drawer-content h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .drawer-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        
        .feature-badge {
            background: rgba(182, 138, 64, 0.1);
            color: var(--secondary);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .overlay-active {
            opacity: 1;
            visibility: visible;
        }

      
        /* Reviews Section */
        .reviews {
            height: 1000px;       
            background-color: #ffffff;
            padding: 120px 0;      
        }

        .review-item {
            background: rgb(255, 255, 255);
            text-align: center;
            padding: 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 15px;       
        }        
        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
   
        /* Contact Section */
        .contact {
        
            padding: 100px 0;
        }
        
        .contact-item {
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .contact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
       
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 60px 0 30px;
        }
        
        footer h5 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        footer a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-social a {
            display: inline-block;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .carousel-caption h1 {
                font-size: 2.5rem;
            }
            
            .carousel-caption {
                bottom: 20%;
            }
            
            .facility-drawer {
                max-width: 600px;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-caption h1 {
                font-size: 2rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            .navbar-nav {
                text-align: center;
                padding: 10px 0;
            }
            
            .social-icons {
                justify-content: center;
                margin-top: 10px;
            }
            
            .facility-drawer {
                max-width: 100%;
            }
            
            .drawer-body {
                padding: 20px;
            }
            
            .gallery-main {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .gallery-main {
                height: 200px;
            }
            
            .feature-badge {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
        }