﻿
        body {
            background:   #fff5e0;
            font-family: "Noto Sans Devanagari", "Segoe UI", sans-serif;
        }

	  
        .register-card {
            max-width: 1000px;
            margin: 40px auto;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
        }

	@media (max-width: 768px) {
		  .register-card
			{
	 	    margin-right: 10px; margin-left: 10px;
        	    background: #fff;
        	    border-radius: 20px;
	            overflow: hidden;
        	    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
			}
		}


        .left-banner {
            background: url('images/gita-bg.jpg') center/cover no-repeat;
            min-height: 100%;
            position: relative;
        }

        .left-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 145, 0, 0.3);
        }

        .form-side {
            padding: 40px 50px;
        }

        h2 {
            font-weight: 700;
            color: #a94400;
            text-align: center;
        }

        h6 {
            text-align: center;
            color: #555;
            font-size: 1rem;
            margin-bottom: 25px;
        }

        label {
            font-weight: 600;
            color: #4a2600;
        }

        .form-control:focus, .form-select:focus {
            border-color: #e67e22;
            box-shadow: 0 0 5px rgba(230, 126, 34, 0.5);
        }

        .btn-register {
            background: linear-gradient(45deg, #e67e22, #f39c12);
            border: none;
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            padding: 10px 35px;
            transition: all 0.3s;
        }

        .btn-register:hover {
            background: linear-gradient(45deg, #d35400, #f39c12);
            transform: scale(1.03);
        }

        .accordion-button {
            background: #fffaf0;
            color: #a94400;
            font-weight: 600;
        }

        .accordion-body {
            background: #fffdf7;
            color: #333;
        }

        .error-message {
            color: #cc3300;
            text-align: center;
            font-weight: 500;
            margin-top: 8px;
        }

        @media (max-width: 767px) {
            .left-banner {display: none; }
            .form-side   { padding: 25px; }
        }

        .footer {
        background: linear-gradient(45deg, #e67e22, #f39c12);
        font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .footer a {
        transition: 0.3s;
        }

        .footer a:hover {
            color: #fffbe8;
            transform: scale(1.2);
       }

        .footer-logo {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        border: 2px solid #fff;
        background: #fff;
        padding: 5px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
        .footer-logo {
            width: 70px;
            height: 70px;
        }
    }

   .quiz-title {
    font-family: "Noto Sans Devanagari", "Poppins", sans-serif;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(45deg, #a94400, #f39c12, #a94400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.quiz-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, #f39c12, #e67e22, #d35400);
    border-radius: 10px;
}

/* Subtitle styling */
.quiz-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #804000;
    letter-spacing: 0.5px;
}

/* ✨ Shimmer Effect */
.shimmer-text span {
    background: linear-gradient(90deg, #a94400, #ffce59, #a94400);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    50% { background-position: 200% center; }
    100% { background-position: -200% center;


