        body {
            background: linear-gradient(120deg, #7a2e00 0%, #ff6f00 100%);
            min-height: 100vh;
            font-family: 'Baloo Bhai 2', 'Mukta', 'Lohit Devanagari', 'Segoe UI', sans-serif;
            color: #fff;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            overflow-x: hidden;
        }
        
        .header-logo-bg {
            /* Keep existing header-logo-bg styles unchanged */
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 80px;
            margin-bottom: 8px;
            position: relative;
            width: 100%;
            max-width: 700px;
        }
        
        .logo-glow {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            box-shadow: 0 0 32px 8px #fff7, 0 0 0 8px #ff910055;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            z-index: 2;
            position: relative;
        }
        
        .logo-glow img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 2px 18px #a13a0033;
        }
        
        .flag {
            position: absolute;
            top: -60px;
            width: 300px;
            height: 300px;
            /* z-index: 3; */
            /* filter: drop-shadow(0 2px 8px #ff6f00aa); */
        }
        
        .flag.left {
            left: 0;
            transform: scaleX(-1);
        }
        
        .flag.right {
            right: 0;
            transform: scaleX(1);
        }
        
        @media (max-width: 600px) {
            .flag {
                width: 265px;
                height: 170px;
                top: -30px;
                MAX-WIDTH: 160PX;
            }
            .header-logo-bg {
                max-width: 98vw;
            }
            .logo-glow img {
                width: 250px;
                height: 250px;
            }
        }
        
        .org-title {
            font-family: 'Baloo Bhai 2', 'Mukta', 'Lohit Devanagari', sans-serif;
            font-size: 4.1rem;
            font-weight: bold;
            color: #fff;
            letter-spacing: 1.5px;
            text-align: center;
            text-shadow: 0 2px 12px #ff8600, 0 0 2px #ff8600, 0 0 8px #ff8600, -2px -2px 0 #ff8600, 2px -2px 0 #ff8600, -2px 2px 0 #ff8600, 2px 2px 0 #ff8600;
        }
        
        .org-subtitle {
            font-family: 'Mukta', 'Baloo Bhai 2', cursive, sans-serif;
            font-size: 1.5rem;
            color: #fffbe9;
            text-shadow: 0 2px 12px #a13a0033;
            margin-bottom: 12px;
            margin-top: -30px;
            font-weight: bold;
            letter-spacing: 1px;
            padding: 0 12px;
            background: rgba(255, 111, 0, 0.7);
            border-radius: 18px;
            box-shadow: 0 2px 10px #a13a0033;
            width: fit-content;
            max-width: 90%;
            text-align: center;
        }
        
        .org-motto {
            font-family: 'Mukta', 'Baloo Bhai 2', cursive, sans-serif;
            font-size: 1.18rem;
            color: #fffbe9;
            text-shadow: 0 2px 12px #a13a0033;
            margin-bottom: 18px;
            text-align: center;
        }
        /* New redesigned styles below */
        
        .form-card {
            width: 98%;
            max-width: 450px;
            background: #fffaf5;
            color: #7a2e00;
            border-radius: 24px;
            box-shadow: 0 4px 24px 0 rgba(122, 46, 0, 0.25);
            border: none;
            padding: 0;
            margin: 0 auto 28px auto;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .form-header {
            background: linear-gradient(135deg, #ff6f00 0%, #ff9100 100%);
            color: #fff;
            border-radius: 24px 24px 0 0;
            padding: 20px 15px;
            text-align: center;
            font-size: 1.5rem;
            font-weight: bold;
            letter-spacing: 1px;
            box-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
            position: relative;
        }
        
        .form-header::before,
        .form-header::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            /*background-image: url('assets/om.png');*/
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.3;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .form-header::before {
            left: 15px;
        }
        
        .form-header::after {
            right: 15px;
        }
        
        form#regForm {
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .form-section {
            display: flex;
            flex-direction: column;
            gap: 18px;
            background: rgba(255, 247, 240, 0.5);
            padding: 15px;
            border-radius: 16px;
            border: 1px solid rgba(255, 111, 0, 0.1);
        }
        
        .form-row {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .form-label {
            color: #ff6f00;
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
        }
        
        .form-control {
            border-radius: 12px;
            border: 2px solid rgba(255, 145, 0, 0.5);
            background: #fff;
            padding: 12px 15px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            color: #7a2e00;
        }
        
        .form-control:focus {
            border-color: #ff6f00;
            box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.2);
            outline: none;
        }
        
        .file-upload-group {
            background: #fff7f0;
            border: 2px dashed #ff9100;
            border-radius: 16px;
            padding: 20px 15px;
            margin-bottom: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .file-upload-group label {
            color: #ff6f00;
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .file-upload-group label::before {
            content: '📎';
            margin-right: 8px;
            font-size: 1.2rem;
        }
        
        .file-input {
            background: #fff;
            border: 1px solid rgba(255, 145, 0, 0.5);
            border-radius: 10px;
            padding: 10px;
        }
        
        .img-fluid {
            border: none;
            border-radius: 18px;
            margin: 10px auto;
            max-width: 200px;
            height: auto;
            display: block;
            box-shadow: 0 4px 15px rgba(122, 46, 0, 0.15);
        }
        
        .btn-bhagva {
            background: linear-gradient(135deg, #ff6f00 0%, #ff9100 100%);
            color: #fff;
            font-family: 'Baloo Bhai 2', 'Mukta', sans-serif;
            font-weight: bold;
            border-radius: 50px;
            border: none;
            box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
            letter-spacing: 1px;
            transition: all 0.3s ease;
            font-size: 1.25rem;
            padding: 15px 0;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-bhagva::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .btn-bhagva:hover::before {
            left: 100%;
        }
        
        .btn-bhagva:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
        }
        
        .btn-bhagva:active {
            transform: translateY(1px);
            box-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
        }
        
        .alert-danger {
            background: #fff0f0;
            color: #d32f2f;
            border-radius: 12px;
            border-left: 4px solid #d32f2f;
            font-size: 1rem;
            padding: 12px 15px;
        }
        
        .input-error {
            color: #d32f2f;
            font-size: 0.9em;
            margin-top: 4px;
            display: flex;
            align-items: center;
        }
        
        .input-error::before {
            content: '⚠️';
            margin-right: 5px;
            font-size: 0.9em;
        }
        
        .scan-section {
            text-align: center;
            background: #fff7f0;
            border-radius: 16px;
            padding: 15px;
            margin-top: 10px;
            border: 1px solid rgba(255, 111, 0, 0.1);
        }
        
        .scan-text {
            color: #ff6f00;
            font-weight: 600;
            margin: 10px 0;
            font-size: 1.05rem;
        }
        
        @media (min-width: 600px) {
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            .form-row>.col {
                flex: 1 1 0;
            }
        }
        
        @media (max-width: 600px) {
            .form-card {
                width: 92%;
                border-radius: 20px;
            }
            .form-header {
                padding: 15px 10px;
                font-size: 1.3rem;
            }
            form#regForm {
                padding: 18px 15px;
            }
            .form-control {
                padding: 10px 12px;
            }
            .btn-bhagva {
                font-size: 1.15rem;
                padding: 12px 0;
            }
            .org-title {
                font-size: 2.8rem;
            }
            .org-subtitle {
                font-size: 1.2rem;
                margin-top: 0px;
            }
        }
        
        .lang-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 100;
        }
        
        .lang-btn {
            background: rgba(255, 255, 255, 0.8);
            color: #7a2e00;
            font-weight: bold;
            padding: 10px 15px;
            border-radius: 12px;
            text-decoration: none;
            transition: background 0.3s ease;
            display: inline-block;
        }
        
        .lang-btn:hover {
            background: rgba(255, 255, 255, 1);
        }
        /*Footer*/
        
        .footer-bar {
            width: 100%;
            background: linear-gradient(135deg, #a34700 0%, #ff6f00 100%);
            color: #fff;
            padding: 25px 10px;
            text-align: center;
            margin-top: 40px;
            box-shadow: 0 -8px 30px rgba(122, 46, 0, 0.2);
        }
        
        .footer-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }
        
        .footer-contact {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 5px;
        }
        
        .footer-item {
            display: flex;
            align-items: center;
            font-size: 1.05rem;
            line-height: 1.5;
        }
        
        .footer-icon {
            margin-right: 10px;
            font-size: 1.3rem;
        }
        
        .footer-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
            width: 80%;
            margin: 5px auto;
        }
        
        .developer-credits {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }
        
        .developer-credits:hover {
            opacity: 1;
        }
        
        .developer-text {
            font-weight: bold;
            color: #fff8e1;
        }
        
        .developer-logo {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }
        
        .developer-logo a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .developer-logo a:hover {
            color: #ffe0b2;
            text-decoration: underline;
        }
        
        .developer-by {
            opacity: 0.8;
            margin: 0 5px;
        }
        
        .legal-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 10px 0;
        }
        
        .legal-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            padding: 8px 12px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .legal-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffe0b2;
            transform: translateY(-2px);
        }
        
        @media (max-width: 600px) {
            .footer-contact {
                flex-direction: column;
                gap: 10px;
            }
            .footer-item {
                font-size: 1rem;
            }
            .developer-logo {
                flex-direction: column;
                gap: 5px;
            }
            .developer-by {
                display: none;
            }
            .legal-links {
                flex-direction: column;
                gap: 8px;
                align-items: center;
            }
            .legal-links a {
                font-size: 0.85rem;
                padding: 6px 10px;
            }
        }