:root {
            --primary: #FF9933; /* Deep Saffron */
            --secondary: #333333; /* Charcoal Black */
            --bg-light: #F9F9F9; /* Cream/Off-white */
            --glass: rgba(255, 255, 255, 0.15); /* Glass base */
            --glass-border: rgba(255, 255, 255, 0.2);
            --sans: 'Montserrat', sans-serif;
            --serif: 'Playfair Display', serif;
            --primary-orange: #ff6b00;
            --dark-orange: #e65f00;
            --light-bg: #f9f9f9;
            --text-dark: #333;
            --text-gray: #666;
        }

        * { box-sizing: border-box; }
        body { margin: 0; padding: 0; font-family: var(--sans); background: var(--bg-light); color: var(--secondary); overflow-x: hidden; }
        
        /* --- General Text Styles --- */
        h1, h2, h3 { font-family: var(--serif); font-weight: 700; }
        p { font-size: 1rem; font-weight: 300; line-height: 1.6; color: rgba(51, 51, 51, 0.8); }

       

        /* --- Full-screen Cinematic Video/Image Hero --- */
        .hero {
            height: 100vh;
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
            z-index: 1;
        }
        .heros {
            height: 60vh;
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        /* Replace 'images/hero-bg.mp4' with actual video loop path, OR use a jpg/webp still */
        .hero video {
            object-fit: cover;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0; left: 0; z-index: -2;
            filter: brightness(0.6); /* Slightly darken for text readability */
        }
        
        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
            z-index: -1;
        }

        .hero-content { z-index: 1; padding: 20px; text-align: center; }
        
        .hero img.logo { max-width: 180px; margin: 20px auto; }
        
        .hero h1 { font-size: clamp(2.5rem, 8vw, 5rem); margin: 0 0 10px; line-height: 1.1; }
        
        .hero .sub-headline { font-size: 1.2rem; color: #fff; font-weight: 300; margin-bottom: 30px; }

        /* --- Buttons --- */
        .btn {
            display: inline-block;
            padding: 18px 45px;
            font-size: 1rem;
            text-transform: uppercase;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(255, 153, 51, 0.5);
        }

        /* --- Container --- */
        .container {
            width: 100%;
            position: relative;
            z-index: 5;
            margin: 0px;
            padding: 60px 5%;
            background-color: #F9F9F9;
        }

        /* --- Glassmorphism About Section --- */
        .about-section {
            background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(51, 51, 51, 0.95));
            border-radius: 20px;
            padding: 60px;
            margin-top: -80px; /* Overlap effect */
            z-index: 10;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            color: rgba(255, 255, 255, 0.9);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .aabout-section {
            background: linear-gradient(135deg, #F9F9F9, #F9F9F9);
            padding: 60px;
            margin-top: -80px; /* Overlap effect */
            z-index: 10;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            color: rgba(255, 255, 255, 0.9);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .about-text h2 { color: white; margin-bottom: 20px; }
        .about-text p { color: rgba(255, 255, 255, 0.8); }

        /* Translucent card for features */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .feature-item {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }
        
        .feature-item h4 { margin: 10px 0 5px; color: white; }
        .feature-item p { font-size: 0.8rem; margin: 0; }

        /* --- Cinematic Dynamic Gallery --- */
        .gallery-section h2 { text-align: center; margin-bottom: 40px; }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.5s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item .overlay {
            position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
            display: flex; align-items: flex-end; padding: 20px;
            color: white; opacity: 0; transition: opacity 0.5s ease;
        }

        .gallery-item:hover .overlay { opacity: 1; }

        /* --- Footer --- */
        footer {
            background-color: var(--secondary);
            color: rgba(255,255,255,0.7);
            padding: 60px 0;
            text-align: center;
            position: relative;
            z-index: 5;
        }
        footer .container{
            background-color: var(--secondary);
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 768px) {
            .about-section {
                grid-template-columns: 1fr;
                padding: 40px 20px;
                margin-top: -40px;
            }
            .aabout-section {
                grid-template-columns: 1fr;
                padding: 40px 20px;
                margin-top: -40px;
            }
            .hero-content { padding: 40px 15px; }
            h1 { font-size: 2rem; }
            .gallery-grid { grid-template-columns: 1fr; }
        }