 /* Existing styles remain the same, adding button styles at the end */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: #1a1a1a;
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
        }

        .logo span {
            color: #7c270f;
            font-style: italic;
        }

        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url("img/bg.jpeg");
            background-size: cover;
            background-position: center;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin: 60px 0 40px;
            color: #1a1a1a;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #7c270f;
            margin: 15px auto 30px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.animated {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 0.6s ease forwards;
            animation-delay: calc(var(--card-index) * 0.1s);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-image {
            height: 220px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.05);
        }

        .service-icon {
            background: #7c270f;
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -35px auto 20px;
            position: relative;
            font-size: 28px;
            box-shadow: 0 5px 15px rgba(206, 203, 195, 0.3);
        }

        .service-content {
            padding: 0 25px 25px;
        }

        .service-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
            text-align: center;
            color: #1a1a1a;
        }

        .service-content p {
            color: #666;
            margin-bottom: 20px;
            text-align: center;
            font-size: 1rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }

        .service-features i {
            color: #f7eae7;
            margin-right: 10px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* NEW: Menu Button Styles */
        .service-button {
            display: block;
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #7c270f 0%, #7c270f 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
        }

        .service-button:hover {
            background: linear-gradient(135deg, #7c270f 0%, #7c270f 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
        }

        .service-button:active {
            transform: translateY(-1px);
        }

        .special-highlight {
            background: #221212;
            padding: 80px 0;
            margin: 60px 0;
        }

        .highlight-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .highlight-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateX(-30px);
        }

        .highlight-image.animated {
            opacity: 1;
            transform: translateX(0);
            animation: fadeInLeft 0.8s ease forwards;
        }

        .highlight-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .highlight-content {
            opacity: 0;
            transform: translateX(30px);
        }

        .highlight-content.animated {
            opacity: 1;
            transform: translateX(0);
            animation: fadeInRight 0.8s ease forwards;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .highlight-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: #fffefe;
        }

        .highlight-content p {
            margin-bottom: 20px;
            color: #555;
            font-size: 1.05rem;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .amenity-item {
            background: white;
            padding: 30px 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .amenity-item.animated {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 0.5s ease forwards;
            animation-delay: calc(var(--item-index) * 0.1s);
        }

        .amenity-item:hover {
            transform: translateY(-10px);
        }

        .amenity-icon {
            font-size: 2.5rem;
            color: #7c270f;
            margin-bottom: 20px;
        }

        .amenity-item h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .amenity-item p {
            color: #666;
            font-size: 0.95rem;
        }

        .contact-info {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            color: white;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }

        .contact-card.animated {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 0.8s ease forwards;
        }

        .contact-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 30px;
            color: #cecbca;
        }

        .contact-details {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-details i {
            margin-right: 15px;
            color: #bcd3a9;
            font-size: 1.5rem;
        }

        footer {
            background: #111;
            color: #aaa;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: white;
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #7c270f;
        }

        .footer-section p {
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }

        .center-video {
             display: block;
             margin: 0 auto; /* Centers the element horizontally */
}

        .video-container {
    width: 100%; /* Or any specific width/height */
    height: 400px; /* Or any specific width/height */
    overflow: hidden; /* Ensures any cropped parts are hidden */
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Use 'contain' or 'fill' as needed */
    object-position: center; /* Centers the video within the frame */
}


        /* Responsive adjustments */
        @media (max-width: 992px) {
            .highlight-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .highlight-content h2 {
                font-size: 2rem;
            }
            
            .contact-details {
                font-size: 1.1rem;
                flex-direction: column;
                text-align: center;
            }
            
            .contact-details i {
                margin-right: 0;
                margin-bottom: 10px;
            }zz
        }