/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fb;
    color: #1f2937;
    line-height: 1.7;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    text-decoration: none;
    color: #111827;
    font-size: 22px;
    font-weight: 700;
}

.home-btn {
    display: inline-block;
    padding: 9px 18px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.home-btn:hover {
    background: #1d4ed8;
}


/* =========================================================
   HERO
========================================================= */

.page-hero {
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #ffffff;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 65px 20px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 18px;
}

.page-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-hero p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    opacity: 0.95;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.page-content {
    width: 100%;
}

.content-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 35px 20px 60px;
}


/* =========================================================
   LANGUAGE BUTTONS
========================================================= */

.language-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.language-buttons button {
    border: 1px solid #2563eb;
    background: #ffffff;
    color: #2563eb;
    padding: 9px 20px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.language-buttons button:hover {
    background: #2563eb;
    color: #ffffff;
}


/* =========================================================
   LANGUAGE SECTIONS
========================================================= */

#english {
    display: block;
}

#hindi {
    display: none;
}


/* =========================================================
   COMMON CONTENT CARD
========================================================= */

.content-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 25px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.content-card>p {
    margin-bottom: 15px;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
    margin-bottom: 18px;
    color: #111827;
    font-size: 27px;
    line-height: 1.3;
}

.sub-title {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1d4ed8;
    font-size: 20px;
}


/* =========================================================
   COMMON GRID
========================================================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}


/* =========================================================
   NUMBER CARD
========================================================= */

.number-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    transition: 0.2s ease;
}

.number-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.number-card h3,
.number-card h4 {
    margin: 10px 0 7px;
    color: #111827;
}

.number-card p {
    color: #6b7280;
    font-size: 14px;
}

.card-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   INFO CARD
========================================================= */

.info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    transition: 0.2s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.info-card h3,
.info-card h4 {
    margin-top: 10px;
    margin-bottom: 8px;
    color: #111827;
}

.info-card p {
    color: #6b7280;
    font-size: 14px;
}

.card-icon {
    font-size: 30px;
    line-height: 1;
}


/* =========================================================
   TABLE
========================================================= */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
    background: #ffffff;
}

.data-table th,
.data-table td {
    border: 1px solid #e5e7eb;
    padding: 13px 15px;
    text-align: left;
    vertical-align: top;
}

.data-table th {
    background: #eff6ff;
    color: #1e3a8a;
    font-weight: 700;
}

.data-table tr:nth-child(even) td {
    background: #f9fafb;
}


/* =========================================================
   OPTIONAL SUBJECT LIST
========================================================= */

.subject-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.subject-list span {
    display: inline-block;
    padding: 8px 13px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    border-radius: 7px;
    font-size: 14px;
}


/* =========================================================
   INFORMATION LIST
========================================================= */

.info-list {
    margin: 15px 0 0;
    padding-left: 22px;
}

.info-list li {
    margin-bottom: 8px;
}


/* =========================================================
   SERVICES
========================================================= */

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
}

.service-item strong {
    font-size: 20px;
    color: #1d4ed8;
}

.service-item span {
    font-size: 14px;
    color: #6b7280;
}


/* =========================================================
   OFFICIAL WEBSITE
========================================================= */

.website-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.official-link {
    display: inline-block;
    margin-top: 10px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.official-link:hover {
    text-decoration: underline;
}


/* =========================================================
   NOTE BOX
========================================================= */

.note-box {
    width: 100%;
    margin-bottom: 25px;
    padding: 22px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 5px solid #f59e0b;
    border-radius: 10px;
}

.note-box h3 {
    margin-bottom: 8px;
    color: #92400e;
}

.note-box p {
    color: #78350f;
}


/* =========================================================
   FOOTER
========================================================= */


/* .site-footer {
    width: 100%;
    background: #111827;
    color: #d1d5db;
}

.footer-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.footer-container p {
    margin-bottom: 5px;
    font-size: 13px;
} */


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-hero h1 {
        font-size: 36px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .header-container {
        padding: 12px 15px;
    }
    .logo {
        font-size: 19px;
    }
    .home-btn {
        padding: 8px 13px;
        font-size: 13px;
    }
    .hero-container {
        padding: 45px 15px;
    }
    .page-hero h1 {
        font-size: 30px;
    }
    .page-hero p {
        font-size: 15px;
    }
    .content-section {
        padding: 25px 12px 45px;
    }
    .content-card {
        padding: 20px 16px;
        border-radius: 9px;
    }
    .section-title {
        font-size: 23px;
    }
    .sub-title {
        font-size: 18px;
    }
    .card-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }
    .service-list {
        grid-template-columns: 1fr;
    }
    .language-buttons {
        margin-bottom: 22px;
    }
    .language-buttons button {
        padding: 8px 16px;
    }
    .table-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
    .data-table {
        min-width: 600px;
    }
    .subject-list {
        gap: 7px;
    }
    .subject-list span {
        font-size: 13px;
        padding: 7px 10px;
    }
    .note-box {
        padding: 18px 15px;
    }
}