



body {font: bold;
font-size: 20px;
  
}

/* 1. सब कुछ फिट करने के लिए बेसिक सेटिंग */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* 2. टॉप मूविंग एनीमेशन (New Box) */
.new-box {
    width: 100vw;
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20%;
    background: linear-gradient(90deg,#ff0073, #ffff00,#04d783, #dd7915, #6aff00, #0000ff, #ff0000);
    background-size: 400% 400%;
    animation: gradientFlow 20s ease infinite;
    z-index: 100;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
} 

.moving-text {
    white-space: nowrap;
     font-size: clamp(14px, 3vw, 20px);
    font-weight: bold;
    color: rgb(255, 248, 248);
    
    align-items: center;
  
    text-align: center;
}

/* 3. मुख्य हेडिंग (Heading) */
h1 {
    color: #ff0073;
    font-size: clamp(14px, 3vw, 20px, 30px);
    padding: 35px 10px;
    text-align: center;
    background-color: #04d783;
    width: 100vw;
    line-height: 1.5;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    border-radius: 20%;
}

/* 4. नेविगेशन मेनू (Home, News, Video आदि) */
.mmm ul {
    display: flex !important;
    list-style-type: none;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 15px;
    padding: 20px 10px;
    background: rgb(105, 112, 26);
    width: 100vw;
    gap: 20px;
    margin-top: 5px;
    
}

.mmm a {
    color:#560570;
    text-decoration: none;
    font-weight: bold;
   font-size: clamp( 20px);
    padding: 10px 15px;
    border-radius: 12px;
    border: 3px solid rgb(11, 219, 28);
    background: white;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.mmm a:hover {
    color: rgb(255, 0, 187);
    transform: scale(1.05);
}

/* 5. सोशल मीडिया लिंक (YouTube, FB आदि) - अब एक लाइन में (Horizontal) */
.aa {
    width: 100vw;
    margin: 30px auto;
    display: flex;
    justify-content: center;
}

.aa ul {
    display: flex; /* हॉरिजॉन्टल करने के लिए */
    flex-wrap: wrap;
    list-style: none;
    background: #ffd500;
    border-radius: 30px;
    padding: 10px;
    justify-content: center;
    gap: 10px;
    width: 95%;
}

.aa a {
    text-decoration: none;
    color: #110780;
    font-size: clamp(14px, 3vw, 20px, 18px);
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s;
}

.aa a:hover {
    color: #ff0000;
    transform: translateY(-3px);
}

/* 6. आपका सारा मटेरियल (Material Links/Items) */
/* अगर आपने मटेरियल के लिए कोई अलग क्लास रखी है तो यहाँ सेट होगी */
.material-section {
    width: 95%;
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
}


h2 {
    color: #131211;
    background-color: aqua;
    text-align: center;
    display: auto;
    width: auto;
    height: fit-content;
    font-size: clamp(14px, 3vw, 20px);
    align-items: center;
}

p {
    white-space: normal;
    word-wrap: break-word;
    overflow: break-word;
    line-height: 1.6;
}

.news-desc {
    width: 90%;
    margin: 0 auto;
    word-wrap: break-word;
}


.news-title {
   align-items: center;
    width: 100%;
    padding: 10px;
    word-break: break-all;
    max-width: 100vw;
}


/* Quiz Style for Manjeet's Website */
.quiz-box {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.question-text {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.option-btn {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    background: #f1f2f6;
    border: 2px solid #dfe4ea;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
    transition: 0.2s;
}

.option-btn:hover {
    background: #dfe4ea;
}

.correct-ans {
    background-color: #2ecc71 !important;
    color: white !important;
    border-color: #27ae60;
}

.wrong-ans {
    background-color: #e74c3c !important;
    color: white !important;
    border-color: #c0392b;
}

#next-question-btn {
    display: none;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

#result-screen {
    display: none;
    text-align: center;
    font-size: 24px;
    color: #3498db;
    padding: 30px;
}