
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --brand-red: #D32F2F;
            --brand-gold: #FFAB00;
            --text-dark: #1A1A1B;
            --text-gray: #555555;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: #f9f9f9;
        }

        /* Header Main */
        .premium-header {
            background: var(--white);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            padding: 10px 0;
        }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-logo img {
            height: 80px;
            transition: transform 0.3s;
        }

        .header-logo img:hover {
            transform: scale(1.05);
        }

        /* Navigation */
        .nav-list {
            display: flex;
            list-style: none;
            /* gap: 15px; */
        }

        .nav-link {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--brand-red);
            background: rgba(211, 47, 47, 0.05);
        }

        /* Dropdown Premium Look */
        .nav-item-dropdown {
            position: relative;
        }

        .mega-dropdown {
            position: absolute;
            top: 150%;
            left: 0;
            width: 250px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            list-style: none;
            padding: 15px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-top: 4px solid var(--brand-red);
        }

        .nav-item-dropdown:hover .mega-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-dropdown li a {
            display: block;
            padding: 10px 15px;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 14px;
            border-radius: 8px;
            transition: 0.3s;
        }

        .mega-dropdown li a:hover {
            background: #fdf2f2;
            color: var(--brand-red);
            padding-left: 20px;
        }

        /* --- PREMIUM BUTTONS  --- */

        .header-btns {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-premium-outline {
            position: relative;
            padding: 7px 16px;
            font-size: 14px;
            font-weight: 700;
            color: #D32F2F;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid #D32F2F;
            border-radius: 12px;
            background: transparent;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
            z-index: 1;
        }

        .btn-premium-outline:hover {
            color: #ffffff;
            border-color: #D32F2F;
            box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
            transform: translateY(-2px);
        }

        .btn-premium-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #D32F2F;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: -1;
        }

        .btn-premium-outline:hover::before {
            left: 0;
        }

        .btn-premium-gradient {
            position: relative;
            padding: 7px 16px;
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: linear-gradient(135deg, #FF4500 0%, #D32F2F 100%);
            border-radius: 12px;
            border: 1px solid #FF4500;
            box-shadow: 0 8px 15px rgba(211, 47, 47, 0.3),
                inset 0 -4px 0 rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            top: 0;
            left: 0;
            filter: blur(15px);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: -1;
            border-radius: 12px;
        }

        .btn-premium-gradient:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 15px 25px rgba(211, 47, 47, 0.4),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
        }

        .btn-premium-gradient:hover .btn-glow {
            opacity: 0.6;
        }

        @keyframes pulse-red {
            0% {
                box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
            }
        }

        .btn-premium-gradient {
            animation: pulse-red 2s infinite;
        }

        .btn-premium-gradient:active,
        .btn-premium-outline:active {
            transform: translateY(1px);
        }

        @media (max-width: 1000px) {
            .header-inner {
                padding: 10px 15px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }

            .header-logo img {
                height: 40px !important;
                width: auto;
            }

            .header-btns {
                display: flex;
                align-items: center;
                gap: 8px;
            }




            .btn-premium-gradient {
                padding: 6px 8px !important;
                font-size: 10px !important;
                letter-spacing: 0.5px !important;
                box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2) !important;
            }

            .mobile-toggle {
                display: flex !important;
                flex-direction: column;
                gap: 4px;
                background: none;
                border: none;
                cursor: pointer;
                padding: 5px;
                z-index: 1002;
            }

            .mobile-toggle span {
                width: 22px;
                height: 2px;
                background: var(--brand-red);
                transition: 0.3s;
            }

            .header-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                /* Increased width */
                height: 100vh;
                background: var(--white);
                padding: 80px 20px;
                display: block !important;
                transition: 0.4s ease-in-out;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                box-sizing: border-box;
                overflow-y: auto;
            }

            .header-nav.active {
                right: 0;
            }

            /* Make nav-list vertical on mobile */
            .nav-list {
                flex-direction: column;
                gap: 10px;
                padding: 0;
                margin: 0;
            }

            /* Dropdown menu mobile fix */
            .nav-item-dropdown .mega-dropdown {
                position: static;
                display: none;
                box-shadow: none;
                border-top: none;
                padding-left: 10px;
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            .nav-item-dropdown.open .mega-dropdown {
                display: block;
            }

            /* Adjust nav-link padding and font size on mobile */
            .nav-link {
                padding: 8px 12px;
                font-size: 16px;
            }

        }


        /* =============== GALLERY section============ --- */
        .gallery-premium-section {
            padding: 100px 0;
            margin-top: 50px;
            background: #ffffff;
            font-family: 'Outfit', sans-serif;
        }

        .container-gallery {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .g-tag {
            color: #D32F2F;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
        }

        .g-title {
            font-size: 36px;
            font-weight: 800;
            margin-top: 10px;
            color: #1a1a1b;
        }

        .g-title span {
            color: #D32F2F;
        }

        .g-underline {
            width: 60px;
            height: 4px;
            background: #FFAB00;
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* Grid Layout */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s ease;
        }

        .g-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(211, 47, 47, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
        }

        .g-overlay i {
            color: #fff;
            font-size: 30px;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover .g-overlay {
            opacity: 1;
        }

        /* --- MODAL / LIGHTBOX CSS UPDATED --- */
        .modal-overlay {
            display: none;
            /* JS se flex ho jayega */
            position: fixed;
            z-index: 99999;
            /* Sabse upar */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            /* Darker background for focus */

            /* YEH DO LINES CENTER KARENGI */
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            /* Thoda chota kiya taaki screen mein fit rahe */
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mySlides {
            display: none;
            width: 100%;
            text-align: center;
        }

        .mySlides img {
            max-width: 100%;
            max-height: 85vh;
            /* Screen height se bahar nahi jayega */
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(211, 47, 47, 0.2);
            /* Red subtle glow */
        }

        /* Close Button Position */
        .close-btn {
            position: absolute;
            top: 30px;
            right: 40px;
            color: #fff;
            font-size: 45px;
            font-weight: 300;
            cursor: pointer;
            z-index: 100001;
            transition: 0.3s;
        }

        .close-btn:hover {
            color: #D32F2F;
        }

        /* Arrows Position */
        .prev-arrow,
        .next-arrow {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            /* Vertical center */
            padding: 20px;
            color: white;
            font-size: 40px;
            transition: 0.3s ease;
            user-select: none;
            text-decoration: none;
            z-index: 100002;
            background-color: #D32F2F;
        }

        .next-arrow {
            right: -60px;
        }

        /* Screen se thoda bahar Desktop par */
        .prev-arrow {
            left: -60px;
        }

        .prev-arrow:hover,
        .next-arrow:hover {
            color: #D32F2F;
        }

        /* Mobile view par arrows ko image ke andar lana padega */
        @media (max-width: 1100px) {
            .next-arrow {
                right: 10px;
                background: rgba(0, 0, 0, 0.3);
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .prev-arrow {
                left: 10px;
                background: rgba(0, 0, 0, 0.3);
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .close-btn {
                top: 20px;
                right: 25px;
                font-size: 40px;
            }
        }

        /* ===========footer=========== */
        .premium-footer {
            background-color: #0a0a0a;
            color: #ffffff;
            padding: 80px 20px 20px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            /* Border color changed to Tomato */
            border-top: 3px solid tomato;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
        }

        .footer-column h4 {
            /* Text color changed to Tomato */
            color: tomato;
            font-size: 1.2rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            /* Underline color changed to Tomato */
            background: tomato;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .footer-logo span {
            /* Logo accent color changed to Tomato */
            color: tomato;
        }

        .about-text {
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: 0.3s;
            font-size: 0.95rem;
        }

        .footer-column ul li a:hover {
            /* Hover link color changed to Tomato */
            color: tomato;
            padding-left: 5px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: #cbd5e1;
            font-size: 0.95rem;
        }

        .contact-item i {
            /* Icon color changed to Tomato */
            color: tomato;
            margin-top: 4px;
        }

        .contact-item a {
            color: #cbd5e1;
            text-decoration: none;
            transition: 0.3s;
        }

        .contact-item a:hover {
            color: #ffffff;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            /* Social icon color changed to Tomato */
            color: tomato;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-links a:hover {
            /* Hover background changed to Tomato */
            background: tomato;
            color: #000;
            transform: translateY(-3px);
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: #64748b;
            font-size: 0.85rem;
        }

        /* Responsive Grid */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

         @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
                /* text-align: center; */
            }}


