/* Navbar Css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fef6f6;
}

:root {
    --primary-red: #cc2233;
    /* मूळ लालपेक्षा सौम्य */
    --secondary-red: #e63946;
    /* हायलाइटसाठी */
    --dark-red: #9d1b2b;
    /* डार्क ॲक्सेंट */
    --light-red: #ffccd5;
    /* लाईट बॅकग्राउंड */
}

/* Navbar container */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 90px;
}

/* Logo */
.logo img {
    height: 80px;
    transition: transform 0.3s ease;
    margin-left: 60px;
    margin-top: 10px;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Menu */
.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    position: relative;
    margin: 0 5px;
}

.navbar ul li a {
    text-decoration: none;
    padding: 12px 12px;
    display: block;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
}

/* Hover effect */
.navbar ul li a:hover {
    color: var(--secondary-red);
    transform: translateY(-2px);
}

/* Dropdown menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 10px 30px rgba(204, 34, 51, 0.15);
    /* नवीन रंगासह */
    border-top: 2px solid var(--primary-red);
    width: 260px;
    z-index: 999;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-content a {
    padding: 10px 20px;
    color: #555;
    display: block;
    transition: all 0.2s ease;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: rgba(204, 34, 51, 0.08);
    color: var(--primary-red);
    padding-left: 25px;
}

.navbar ul li:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, var(--dark-red), var(--primary-red));
    color: white !important;
    border-radius: 30px;
    padding: 10px 25px !important;
    margin-left: 15px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    color: white !important;
}

/* ----------------------------- */
/* ✅ Responsive Styles */
/* ----------------------------- */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #ff1493;
}

@media (max-width: 992px) {
    .navbar {
        padding: 10px 20px;
    }

    .logo img {
        height: 60px;
        transition: transform 0.3s ease;
        margin-left: 5px;
        margin-top: 6px;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-top: 2px solid #ff1493;
    }

    .navbar ul.active {
        display: flex;
    }

    .navbar ul li {
        margin: 5px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .cta-button {
        margin: 10px auto;
        display: inline-block;
    }
}


/* Main Banner Css */

/* Main Section Styles */
.hero-section {
    background-color: rgb(248, 247, 243);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 105, 105, 0.2);
    height: 87.5vh;
    padding-left: 60px;
    padding-right: 60px;
    gap: 30px;
}

/* Social Icons */
.social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 1;
}

.social-icon {
    color: var(--primary-red);
    background: rgba(204, 34, 51, 0.1);
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: scale(1);
    text-decoration: none;
}

/* Logo Image */
.logo-container {
    z-index: 1;
    margin: 0 40px;
    text-align: center;
}

.logo-img {
    max-width: 600px;
    height: auto;
}

/* Text Content */
.content-container {
    margin-left: 40px;
    text-align: center;
    z-index: 1;
    max-width: 700px;
}

.govt-text {
    font-weight: bold;
    margin-bottom: 12px;
    color: #666;
    letter-spacing: 1px;
    font-size: 34px;
}

.main-heading {
    font-size: 38px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: linear-gradient(45deg, var(--dark-red), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
    background-size: 200% 200%;
}

.para-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.std-text {
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff1493;
    font-size: 20px;
}

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hover */
.social-icon:hover {
    transform: scale(1.1);
    background: rgba(204, 34, 51, 0.2);
    color: var(--secondary-red);
}

/* --------------------------- */
/* ✅ Responsive Design */
/* --------------------------- */

/* Tablets (992px) */
@media (max-width: 992px) {
    .hero-section {
        padding: 40px 30px;
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .logo-img {
        max-width: 450px;
    }

    .govt-text {
        font-size: 28px;
    }

    .main-heading {
        font-size: 26px;
    }

    .para-text {
        font-size: 15px;
    }
}

/* Mobiles (768px) */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .social-icons {
        flex-direction: row;
        margin-bottom: 20px;
    }

    .logo-container {
        margin: 10px 0;
    }

    .logo-img {
        max-width: 320px;
    }

    .content-container {
        margin-left: 0;
        margin-top: 10px;
    }

    .govt-text {
        font-size: 22px;
    }

    .main-heading {
        font-size: 22px;
    }

    .std-text {
        font-size: 18px;
    }
}

/* Small Mobiles (480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 20px 10px;
        gap: 15px;
    }

    .logo-img {
        max-width: 250px;
    }

    .govt-text {
        font-size: 18px;
    }

    .main-heading {
        font-size: 20px;
    }

    .para-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .std-text {
        font-size: 16px;
    }

    .social-icon {
        font-size: 18px;
        width: 35px;
        height: 35px;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* Award Section */
.award-section-adv {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    background: linear-gradient(135deg, #f9f4ff 0%, #f0e9f7 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.award-section-adv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23cc2233" opacity="0.03" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    z-index: 0;
}

.award-container-adv {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header-adv {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title-adv {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title-adv::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-red), var(--primary-red));
    border-radius: 2px;
}

/* Cards */
.award-card-adv {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(92, 42, 125, 0.1);
    margin-bottom: 25px;
    display: flex;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    transform: translateY(0);
    border-left: 5px solid rgb(255, 20, 147);
}

.award-card-adv:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(92, 42, 125, 0.2);
}

.award-icon-adv {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    color: white;
    font-size: 2rem;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.award-content-adv {
    padding: 25px;
    flex: 1;
}

.award-title-adv {
    font-size: 1.4rem;
    color: #5c2a7d;
    font-weight: 600;
}

.award-text-adv {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-top: -20px;
}

.award-footer-adv {
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: -45px;
}

.award-badge-adv {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    color: white;
    padding: 8px 30px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Exam Plan */
.exam-plan-adv {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(92, 42, 125, 0.1);
    border-top: 5px solid var(--primary-red);
    position: relative;
}

.exam-header-adv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.exam-title-adv {
    font-size: 1.6rem;
    color: rgb(190, 33, 40);
    margin: 0;
    font-weight: 600;
}

.exam-list-adv {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exam-list-adv li {
    padding: 15px 0;
    border-bottom: 1px dashed #e0d0e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.exam-list-adv li:hover {
    background: rgba(166, 45, 108, 0.03);
    padding-left: 10px;
}

.exam-item-title-adv {
    color: #555;
    font-weight: 500;
    font-size: 1rem;
}

.exam-item-date-adv {
    background: linear-gradient(135deg, var(--dark-red), #5c2a7d);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    /* width auto adjust होण्यासाठी */
    text-align: center;
    white-space: nowrap;
    /* text तुटणार नाही */
}

.note-adv {
    margin-top: 20px;
    text-align: center;
}

/* --------------------------- */
/* ✅ Responsive Design */
/* --------------------------- */

/* Large tablets (992px) */
@media (max-width: 992px) {
    .section-title-adv {
        font-size: 2rem;
    }

    .award-title-adv {
        font-size: 1.2rem;
    }

    .award-text-adv {
        font-size: 0.95rem;
    }

    .exam-title-adv {
        font-size: 1.4rem;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    .award-card-adv {
        flex-direction: column;
        text-align: center;
    }

    .award-icon-adv {
        width: 100%;
        padding: 15px;
        font-size: 1.8rem;
    }

    .award-content-adv {
        padding: 20px;
    }

    .exam-item-title-adv {
        font-size: 0.9rem;
    }

    .section-title-adv {
        font-size: 1.6rem;
    }

    .exam-item-date-adv {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

/* Small Mobiles (480px) */
@media (max-width: 480px) {
    .award-section-adv {
        padding: 40px 15px;
    }

    .section-title-adv {
        font-size: 1.4rem;
    }

    .award-title-adv {
        font-size: 1rem;
    }

    .award-text-adv {
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .award-badge-adv {
        display: none;
    }

    .exam-title-adv {
        font-size: 1.2rem;
    }

    .exam-item-date-adv {
        font-size: 0.75rem;
        padding: 3px 8px;
        border-radius: 15px;
    }

    .note-adv {
        margin-top: 20px;
        font-size: 16px
    }
}

/* Information css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Noto+Sans+Devanagari:wght@500;600;700&display=swap');

.info-sheet-container {
    max-width: 800px;
    margin: 0 auto;
}

.info-sheet-header {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.info-sheet-title {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 20px 0;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.info-sheet-title::before,
.info-sheet-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    border-radius: 3px;
}

.info-sheet-title::before {
    left: -60px;
}

.info-sheet-title::after {
    right: -60px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.decoration-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    margin: 0 15px;
}

.decoration-icon {
    font-size: 1.5rem;
    color: #9b59b6;
    opacity: 0.8;
}

/* Marathi Info Section */
.marathi-info-adv {
    background: linear-gradient(145deg, var(--dark-red), #ff6f3c);
    color: #fff;
    padding: 40px 20px 50px 20px;
    font-family: 'Poppins', sans-serif;
}

.marathi-container-adv {
    max-width: 1100px;
    margin: auto;
}

.top-flex-adv {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

.image-left-adv img,
.image-right-adv img {
    width: 300px;
    max-width: 100%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.quote-adv {
    background: #fff;
    flex: 1 1 280px;
    min-width: 250px;
    color: #333;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.quote-adv span {
    font-weight: bold;
    color: var(--dark-red);
    display: block;
    margin-top: 5px;
}

.info-cards-adv {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.info-card-adv {
    flex: 1 1 220px;
    padding: 20px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    font-size: 16px;
}

.info-card-adv:hover {
    transform: translateY(-5px);
}

.color1-adv {
    background: #e57373;
}

.color2-adv {
    background: #f06292;
}

.color3-adv {
    background: #ba68c8;
}

/* Responsive */
@media (max-width: 768px) {
    .info-sheet-title {
        font-size: 2rem;
        padding: 0 15px;
    }

    .info-sheet-title::before,
    .info-sheet-title::after {
        width: 30px;
    }

    .info-sheet-title::before {
        left: -40px;
    }

    .info-sheet-title::after {
        right: -40px;
    }

    .decoration-line {
        width: 60px;
    }

    .top-flex-adv {
        flex-direction: column;
        align-items: center;
    }

    .quote-adv {
        width: 100%;
        max-height: 190px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .info-sheet-title {
        font-size: 1.6rem;
    }

    .image-left-adv img,
    .image-right-adv img {
        width: 100%;
    }

    .info-card-adv {
        flex: 1 1 100%;
    }

    .quote-adv {
        width: 100%;
        height: 200px;
        font-size: 0.95rem;
    }
}


/* Management pf exams css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

:root {
    --primary-color: var(--primary-red);
    --secondary-color: #ff6a3d;
    --accent-color: #4a90e2;
    --light-bg: #fff9fb;
    --card-shadow: 0 10px 30px rgba(166, 45, 108, 0.1);
}

body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.info-sheet-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Header Styles */
.info-sheet-header {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.info-sheet-title {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    padding: 0 40px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9));
    border-radius: 50px;
    box-shadow: var(--card-shadow);
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.decoration-line {
    height: 3px;
    width: 120px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 20px;
    border-radius: 3px;
}

.decoration-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.8;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.animated-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.intro-section-adv {
    background: linear-gradient(135deg, #fff4f8 0%, #fff 100%);
}

.syllabus-section-adv {
    background: linear-gradient(135deg, #fff 0%, #f8f4ff 100%);
}

.exam-structure-adv {
    background: linear-gradient(135deg, #fef2ec 0%, #fff 100%);
}

.prizes-section-adv {
    background: linear-gradient(135deg, #f4f9ff 0%, #fff 100%);
}

.container-adv {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.section-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    border: 3px solid var(--primary-color);
}

.section-title-adv {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    margin: 0;
    padding-bottom: 10px;
}

.section-title-adv::after {
    content: "";
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.floating-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(166, 45, 108, 0.2);
}

.greeting {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Animated Elements */
.animated-highlight {
    background: linear-gradient(90deg, rgba(255, 240, 245, 0.5), rgba(255, 255, 255, 0.8));
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    animation: highlight-pulse 3s infinite alternate;
}

.mission-statement {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 240, 245, 0.9));
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    border: 2px dashed var(--primary-color);
    position: relative;
}

.mission-statement::before {
    content: "✍️";
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

/* Syllabus Section */
.grade-levels {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.grade-bubble {
    background: linear-gradient(135deg, var(--primary-color), #d42d6a);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(166, 45, 108, 0.3);
    transition: transform 0.3s ease;
}

.grade-bubble:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #d42d6a, var(--primary-color));
}

.highlight-text {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(166, 45, 108, 0.2);
}

/* Exam Structure */
.exam-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
}

.exam-table-adv {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.exam-table-adv th,
.exam-table-adv td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.exam-table-adv th {
    background: linear-gradient(135deg, var(--primary-color), #d42d6a);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.exam-table-adv tbody tr:nth-child(even) {
    background: #fff9fb;
}

.exam-table-adv tbody tr:hover {
    background: #fff0f5;
}

.fee-badge {
    background: linear-gradient(135deg, #ff6a3d, #ff8c5a);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin: 10px auto;
    box-shadow: 0 4px 10px rgba(255, 106, 61, 0.3);
    text-align: center;
}

/* Prizes Section */
.prize-grid-adv {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.prize-card-adv {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.prize-card-adv:hover {
    transform: translateY(-10px);
}

.prize-card-adv h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
    text-align: center;
    position: relative;
    padding-bottom: 8px;
}

.prize-card-adv h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.prize-card-adv ul {
    padding-left: 20px;
    list-style-type: none;
}

.prize-card-adv li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.prize-card-adv li::before {
    content: "•";
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.prize-amount {
    font-weight: 700;
    color: var(--primary-color);
}

.gold-card {
    border-top: 5px solid #ffd700;
}

.silver-card {
    border-top: 5px solid #c0c0c0;
}

.trophy-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    opacity: 0.8;
}

.rules-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    text-align: center;
    font-style: italic;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23a62d6c" d="M50,0 L60,30 L90,35 L65,55 L75,85 L50,70 L25,85 L35,55 L10,35 L40,30 Z"/></svg>');
    background-size: 30px 30px;
}

/* Animations */
@keyframes highlight-pulse {
    0% {
        background: linear-gradient(90deg, rgba(255, 240, 245, 0.5), rgba(255, 255, 255, 0.8));
    }

    100% {
        background: linear-gradient(90deg, rgba(255, 230, 240, 0.7), rgba(255, 245, 250, 0.9));
    }
}

.pulse {
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.02);
    }
}

.shake {
    display: inline-block;
    animation: shake 5s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    2% {
        transform: rotate(2deg);
    }

    4% {
        transform: rotate(-2deg);
    }

    6% {
        transform: rotate(2deg);
    }

    8% {
        transform: rotate(-2deg);
    }

    10% {
        transform: rotate(0deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-sheet-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    .decoration-line {
        width: 60px;
    }

    .decoration-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .section-title-adv {
        font-size: 1.6rem;
    }

    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .content-card {
        padding: 20px;
    }

    .grade-bubble {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .prize-grid-adv {
        gap: 20px;
    }

    .prize-card-adv {
        min-width: 100%;
    }
}

/* Website scrollbar design */

/* Main scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f1f1f1 0%, #e1e1e1 100%);
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-left: 1px solid #d0d0d0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--dark-red), var(--primary-red));
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: content-box;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    border: 2px solid rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(45deg, #fc00ff 0%, #00dbde 100%);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: rgb(221, 32, 29) #f1f1f1;
}

/* Animation for scrollbar thumb */
@keyframes scrollbarPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(106, 17, 203, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(106, 17, 203, 0);
    }
}

/* Add pulse animation on page load */
body.loaded ::-webkit-scrollbar-thumb {
    animation: scrollbarPulse 2s ease-out;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Scroll indicator progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, rgb(221, 32, 29), rgb(255, 20, 147));
    z-index: 1000;
    transition: width 0.1s ease-out;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 12px;
    right: 30px;
    background: linear-gradient(145deg, var(--dark-red), #ff6f3c);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 24px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* exam management css */

.prize-rules-container {
    background: linear-gradient(135deg, #fff9f5 0%, #fff0e6 100%);
    padding: 30px;
    border-radius: 20px;
    font-family: 'Noto Sans Devanagari', sans-serif;
    box-shadow: 0 10px 30px rgba(242, 107, 58, 0.15);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(242, 107, 58, 0.2);
    margin-top: 50px;
    margin-bottom: 50px;
}

.prize-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.prize-title-wrapper {
    position: relative;
}

.prize-title {
    background: linear-gradient(135deg, #f26b3a 0%, #f24e1e 100%);
    display: inline-block;
    padding: 12px 30px;
    color: white;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    box-shadow: 0 5px 15px rgba(242, 107, 58, 0.3);
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.trophy-icon {
    font-size: 3rem;
    color: #f26b3a;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.prize-rules-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.prize-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid;
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.state-level {
    border-top-color: #f26b3a;
}

.district-level {
    border-top-color: #4a90e2;
}

.national-level {
    border-top-color: #6a11cb;
}

.prize-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.state-level .badge-text {
    color: #f26b3a;
}

.district-level .badge-text {
    color: #4a90e2;
}

.national-level .badge-text {
    color: #6a11cb;
}

.prize-details p {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.prize-highlight {
    background: rgba(242, 107, 58, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
}

.state-level .prize-highlight {
    background: rgba(242, 107, 58, 0.1);
    color: #d45a2a;
}

.district-level .prize-highlight {
    background: rgba(74, 144, 226, 0.1);
    color: #3a7bc8;
}

.national-level .prize-highlight {
    background: rgba(106, 17, 203, 0.1);
    color: #5a0dab;
}

.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(242, 107, 58, 0.05), transparent);
    border-bottom-left-radius: 100%;
}

.district-level .card-decoration {
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.05), transparent);
}

.national-level .card-decoration {
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.05), transparent);
}

.rules-footer {
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    color: #666;
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}

.confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23f26b3a" opacity="0.1" d="M50,0 L60,30 L90,35 L65,55 L75,85 L50,70 L25,85 L35,55 L10,35 L40,30 Z"/></svg>');
    background-size: 30px 30px;
    z-index: -1;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .prize-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .prize-title {
        font-size: 1.3rem;
        padding: 10px 25px;
    }

    .prize-badge {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .badge-icon {
        font-size: 1.5rem;
    }
}

/* Footer CSS */

:root {
    --primary-color-f: var(--primary-red);
    --secondary-color-f: var(--dark-red);
    --accent-color-f: #ff9800;
    --text-light-f: #ffffff;
    --text-dark-f: #333333;
    --bg-gradient-f: linear-gradient(135deg, var(--primary-color-f), var(--secondary-color-f));
}

/* Base Styles */
.modern-footer {
    background: var(--bg-gradient-f);
    color: var(--text-light-f);
    font-family: 'Noto Sans Devanagari', sans-serif;
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Decorative Elements */
.footer-decoration-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 1;
}

.footer-decoration-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}

/* Left Info Section */
.footer-info {
    flex: 1;
    min-width: 300px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-title {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.org-info {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.reg-number {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 14.5px;
    align-items: flex-start;
}

.contact-item p {
    font-size: 18px;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-link {
    color: var(--text-light-f);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-light-f);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Contact Form Section */
.contact-form-container {
    flex: 1;
    min-width: 300px;
    margin-top: 8px;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.form-title {
    font-size: 1.6rem;
    margin: 0;
    font-weight: bold;
}

.form-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group.floating label {
    position: absolute;
    top: 15px;
    left: 10px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}

.form-group.floating input:focus+label,
.form-group.floating input:not(:placeholder-shown)+label,
.form-group.floating textarea:focus+label,
.form-group.floating textarea:not(:placeholder-shown)+label {
    top: -18px;
    left: 5px;
    font-size: 0.8rem;
    color: var(--primary-color-f);
    background: white;
    padding: 0 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 10px 5px;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.form-group input:focus:focus {
    outline: none;
    border-bottom-color: var(--primary-color-f);
}

.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color-f);
    position: relative;
    top: 8px;
}



.form-group input:focus~.underline,
.form-group textarea:focus~.underline {
    width: 100%;
}

.submit-btn {
    background: var(--accent-color-f);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.submit-btn::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: left 0.7s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 152, 0, 0.4);
}

.submit-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .submit-icon {
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: start;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 120px;
}

.copyright {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    text-align: center;
    font-weight: bold;
}

.copyright-2 {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    font-weight: bold;

}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: darkblue;
    text-decoration: none;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .form-header {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


@media (max-width: 480px) {
    .footer-bottom {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

}

/* syllabus style */

/* Grade Cards Styling */
.grade-levels-container {
    margin: 30px 0;
    overflow-x: auto;
    padding: 10px 0;
}

.grade-levels-scroll {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0px 5px;
}

.grade-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 80px;
    background: linear-gradient(45deg, var(--dark-red), var(--primary-red));
    color: white;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.grade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
}

.grade-card.active {
    background: linear-gradient(45deg, var(--dark-red), var(--primary-red));
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.5);
}

.grade-number {
    font-size: 28px;
    font-weight: bold;
}

.grade-label {
    font-size: 16px;
    text-align: center;
}

/* Syllabus Grid Layout */
.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.syllabus-category {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease;
}

.syllabus-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.syllabus-category h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 8px;
}

.syllabus-category ul {
    padding-left: 20px;
}

.syllabus-category li {
    margin-bottom: 8px;
    font-size: 18px;
    position: relative;
}

.syllabus-category li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.syllabus-note {
    margin-top: 20px;
    padding: 12px;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.highlight-text {
    text-align: center;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 25px;
    padding: 15px;
    background: linear-gradient(to right, #f8f9fa, #e9ecef, #f8f9fa);
    border-radius: 8px;
    border: 1px dashed #adb5bd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grade-card {
        width: 70px;
        height: 70px;
    }

    .grade-number {
        font-size: 22px;
    }

    .grade-label {
        font-size: 12px;
    }

    .syllabus-grid {
        grid-template-columns: 1fr;
    }

    .grade-levels-scroll {
        justify-content: flex-start;
    }
}