/* =====================================
   PRATIBHA VEDIKA
   CLEAN PREMIUM CSS V5.0
===================================== */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #0B2E59;
    --gold: #FFD700;
    --white: #ffffff;
    --light: #f4f6f9;
    --text: #555;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   PUBLIC HEADER
========================================================= */

.header {
    background: #0B2E59;
    padding: 10px 30px;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.logo-text h1 {
    color: var(--gold);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
}


/* =========================================================
   GENERAL NAVIGATION
========================================================= */

nav {
    background: #ffffff;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

nav a {
    color: var(--primary);
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold);
}


/* =========================================================
   PUBLIC NAVIGATION
========================================================= */

.public-nav {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
}

.public-nav .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    min-height: 60px;
}

.public-nav .container > a,
.register-main {
    color: #0b315f;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    padding: 20px 0;
    display: block;
    cursor: pointer;
}

.public-nav .container > a:hover,
.register-main:hover {
    color: #f5c400;
}


/* =========================================================
   REGISTER DROPDOWN
========================================================= */

.register-menu {
    position: relative;
}

.register-main {
    white-space: nowrap;
}

.register-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 245px;
    background: #ffffff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 2000;
}

.register-menu:hover .register-dropdown {
    display: block;
}

.register-dropdown a {
    display: block;
    padding: 15px 18px;
    color: #0b315f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    background: #ffffff;
    white-space: nowrap;
}

.register-dropdown a:hover {
    background: #f1f5fa;
    color: #f5c400;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero {
    background: #35537d;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 35px 20px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.hero h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
}


/* =========================================================
   BUTTON
========================================================= */

.btn {
    display: inline-block;
    background: var(--gold);
    color: var(--primary);
    padding: 18px 45px;
    border-radius: 60px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #ffffff;
    transform: translateY(-4px);
}


/* =========================================================
   STATISTICS
========================================================= */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 8%;
    background: #ffffff;
}

.stat-box {
    background: #f8f9fc;
    padding: 25px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-8px);
}

.stat-box h2 {
    color: var(--gold);
    font-size: 45px;
    margin-bottom: 10px;
}

.stat-box p {
    color: var(--primary);
    font-size: 20px;
    font-weight: bold;
}


/* =========================================================
   UPCOMING COMPETITION
========================================================= */

.upcoming {
    background: #ffffff;
    padding: 25px 8%;
    text-align: center;
}

.upcoming h2 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 18px;
}

.competition-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
    justify-items: center;
}

.competition-card {
    max-width: 400px;
    width: 100%;
    margin: auto;
    background: #f8f9fc;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    border-top: 4px solid var(--gold);
    transition: 0.3s;
}

.competition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.competition-card h3 {
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 20px;
}

.competition-card p {
    font-size: 16px;
    margin: 8px 0;
    color: #555;
    line-height: 1.5;
}

.competition-card .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    font-size: 17px;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.page-title {
    text-align: center;
    font-size: 40px;
    color: var(--primary);
    margin: 40px 0;
}


/* =========================================================
   HOMEPAGE ABOUT SECTION
   IMPORTANT:
   Scoped separately from About Page
========================================================= */


.home-about {
    background: #f7f9fc;
    padding: 45px 20px;
    
}

.home-about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-about h2 {
    text-align: center;
    color: #0b3d73;
    font-size: 32px;
    margin-bottom: 18px;
}

.home-about p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #34495e;
    font-size: 17px;
    line-height: 1.7;
}


/*
   BACKWARD COMPATIBILITY
   If homepage HTML still uses .about-section,
   this keeps it neat without affecting About Page.
*/

body:not(.about-page) .about-section {
    background: #f7f9fc;
    padding: 45px 20px;
}

body:not(.about-page) .about-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body:not(.about-page) .about-section h2 {
    text-align: center;
    color: #0b3d73;
    font-size: 32px;
    margin-bottom: 18px;
}

body:not(.about-page) .about-section p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #34495e;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    background: #ffffff;
    padding: 45px 8%;
    text-align: center;
}

.features h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #f8f9fc;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 17px;
}


/* =========================================================
   RESULTS SECTION
========================================================= */

.results {
    background: #f4f6f9;
    padding: 45px 8%;
    text-align: center;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.results h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 15px;
}

.results p {
    font-size: 19px;
    margin-bottom: 30px;
}

.result-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--gold);
}

.result-card h3 {
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 15px;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact {
    background: #f7f9fc;
    padding: 55px 8%;
    text-align: center;
}

.contact h2 {
    display: block;
    color: var(--primary) !important;
    font-size: 32px;
    margin: 0 0 28px;
    font-weight: 700;
    text-align: center;
}

.contact-box {
    max-width: 650px;
    margin: 0 auto;
    padding: 32px 35px;
    background: #ffffff;
    border-radius: 12px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.contact p {
    color: #444;
    font-size: 17px;
    margin: 15px 0;
    line-height: 1.6;
}

.contact p i {
    color: var(--gold);
    margin-right: 10px;
    width: 20px;
}

.social-icons {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e8ed;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 6px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary);
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #081f3d;
    color: #ffffff;
    text-align: center;
    padding: 25px;
    font-size: 17px;
    border-top: 3px solid var(--gold);
}

.footer {
    background: #071a3d;
    color: #ffffff;
    padding: 40px 20px 10px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    margin: 15px;
}

.footer-section h3 {
    color: #d4af37;
}

.footer-section a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin: 8px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #555;
    padding-top: 15px;
}

/* =========================================================
   PRATIBHA VEDIKA FOOTER — COMPACT & PROFESSIONAL
========================================================= */

.pv-footer {
    background: #0b3d73;
    color: #ffffff;
    padding: 30px 20px 0;
}

.pv-footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 35px;
}

.pv-footer-brand h2 {
    font-size: 22px;
    margin: 0 0 8px;
}

.pv-footer-tagline {
    font-size: 14px;
    margin: 0 0 6px;
}

.pv-footer-motto {
    font-size: 14px;
    margin: 0 0 10px;
}

.pv-footer-description {
    font-size: 13px;
    line-height: 1.6;
    max-width: 380px;
    margin: 0;
}

.pv-footer-links h3,
.pv-footer-contact h3 {
    font-size: 16px;
    margin: 0 0 12px;
}

.pv-footer-links a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 7px;
}

.pv-footer-contact p {
    font-size: 13px;
    margin: 0 0 8px;
    line-height: 1.5;
}

.pv-footer-bottom {
    max-width: 1100px;
    margin: 25px auto 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.pv-footer-bottom p {
    font-size: 12px;
    margin: 4px 0;
}


/* MOBILE */

@media (max-width: 768px) {

    .pv-footer {
        padding: 25px 18px 0;
    }

    .pv-footer-container {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pv-footer-brand,
    .pv-footer-links,
    .pv-footer-contact {
        text-align: center;
    }

    .pv-footer-description {
        margin: 0 auto;
    }

}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page {
    background: #f7f9fc;
    color: #183b63;
}

.about-page-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ABOUT HERO */

.about-page .about-hero {
    background: #35537d;
    color: #ffffff;
    text-align: center;
    padding: 55px 20px;
}

.about-page .about-hero h1 {
    color: var(--gold);
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-page .about-hero p {
    font-size: 20px;
    margin: 0;
}


/* ABOUT COMMON SECTIONS */

.about-page .about-section {
    padding: 65px 20px;
    background: #ffffff;
}

.about-page .about-section:nth-child(even) {
    background: #f7f9fc;
}

.about-page .about-section h2 {
    text-align: center;
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-page .about-section p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}


/* FOUNDER */

.founder-section {
    max-width: 950px;
    margin: 0 auto;
    background: #f7f9fc;
    padding: 32px 30px;
    border-radius: 12px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.founder-section p {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.founder-signature {
    margin-top: 25px;
    padding-top: 16px;
    border-top: 1px solid #e2e6ec;
    text-align: right;
}

.founder-signature strong {
    display: block;
    color: var(--primary);
    font-size: 19px;
    font-weight: 700;
}

.founder-signature span {
    display: block;
    color: #666;
    margin-top: 5px;
    font-size: 14px;
}


/* VISION */

.highlight-text {
    max-width: 850px;
    margin: 0 auto 25px;
    padding: 28px 32px;
    background: #f7f9fc;
    border-top: 3px solid var(--gold);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    color: var(--primary) !important;
    font-size: 20px !important;
    line-height: 1.8 !important;
    font-weight: 600;
    text-align: center;
}

.vision-message {
    text-align: center;
    max-width: 850px;
    margin: 20px auto 0;
    color: #555 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}


/* MISSION */

.mission-section {
    background: #f7f9fc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.mission-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mission-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}

.mission-card h3 {
    color: var(--primary);
    font-size: 21px;
    margin-bottom: 12px;
    font-weight: 700;
}

.mission-card p {
    color: #555;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
}


/* CORE VALUES */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.value-card {
    background: #ffffff;
    padding: 28px;
    text-align: center;
    border-radius: 12px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}

.value-card h3 {
    color: var(--primary);
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    color: #555;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
}


/* COMMITMENT */

.commitment-section {
    text-align: center;
    background: #f7f9fc;
    padding: 35px 20px;
    border-radius: 0;
    border-top: 2px solid var(--gold);
}

.commitment-section h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.commitment-section p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.commitment-line {
    max-width: 650px;
    margin: 20px auto 0;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: var(--primary);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    background: #f7f9fc;
    padding: 55px 8%;
}

.contact-page-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-page-container h2 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-info-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.contact-info-card i {
    color: var(--gold);
    font-size: 25px;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   SCHOOL REGISTRATION
========================================================= */

.register-form {
    max-width: 700px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

.register-form label {
    display: block;
    font-size: 17px;
    font-weight: bold;
    color: #0B2E59;
    margin-top: 18px;
    margin-bottom: 8px;
}

.register-form input,
.register-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.register-form textarea {
    resize: none;
}

.register-form button {
    width: 100%;
    margin-top: 30px;
}


/* =========================================================
   GENERIC FORM GRID
========================================================= */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width {
    grid-column: 1 / -1;
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.success-message {
    width: 500px;
    max-width: 90%;
    margin: 40px auto;
    padding: 30px;
    background: #f0fff4;
    border: 2px solid #28a745;
    border-radius: 15px;
    text-align: center;
    color: #0B2E59;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.success-message h2 {
    color: #28a745;
    font-size: 28px;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 18px;
    margin: 8px;
}


/* =========================================================
   PASSPORT / STUDENT PHOTO
========================================================= */

.passport-id {
    font-size: 22px;
    font-weight: bold;
    margin: 20px;
}

.student-photo {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #d4af37;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
}


/* =========================================================
   REGISTRATION PAGE
========================================================= */

.registration-page {
    background: #f4f7fb;
    min-height: 100vh;
    padding: 50px 20px 70px;
}

.registration-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}


/* REGISTRATION HEADER */

.registration-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dfe5ec;
}

.registration-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.registration-header h1 {
    margin: 0;
    color: #0d3b70;
    font-size: 32px;
}

.registration-header p {
    margin: 6px 0 0;
    color: #667085;
    font-size: 15px;
}


/* INFORMATION BOX */

.registration-info {
    margin: 25px 0 32px;
    background: #eef5ff;
    border-left: 4px solid #0d3b70;
    border-radius: 10px;
    padding: 20px 22px;
    color: #29415f;
}

.registration-info strong {
    display: block;
    color: #0d3b70;
    font-size: 17px;
    margin-bottom: 8px;
}

.registration-info p {
    margin: 0;
    line-height: 1.6;
}


/* MESSAGE */

.registration-message {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.registration-message.success {
    background: #ecfdf3;
    border-left: 4px solid #16a34a;
    color: #166534;
}

.registration-message.error {
    background: #fff1f2;
    border-left: 4px solid #dc2626;
    color: #991b1b;
}


/* FORM SECTION */

.form-section {
    margin-top: 30px;
}

.form-section h2 {
    color: #0d3b70;
    font-size: 21px;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dfe5ec;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}


/* LABELS */

.form-group label {
    color: #0d3b70;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}


/* INPUTS */

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 13px 14px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    outline: none;
    transition: 0.2s;
}

.form-group input {
    height: 46px;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0d3b70;
    box-shadow: 0 0 0 3px rgba(13, 59, 112, 0.10);
}


/* WARNING */

.registration-warning {
    margin-top: 28px;
    background: #fff8df;
    border-left: 4px solid #f5b400;
    border-radius: 8px;
    padding: 15px 18px;
    color: #765600;
    font-size: 14px;
    line-height: 1.6;
}


/* TERMS */

.terms-row {
    margin-top: 22px;
    text-align: center;
}

.terms-row label {
    color: #0d3b70;
    font-weight: 600;
    cursor: pointer;
}

.terms-row input {
    margin-right: 8px;
    transform: scale(1.1);
}


/* SUBMIT */

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.register-submit {
    min-width: 260px;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    background: #0d3b70;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.register-submit:hover {
    background: #092c55;
    transform: translateY(-1px);
}


/* =========================================================
   STUDENT LOGIN
========================================================= */

.student-login-page {
    background: #f4f7fb;
    min-height: 600px;
    padding: 55px 20px;
}

.student-login-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 35px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.student-login-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 12px;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.student-login-container h1 {
    margin: 0;
    color: var(--primary);
    font-size: 28px;
}

.student-login-subtitle {
    margin: 8px 0 28px;
    color: #64748b;
    font-size: 15px;
}

.student-login-form {
    text-align: left;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #183b63;
    font-size: 14px;
    font-weight: 600;
}

.login-form-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.login-form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 53, 100, 0.08);
}

.student-login-submit {
    width: 100%;
    border: none;
    background: var(--primary);
    color: #ffffff;
    padding: 14px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.student-login-submit:hover {
    opacity: 0.92;
}

.student-login-register {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.student-login-register p {
    margin: 0 0 8px;
    color: #64748b;
    font-size: 14px;
}

.student-login-register a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.login-error {
    margin-bottom: 20px;
    padding: 12px 15px;
    background: #fff1f1;
    border-left: 4px solid #d32f2f;
    border-radius: 6px;
    color: #b71c1c;
    font-size: 14px;
    text-align: left;
}


/* =========================================================
   STUDENT DASHBOARD
========================================================= */

.student-dashboard-page {
    background: #f4f7fb;
    min-height: 650px;
    padding: 45px 20px 60px;
}

.student-dashboard-container {
    max-width: 1050px;
    margin: 0 auto;
}


/* DASHBOARD HEADER */

.student-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

.student-dashboard-header h1 {
    margin: 0;
    color: var(--primary);
    font-size: 27px;
}

.student-dashboard-header p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 15px;
}


/* LOGOUT */

.student-logout-button {
    display: inline-block;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.student-logout-button:hover {
    opacity: 0.9;
}


/* PASSPORT */

.student-passport-box {
    background: #0b1f3a;
    color: #ffffff;
    text-align: center;
    padding: 27px;
    border-radius: 14px;
    margin-bottom: 25px;
}

.student-passport-box span {
    display: block;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.student-passport-box strong {
    display: block;
    color: var(--gold);
    font-size: 26px;
    letter-spacing: 1px;
}


/* DASHBOARD CARDS */

.student-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 25px;
}

.student-dashboard-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.dashboard-card-icon {
    font-size: 30px;
    margin-bottom: 8px;
}

.student-dashboard-card h3 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 17px;
}

.dashboard-value {
    margin: 0;
    color: #475569;
    font-size: 20px;
    font-weight: 700;
}


/* STUDENT INFORMATION */

.student-information-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.student-information-box h2 {
    margin: 0 0 25px;
    color: var(--primary);
    font-size: 22px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
}


/* DETAILS GRID */

.student-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.student-details-grid > div {
    background: #f8fafc;
    border: 1px solid #e8edf3;
    padding: 18px 20px;
    border-radius: 10px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.student-details-grid span {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.student-details-grid strong {
    color: #183b63;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}


/* =========================================================
   STUDENT INFORMATION - PROFESSIONAL
========================================================= */

.pv-student-information {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-top: 25px;
}

.pv-student-information-title {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid #e5e7eb;
}

.pv-student-title-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    border-radius: 10px;
    font-size: 23px;
}

.pv-student-information-title h2 {
    margin: 0;
    color: #0b3564;
    font-size: 22px;
}

.pv-student-information-title p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 13px;
}

.pv-student-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pv-detail-card {
    box-sizing: border-box;
    background: #f8fafc;
    border: 1px solid #e5eaf0;
    border-radius: 10px;
    padding: 17px 20px;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pv-detail-label {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pv-detail-value {
    display: block;
    color: #183b63;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}

.pv-detail-card:hover {
    border-color: #cbd8e8;
    background: #f5f8fc;
}


/* =========================================================
   STUDENT PORTAL HEADER
========================================================= */

.student-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.student-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.student-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.student-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.student-logo-text h1 {
    margin: 0;
    color: #0b3564;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.student-logo-text p {
    margin: 3px 0 0;
    color: #64748b;
    font-size: 11px;
}

.student-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.student-nav a {
    display: inline-block;
    padding: 8px 10px;
    color: #183b63;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
}

.student-nav a:hover {
    background: #eef4ff;
    color: #0b3564;
}

.student-nav-logout {
    background: #0b3564 !important;
    color: #ffffff !important;
    padding: 8px 13px !important;
}

.student-nav-logout:hover {
    background: #08294e !important;
}


/* =========================================================
   SCHOOL HEADER
   FINAL CLEAN VERSION
========================================================= */

.pv-school-header,
.pv-school-header * {
    box-sizing: border-box !important;
}

.pv-school-header {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    min-height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #0b3564 !important;
    color: #ffffff !important;
    overflow: visible !important;
}

.pv-school-header-inner {
    display: flex !important;
    width: 100% !important;
    max-width: 1200px !important;
    min-height: 70px !important;
    margin: 0 auto !important;
    padding: 8px 25px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.pv-school-brand {
    display: flex !important;
    width: auto !important;
    height: 54px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    gap: 10px !important;
    background: transparent !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
}

.pv-school-brand img {
    display: block !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
}

.pv-school-brand-text {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pv-school-brand-text h1 {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    font-size: 19px !important;
    line-height: 22px !important;
    font-weight: 800 !important;
}

.pv-school-brand-text p {
    display: block !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    color: #dbeafe !important;
    background: transparent !important;
    font-size: 11px !important;
    line-height: 14px !important;
}

.pv-school-navigation {
    display: flex !important;
    width: auto !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 4px !important;
    background: transparent !important;
}

.pv-school-navigation a {
    display: flex !important;
    width: auto !important;
    height: 36px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    background: transparent !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: normal !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
}

.pv-school-navigation a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.pv-school-navigation .pv-school-logout {
    color: #0b1f3a !important;
    background: #d4af37 !important;
}


/* =========================================================
   SCHOOL STUDENTS TABLE
========================================================= */

.school-students-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 25px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.school-students-table th {
    background: #0b3564;
    color: #ffffff;
    padding: 14px 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}

.school-students-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e8edf3;
    color: #334155;
    font-size: 14px;
    vertical-align: middle;
}

.school-students-table tbody tr:last-child td {
    border-bottom: none;
}

.school-students-table tbody tr:hover {
    background: #f8fafc;
}

.school-students-table td:first-child,
.school-students-table th:first-child {
    text-align: center;
    width: 60px;
}

.school-students-table td:nth-child(4),
.school-students-table th:nth-child(4) {
    text-align: center;
    width: 80px;
}

.school-students-table td:nth-child(5),
.school-students-table th:nth-child(5) {
    white-space: nowrap;
}


/* =========================================================
   SCHOOL ADD STUDENT FORM
========================================================= */

.school-add-student-form {
    width: 100%;
    max-width: 850px;
    margin: 25px auto 0;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.school-add-student-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.school-add-student-form .form-group {
    display: flex;
    flex-direction: column;
}

.school-add-student-form label {
    display: block;
    margin-bottom: 7px;
    color: #183b63;
    font-size: 14px;
    font-weight: 600;
}

.school-add-student-form input,
.school-add-student-form select {
    width: 100%;
    height: 45px;
    padding: 10px 13px;
    box-sizing: border-box;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #f8fafc;
    color: #183b63;
    font-size: 14px;
    outline: none;
}

.school-add-student-form select {
    cursor: pointer;
}

.school-add-student-form input:focus,
.school-add-student-form select:focus {
    border-color: #0b3564;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(11, 53, 100, 0.08);
}

.school-add-student-form .full-width {
    grid-column: 1 / -1;
}

.school-add-student-form .form-submit {
    margin-top: 25px;
    text-align: center;
}

.school-add-student-form .add-student-button {
    border: none;
    background: #0b3564;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.school-add-student-form .add-student-button:hover {
    background: #08294e;
}


/* =========================================================
   SCHOOL COMPETITIONS
========================================================= */

.school-competitions-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 25px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.school-competitions-table th {
    background: #0b3564;
    color: #ffffff;
    padding: 14px 12px;
    text-align: left;
    font-size: 14px;
}

.school-competitions-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e8edf3;
    color: #334155;
    font-size: 14px;
}

.school-competitions-table tbody tr:last-child td {
    border-bottom: none;
}

.school-competitions-table tbody tr:hover {
    background: #f8fafc;
}

.competition-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: #f1f5f9;
    font-size: 13px;
    font-weight: 600;
}

.competition-status.active {
    background: #e8f7ee;
    color: #187a45;
}

.no-competitions {
    text-align: center;
    padding: 25px !important;
}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */


/* TABLET */

@media (max-width: 900px) {

    .student-header-container {
        flex-direction: column;
        padding: 12px 15px;
    }

    .student-nav {
        justify-content: center;
    }

    .pv-school-header-inner {
        flex-direction: column !important;
        min-height: auto !important;
        padding: 12px 15px !important;
        gap: 10px !important;
    }

    .pv-school-navigation {
        width: 100% !important;
        height: auto !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .public-nav .container {
        flex-wrap: wrap;
        gap: 18px;
        padding: 10px 15px;
    }

    .public-nav .container > a,
    .register-main {
        font-size: 15px;
        padding: 8px 0;
    }

    .register-dropdown {
        left: 0;
        transform: none;
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pv-footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 25px;
    }

    .pv-footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 18px 25px;
    }
}


/* TABLET / MOBILE */

@media (max-width: 768px) {

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 75px;
        height: 75px;
    }

    .logo-text h1 {
        font-size: 32px;
    }

    nav {
        flex-wrap: wrap;
        gap: 18px;
    }

    nav a {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .stats {
        grid-template-columns: 1fr;
        padding: 40px 8%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .result-box {
        grid-template-columns: 1fr;
    }

    .upcoming h2,
    .about h2,
    .features h2,
    .results h2,
    .contact h2 {
        font-size: 32px;
    }

    .about-page .about-hero h1 {
        font-size: 32px;
    }

    .about-page .about-hero p {
        font-size: 18px;
    }

    .about-page .about-section {
        padding: 45px 18px;
    }

    .about-page .about-section h2 {
        font-size: 28px;
    }

    .about-page .about-section p {
        font-size: 17px;
    }

    .mission-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .highlight-text {
        font-size: 18px !important;
        padding: 20px;
    }

    .founder-signature {
        text-align: center;
    }

    .student-dashboard-header {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .student-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .student-details-grid {
        grid-template-columns: 1fr;
    }

    .student-information-box {
        padding: 22px;
    }

    .pv-student-information {
        padding: 22px 18px;
    }

    .pv-student-details {
        grid-template-columns: 1fr;
    }

    .pv-student-information-title {
        align-items: flex-start;
    }

    .school-students-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .registration-container {
        padding: 25px 18px;
        border-radius: 12px;
    }

    .registration-header h1 {
        font-size: 26px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   REGISTRATION MOBILE
========================================================= */

@media (max-width: 700px) {

    .registration-page {
        padding: 25px 12px 50px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .register-submit {
        width: 100%;
    }

    .school-add-student-form {
        padding: 22px 18px;
    }

    .school-add-student-form .form-grid {
        grid-template-columns: 1fr;
    }

    .school-add-student-form .full-width {
        grid-column: auto;
    }

    .student-dashboard-header h1 {
        font-size: 24px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-about {
        padding: 45px 15px;
    }

    body:not(.about-page) .about-section {
        padding: 45px 15px;
    }

    .home-about .container,
    body:not(.about-page) .about-section > .container {
        width: 100%;
        padding: 0 10px;
    }

    .home-about h2,
    body:not(.about-page) .about-section h2 {
        font-size: 26px;
    }

    body:not(.about-page) .about-section p {
        font-size: 16px;
    }

    .about-page-container {
        padding: 0 10px;
    }

    .highlight-text {
        padding: 20px 18px;
        font-size: 17px !important;
    }

    .about-page .about-section p {
        font-size: 16px;
    }

    .registration-header {
        flex-direction: column;
        text-align: center;
    }

    .registration-header h1 {
        font-size: 25px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 19px;
    }

    .btn {
        padding: 13px 30px;
        font-size: 16px;
    }

    .logo-text h1 {
        font-size: 28px;
    }

    .logo-text p {
        font-size: 15px;
    }

    .competition-container {
        grid-template-columns: 1fr;
        width: 94%;
        gap: 25px;
    }

    .competition-card h3 {
        font-size: 25px;
    }

    .student-login-container {
        padding: 30px 22px;
    }

    .contact-page {
        padding: 45px 20px;
    }
}

/* HOMEPAGE ABOUT SECTION - CENTER */

.about {
    text-align: center;
}

.about-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 15px;
}

.about h2 {
    text-align: center;
    color: #0b3d73;
    font-size: 36px;
    margin-bottom: 18px;
}

.about p {
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}

/* =========================================================
   HOMEPAGE SECTION COLORS — PREMIUM VISUAL FLOW
========================================================= */

/* Statistics */
.stats {
    background: #eef5ff;
}

/* Upcoming Competitions */
.upcoming {
    background: #f1f4f8;
}

/* Homepage About */
.about {
    background: #e8eef6;
    padding: 55px 20px;
}

/* Features */
.features {
    background: #f1f4f8;
}

/* Results */
.results {
    background: #e8eef6;
}

/* Section positioning */
.stats,
.upcoming,
.about,
.features,
.results {
    position: relative;
}

/* ================= UPCOMING COMPETITIONS ================= */

.upcoming {
    padding: 55px 30px;
    background: #f1f3f6;
    text-align: center;
}

.upcoming h2 {
    color: #082b55;
    margin-bottom: 35px;
    font-size: 30px;
}

.upcoming .competition-card {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    min-width: 280px;
    margin: 10px;
    padding: 28px 22px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.upcoming .competition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.upcoming .competition-card h3 {
    color: #082b55;
    font-size: 22px;
    margin-bottom: 18px;
}

.upcoming .competition-card p {
    color: #444;
    font-size: 16px;
    margin: 10px 0;
}

.upcoming .competition-card .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 11px 20px;
    background: #082b55;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.upcoming .competition-card .btn:hover {
    background: #0d477f;
}


/* Mobile */

@media (max-width: 768px) {

    .upcoming {
        padding: 40px 15px;
    }

    .upcoming h2 {
        font-size: 25px;
    }

    .upcoming .competition-card {
        display: block;
        width: auto;
        min-width: 0;
        margin: 15px 0;
    }

}