
        :root {
            --primary-gold: #FDC800;
            --deep-gold: #FDC800;
            --light-gold: #FFF4CC;
            --cream: #FFFCF5;
            --ivory: #FFFFF0;
            --dark-text: #1A1A1A;
            --medium-text: #333333;
            --light-text: #666666;
            --white: #ffffff;
            --shadow-subtle: rgba(253, 200, 0, 0.15);
            --shadow-medium: rgba(253, 200, 0, 0.25);
            --shadow-strong: rgba(0, 0, 0, 0.1);
            --border-radius-sm: 8px;
            --border-radius-md: 16px;
            --border-radius-lg: 24px;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .title-highlight::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--primary-gold);
            border-radius: 4px;
            opacity: 0.5;
            z-index: -1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--cream);
            color: var(--medium-text);
            min-height: 100vh;
            position: relative;
            line-height: 1.6;
        }

        /* Master Container with Premium Layout */
        .master-container {
            min-height: 100vh;
            display: grid;
            grid-template-areas: 
                "header header header"
                "content image ."
                "features cta cta";
            grid-template-columns: 1.2fr 1fr 0.2fr;
            grid-template-rows: auto 1fr auto;
            gap: 0;
            position: relative;
            max-width: 1800px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Luxury Background Elements */
        .luxury-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-gold) 100%, #FDC800 100%);
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
            z-index: 1;
        }

        .gold-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255,255,255,0.03)" d="M0 0h50v50H0z" opacity=".5"/></svg>');
            background-size: 20px 20px;
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
            z-index: 2;
        }

        .texture-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="rgba(253,200,0,0.05)" stroke-width="0.5" d="M0 0h100v100H0zM0 0L100 100M100 0L0 100"/></svg>');
            background-size: 30px 30px;
            z-index: 3;
            pointer-events: none;
        }

        /* Header Section - Premium */
        .header-section {
            grid-area: header;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem 2rem 1rem;
            position: relative;
            z-index: 10;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .header-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(253, 200, 0, 0.3);
            border: 4px solid var(--primary-gold);
            background: var(--white);
            transition: var(--transition);
        }

        .header-photo:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(253, 200, 0, 0.5);
        }

        .header-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .photo-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--light-gold) 0%, var(--primary-gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--white);
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-gold);
            border-radius: var(--border-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark-text);
            box-shadow: 0 6px 30px var(--shadow-medium);
            transition: var(--transition);
            position: relative;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255,255,255,0.3) 0%,
                rgba(255,255,255,0) 60%
            );
            transform: rotate(30deg);
        }

        .logo-icon:hover {
            transform: rotate(5deg) scale(1.05);
        }

        .brand-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-text);
            letter-spacing: 0.5px;
            font-family: 'Playfair Display', serif;
            position: relative;
        }

        .header-badge {
            background: var(--primary-gold);
            color: var(--dark-text);
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 6px 25px var(--shadow-medium);
            transition: var(--transition);
            position: relative;
            border: none;
            font-family: 'Poppins', sans-serif;
        }
/* 
        .header-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: 0.5s;
        } */

        .header-badge:hover::before {
            left: 100%;
        }

        /* Content Section - Premium */
        .content-section {
            grid-area: content;
            padding: 1rem 1rem 1rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 10;
        }

        .main-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--dark-text);
            line-height: 1.1;
            margin-bottom: 1.2rem;
            position: relative;
            font-family: 'Playfair Display', serif;
            letter-spacing: -1px;
            margin-top: 75px;
        }

        .title-highlight {
            color: var(--primary-gold);
            position: relative;
            display: inline-block;
            font-weight: 900;
        }

        .subtitle {
            font-size: 1.3rem;
            color: var(--medium-text);
            font-weight: 500;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            max-width: 90%;
            font-family: 'Playfair Display', serif;
        }

        .description-text {
            font-size: 1rem;
            color: var(--light-text);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-weight: 400;
            max-width: 90%;
        }

        /* Image Section - Premium */
        .image-section {
            grid-area: image;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            position: relative;
            z-index: 5;
            padding: 2rem;
            margin-top: 2rem;
            /* margin-right: -10rem; */
        }                                                                                   

        .image-container {
            position: relative;
            width: 100%;
            max-width: 400px;
            height: 300px;
            transform: perspective(1200px) rotateY(-8deg) rotateX(5deg);
            transition: var(--transition);
            /* filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2)); */
        }

        .image-container:hover {
            transform: perspective(1200px) rotateY(-5deg) rotateX(3deg) scale(1.03);
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
            border-radius: var(--border-radius-lg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 3px dashed var(--primary-gold);
            color: var(--light-text);
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
            box-shadow: 
                0 0 0 6px var(--white),
                0 0 0 10px var(--primary-gold),
                0 40px 80px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.8;
            animation: gentleFloat 4s ease-in-out infinite;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
            z-index: 10;
        }

        .icon-1 { top: -15px; left: -15px; animation-delay: 0s; color: var(--primary-gold); }
        .icon-2 { top: -20px; right: -20px; animation-delay: 1s; color: var(--primary-gold); }
        .icon-3 { bottom: -15px; left: -15px; animation-delay: 2s; color: var(--primary-gold); }
        .icon-4 { bottom: -20px; right: -20px; animation-delay: 0.5s; color: var(--primary-gold); }

        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        /* Features Section - Premium */
        .features-section {
            grid-area: features;
            padding: 1rem 1rem 2rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
            z-index: -5;
        }

        .features-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1.2rem;
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
        }

        .features-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 2px;
        }

        .features-list {
            display: grid;
            gap: 0.8rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.2rem;
            background: var(--white);
            border-radius: var(--border-radius-md);
            box-shadow: 0 6px 20px var(--shadow-strong);
            border-left: 4px solid var(--primary-gold);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-item:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 30px var(--shadow-medium);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
            color: var(--dark-text);
            box-shadow: 0 4px 12px var(--shadow-medium);
            z-index: 2;
            transition: var(--transition);
        }

        .feature-text {
            font-size: 0.95rem;
            color: var(--dark-text);
            font-weight: 500;
            z-index: 2;
            line-height: 1.4;
        }

        /* CTA Section - Premium */
        .cta-section {
            grid-area: cta;
            padding: 2rem;
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
            align-items: center;
            position: relative;
            z-index: 10;
            gap: 2rem;
        }

        /* .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            background: radial-gradient(circle at center, rgba(253, 200, 0, 0.05) 0%, transparent 50%);
            transform: translate(-50%, -50%);
            z-index: -1;
        } */

        .cta-container {
            text-align: left;
            background: var(--white);
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            box-shadow: 0 30px 80px var(--shadow-strong);
            border: 1px solid rgba(253, 200, 0, 0.15);
            position: relative;
            max-width: 800px;
            width: 100%;
            transition: var(--transition);
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 2rem;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), #FDC800, var(--primary-gold));
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
            border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .cta-info {
            display: flex;
            flex-direction: column;
            flex: 1;
            gap: 0.8rem;
        }

        .cta-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark-text);
            margin-bottom: 0;
            font-family: 'Playfair Display', serif;
        }

        .cta-subtitle {
            font-size: 0.95rem;
            color: var(--light-text);
            margin-bottom: 0;
            line-height: 1.5;
            max-width: 250px;
        }

        .age-tags {
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 0;
        }

        .age-tag {
            background: var(--ivory);
            color: var(--dark-text);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid var(--primary-gold);
            transition: var(--transition);
        }

        .age-tag:hover {
            background: var(--primary-gold);
            transform: translateY(-2px);
        }

        .cta-notice {
            font-size: 0.9rem;
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 0;
            font-style: italic;
        }

        .button-sparkles {
            position: relative;
            display: inline-block;
            width: 100%;
            overflow: visible;
            padding: 20px 0;
        }

        .sparkle {
            position: absolute;
            color: var(--primary-gold);
            font-size: 1.2rem;
            animation: sparkleFloat 3s ease-in-out infinite;
        }

        .sparkle-1 {
            top: -10px;
            left: 10%;
            animation-delay: 0s;
        }

        .sparkle-2 {
            top: 10px;
            right: 5%;
            animation-delay: 0.5s;
            font-size: 1rem;
        }

        .sparkle-3 {
            bottom: 10px;
            left: 5%;
            animation-delay: 1s;
            font-size: 1rem;
        }

        .sparkle-4 {
            bottom: -10px;
            right: 10%;
            animation-delay: 1.5s;
        }

        @keyframes sparkleFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-5px) rotate(180deg);
                opacity: 1;
            }
        }

        .register-wrapper {
            margin-top: 0;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
        }

        .register-emphasis {
            text-align: center;
            margin-bottom: 1rem;
        }

        .emphasis-arrow {
            font-size: 1.5rem;
            color: var(--primary-gold);
            animation: bounce 1.5s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(10px); }
        }

        .register-icons {
            display: flex;
            justify-content: center;
            gap: 0.3rem;
            margin-top: 1rem;
            color: var(--primary-gold);
            font-size: 1.2rem;
        }

        .register-btn {
            background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
            color: var(--dark-text);
            padding: 1.5rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 
                0 15px 40px rgba(253, 200, 0, 0.4),
                0 0 0 3px rgba(253, 200, 0, 0.1),
                0 0 80px rgba(253, 200, 0, 0.3);
            position: relative;
            font-family: 'Poppins', sans-serif;
            width: 100%;
            max-width: 350px;
            margin: 0 auto;
            display: block;
            animation: pulse 2s infinite;
            text-align: center;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 
                    0 15px 40px rgba(253, 200, 0, 0.4),
                    0 0 0 3px rgba(253, 200, 0, 0.1),
                    0 0 80px rgba(253, 200, 0, 0.3);
            }
            50% {
                transform: scale(1.02);
                box-shadow: 
                    0 20px 50px rgba(253, 200, 0, 0.6),
                    0 0 0 5px rgba(253, 200, 0, 0.2),
                    0 0 100px rgba(253, 200, 0, 0.5);
            }
            100% {
                transform: scale(1);
                box-shadow: 
                    0 15px 40px rgba(253, 200, 0, 0.4),
                    0 0 0 3px rgba(253, 200, 0, 0.1),
                    0 0 80px rgba(253, 200, 0, 0.3);
            }
        }

        /* .register-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        } */

        .register-btn:hover::before {
            left: 100%;
        }

        /* .register-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 25px 60px rgba(253, 200, 0, 0.6),
                0 0 0 6px rgba(253, 200, 0, 0.3),
                0 0 120px rgba(253, 200, 0, 0.6);
            animation: none;
        } */

        /* .register-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(253, 200, 0, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            z-index: -1;
            animation: glow 2s ease-in-out infinite alternate;
        } */

        @keyframes glow {
            0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
            100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
        }

        /* Responsive Design - Premium */
        @media (max-width: 1200px) {
            .master-container {
                grid-template-areas: 
                    "header header header"
                    "content image ."
                    "features . cta";
                grid-template-columns: 1fr 1fr;
                padding: 1.5rem;
            }
            
            .main-title {
                font-size: 3rem;
            }
            
            .luxury-bg, .gold-pattern {
                width: 50%;
                clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
            }
            
            .cta-section {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-container {
                text-align: center;
                max-width: 380px;
                flex-direction: column;
            }
            
            .cta-info {
                text-align: center;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .master-container {
                grid-template-areas: 
                    "header"
                    "content"
                    "image"
                    "features"
                    "cta";
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto auto auto;
                padding: 1rem;
                min-height: auto;
            }
            
            .image-section {
                align-items: center;
                justify-content: center;
            }
            
            .cta-section {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-container {
                text-align: center;
                max-width: 380px;
                flex-direction: column;
            }
            
            .cta-info {
                text-align: center;
                align-items: center;
            }
            
            .header-right {
                gap: 0.8rem;
            }
            
            .header-photo {
                width: 60px;
                height: 60px;
            }
            
            .header-badge {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }
            
            .luxury-bg, .gold-pattern {
                display: none;
            }
            
            .main-title {
                font-size: 2.5rem;
            }
            
            .image-container {
                height: 250px;
                transform: none;
                max-width: 100%;
            }
            .features-section{
                margin-top: 60px;
            }
        }

        /* Premium Animations */
        .content-section, .features-section, .cta-section {
            animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) both;
        }

        .image-section {
            animation: fadeInRight 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            background: var(--primary-gold);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 4;
            animation: floatParticle linear infinite;
        }

        @keyframes floatParticle {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-100vh) rotate(360deg); }
        }

        .floating-icon.icon-1 > i, .floating-icon.icon-2 > i, .floating-icon.icon-3 > i, .floating-icon.icon-4 > i {
            color: #ffdd00;
        }

        /* Punjabi Elements */
        .punjabi-letter {
            font-size: 2.5rem;
            color: var(--primary-gold);
            font-weight: bold;
            position: absolute;
            z-index: 5;
            opacity: 0.7;
            animation: floatLetter 8s ease-in-out infinite;
        }

        @keyframes floatLetter {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(5px, -10px) rotate(5deg); }
            50% { transform: translate(-5px, 5px) rotate(-5deg); }
            75% { transform: translate(10px, 5px) rotate(3deg); }
        }

        .punjabi-letter.letter-1 { top: 5%; left: 45%; animation-delay: 0s; }
        .punjabi-letter.letter-2 { top: 25%; right: 50%; animation-delay: 1s; }
        .punjabi-letter.letter-3 { bottom: 20%; left: 8%; animation-delay: 2s; }
        .punjabi-letter.letter-4 { bottom: 30%; right: 5%; animation-delay: 3s; }

        .punjabi-pattern {
            position: absolute;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="10" y="30" font-family="Arial" font-size="20" fill="%23FDC800" opacity="0.2">ਉ</text><text x="40" y="60" font-family="Arial" font-size="20" fill="%23FDC800" opacity="0.2">ਅ</text><text x="70" y="90" font-family="Arial" font-size="20" fill="%23FDC800" opacity="0.2"> ੲ</text></svg>');
            background-size: 100px 100px;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .punjabi-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--primary-gold);
            color: var(--dark-text);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .top-index{
            z-index: 10;
        }

        .navbar-area   {
            font-family: 'Rubik', 'sans-serif';
        }

        .footer-area{
             font-family: 'Rubik', 'sans-serif';
        }

