    /* ===== GLOBAL & LAYOUT ===== */
    * { 
        margin:0; 
        padding:0; 
        box-sizing:border-box; 
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
        text-rendering: optimizeSpeed; 
    }
    html { scroll-behavior: smooth; }
    body { background:#F5EBDD; -webkit-font-smoothing: antialiased; color: #333; overflow-x: hidden; }
    
    /* ===== HEADER & NAVIGATION ===== */
    header { 
        position:fixed; 
        width:100%; 
        top:0; 
        left:0; 
        background:rgba(255,255,255,0.98); 
        backdrop-filter:blur(10px); 
        display:flex; 
        justify-content:space-between; 
        align-items:center; 
        padding:15px 8%; 
        z-index:1000; 
        box-shadow:0 2px 10px rgba(0,0,0,0.1); 
    }
    
    /* Updated logo container to align image and text side-by-side  */
    .logo { 
        display: flex; 
        align-items: center; 
        gap: 12px; 
        font-weight:700; 
        color:#1E3A8A; 
        font-size:18px; 
        text-transform: uppercase; 
        letter-spacing: 1px; 
    }
    
    .logo img {
        height: 50px; 
        width: auto;
        display: block;
    }

    nav { display: flex; align-items: center; }
    nav a { 
        margin:0 15px; 
        text-decoration:none; 
        color:#1E3A8A; 
        font-weight:600; 
        transition: 0.3s;
    }
    nav a:hover { color: #B8860B; }
    
    .call-btn { 
        background:#1E3A8A; 
        color:white !important; 
        padding:10px 20px; 
        border-radius:25px; 
        margin-left: 20px;
    }

    .menu-toggle { 
        display:none; 
        font-size:24px; 
        color: #1E3A8A;
        cursor:pointer; 
        z-index: 1001;
    }

    /* ===== HERO SECTION ===== */
    .hero { 
        margin-top: 60px; 
        height: 85vh; 
        position: relative; 
        overflow: hidden; 
        background: #000; 
        display: flex; 
        justify-content: center; 
        align-items: center; 
    }
    .hero-video { 
        position: absolute; 
        top: 50%; 
        left: 50%; 
        min-width: 100%; 
        min-height: 100%; 
        transform: translate(-50%, -50%); 
        object-fit: cover; 
        z-index: 1; 
        opacity: 0.7; 
    }
    .hero-text { 
        position: relative; 
        z-index: 15; 
        color: white; 
        text-align: center; 
        max-width: 900px; 
        padding: 0 20px; 
    }
    .hero-text h1 { 
        font-family: 'Playfair Display', serif; 
        font-size: 3.8rem; 
        background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C); 
        -webkit-background-clip: text; 
        -webkit-text-fill-color: transparent; 
        margin-bottom: 15px; 
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    }
    .hero-fade-overlay { 
        position: absolute; 
        bottom: -1px; 
        width: 100%; 
        height: 300px; 
        background: linear-gradient(to bottom, transparent, #F5EBDD); 
        z-index: 10; 
    }

    /* ===== CONTENT SECTIONS ===== */
    .section { padding: 80px 10%; display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
    .section.reverse { flex-direction: row-reverse; }
    .content { flex: 1; min-width: 320px; }
    .image-box { flex: 1; min-width: 320px;}
    .image-box img { 
        width: 100%; 
        border-radius: 15px; 
        box-shadow: 20px 20px 0px rgba(30, 58, 138, 0.05); 
        opacity: 0; 
        transition: 1.2s ease-out; 
    }

    
    
    h2 { font-family: 'Playfair Display', serif; color: #1E3A8A; font-size: 2.5rem; margin-bottom: 25px; line-height: 1.2; }
    p { line-height: 1.8; margin-bottom: 20px; font-size: 1.1rem; color: #444; }

    /* ===== FEATURE BOXES ===== */
    .feature-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
        gap: 25px; 
        padding: 40px 10% 80px; 
    }
    .feature-item { 
        background: white; 
        padding: 40px; 
        border-radius: 10px; 
        border-top: 5px solid #B8860B;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: 0.3s;
    }
    .feature-item:hover { transform: translateY(-10px); }
    .feature-item h3 { color: #1E3A8A; margin-bottom: 15px; font-family: 'Playfair Display', serif; font-size: 1.4rem; }

    /* ===== SIP SECTION ===== */
    .sip-banner { background: #ffffff; color: white; padding: 100px 10%; text-align: center; }
    .sip-banner h2 { color: #1E3A8A; margin-bottom: 30px; }
    .sip-list { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
    .sip-point { 
        background: rgba(12, 49, 135, 0.7); 
        padding: 15px 30px; 
        border-radius: 30px; 
        border: 1px solid rgba(255,255,255,0.3); 
        font-weight: 600;
    }

    /* ===== PARALLAX STORY SECTION ===== */
    .story {
        height: 60vh;
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                    url('./asset/i3.jpg') 
                    no-repeat center center/cover;
        background-attachment: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        padding: 0 8%;
    }
    .story h2 {
        font-size: 32px;
        font-family: 'Playfair Display', serif;
        color: white;
        line-height: 1.4;
    }
    .script {
        font-family: 'Great Vibes', cursive;
        font-size: 55px;
        color: #FFD700;
    }

    /* ===== MARQUEE ===== */
    .marquee { width:100%; overflow:hidden; background: #fff; padding: 40px 0; }
    .marquee-content { display:flex; gap:40px; width: max-content; animation:scrollLeft 20s linear infinite; }
    .cat-item { text-align:center; width: 200px; }
    .cat-item img { width:180px; height:180px; object-fit:cover; border-radius:50%; margin-bottom: 15px; border: 4px solid #F5EBDD; }
    @keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ===== ANIMATIONS ===== */
    .reveal.show { opacity: 1 !important; transform: translateX(0) !important; }
    .left-slide { transform: translateX(-80px); }
    .right-slide { transform: translateX(80px); }

    /* ===== FOOTER ===== */
    footer { background: #111; color: white; padding: 80px 10% 30px; }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; }
    .footer-grid h3 { color: #FFD700; margin-bottom: 25px; font-family: 'Playfair Display', serif; }
    .footer-grid a { color: #aaa; text-decoration: none; display: block; margin-bottom: 12px; transition: 0.3s; }
    .footer-grid a:hover { color: #fff; padding-left: 5px; }

    /* ===== MOBILE NAVIGATION (FIXED) ===== */
    @media (max-width: 992px) {
        header { padding: 15px 5%; }
        nav { 
            display: none; 
            position: absolute; 
            top: 100%; 
            left: 0; 
            width: 100%; 
            background: white; 
            flex-direction: column; 
            padding: 20px 0; 
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            border-top: 1px solid #eee;
        }
        nav.active { display: flex; }
        nav a { margin: 15px 0; font-size: 1.1rem; width: 100%; text-align: center; }
        .call-btn { margin-left: 0; width: 80%; }
        .menu-toggle { display: block; }
        
        .hero-text h1 { font-size: 2.5rem; }
        .section { padding: 50px 8%; text-align: center; }
        h2 { font-size: 2rem; }
        
        .logo span { display:inline; font-size: 15px; }
        /* Mobile adjustment for parallax */
        .story { background-attachment: scroll; }
    }



