
        :root {
            --silver: #C0C0C0;
            --silver-dark: #A8A8A8;
            --silver-light: #E8E8E8;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --bg-color: #f5f5f5;
            --dark-bg: #1a1a1a;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #444;
            background: var(--bg-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navbar with Hamburger */
        .navbar {
            background: rgba(245,245,245,0.98);
            backdrop-filter: blur(8px);
            padding: 15px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 1px solid var(--silver-light);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(42,42,42,0.98);
            border-bottom: 1px solid #444;
        }
        
        .navbar.scrolled .logo-text,
        .navbar.scrolled .nav-links a {
            color: white;
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 1001;
        }
        
        .logo-img {
            height: 45px;
            width: auto;
            filter: brightness(0.9);
        }
        
        .logo-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: #555;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
        }
        
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: #555;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            transition: all 0.5s ease;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--silver-dark);
            transition: width 0.3s;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        /* Dark Banner with Scroll Effect */
        .banner {
            height: 90vh;
    background: linear-gradient(rgb(0 0 0 / 25%), rgb(0 0 0 / 8%)), url(img/k.jpg) center / cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .banner::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(transparent, var(--bg-color));
            z-index: 1;
        }
        
        .banner-content {
            transform: translateY(30px);
            opacity: 0;
            transition: all 1s ease;
            padding: 0 20px;
            z-index: 2;
        }
        
        .banner-content.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .banner-content h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin: 0 0 20px;
            font-weight: 600;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        
        .banner-content p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            z-index: 2;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        
        .scroll-down:hover {
            opacity: 1;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-20px) translateX(-50%);}
            60% {transform: translateY(-10px) translateX(-50%);}
        }
        
        /* Section Styles with Scroll Effects */
        .section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .section.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title {
            text-align: center;
            font-size: clamp(1.8rem, 3vw, 2.3rem);
            margin-bottom: 40px;
            color: #555;
            font-weight: 500;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background: var(--silver);
            margin: 15px auto;
            opacity: 0.7;
        }
        
        /* About Section */
        .about-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            color: #555;
        }
        
        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 220px;
            overflow: hidden;
            border-radius: 6px;
            box-shadow: var(--shadow);
            position: relative;
            transition: all 0.3s ease;
            background: white;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            opacity: 0.9;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
            opacity: 1;
        }
        
        /* Services Section */
        .services-section {
            background: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        
        .service-card {
            background: white;
            border-radius: 1rem;
            padding: 25px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
            border-top: 2px solid var(--silver-light);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.233);
        }
        
        .service-card:hover {
            transform: translateY(-3px);
               box-shadow: 0 8px 20px rgba(0, 0, 0, 0.349);
        }
        
        .service-icon {
            font-size: 1.8rem;
            color: var(--silver-dark);
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(to bottom, #f0f0f0, #e8e8e8);
            text-align: center;
            border-radius: 1rem;
               box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
        }
        
        .contact-info a{
            color: #555;
            text-decoration: none;
            transition: all 0.3s;
        }
        .contact-info a:hover{
            color: var(--silver-dark);
        }

        /* Booking Section */
        .booking-section {
            text-align: center;
            padding: 50px 20px;
        }
        
        .booking-btn {
            display: inline-block;
            background: var(--silver-dark);
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            margin-top: 20px;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.411);
            border: none;
            cursor: pointer;
        }
        
        /* Footer */
        .footer {
            background: #2a2a2a;
            color: #ddd;
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid #444;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .footer-logo-img {
            height: 45px;
            width: auto;
            filter: brightness(0) invert(0.8);
        }
        
        .footer-logo-text {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--silver);
        }

        .booking-btn:hover {
            background: var(--silver);
            color: #333;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(42,42,42,0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: right 0.5s ease;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links a {
                color: white !important;
                font-size: 1.2rem;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 6px);
                background: white;
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -6px);
                background: white;
            }
            
            .banner-content h1 {
                margin-bottom: 15px;
            }
            
            .section {
                padding: 60px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.1rem;
            }
            
            .footer-logo {
                flex-direction: column;
                gap: 10px;
            }
        }