:root {
    --pw-primary: #5b4fdd;
    --pw-primary-dark: #4a3fd1;
    --pw-soft: #f4f3ff;
    --pw-bg: #f6f7fb;
    --pw-text: #0f172a;
    --pw-muted: #64748b;
    --math-gold: #f4c430;
    --math-blue: #3b82f6;
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #fff;
    color: var(--pw-text);
    line-height: 1.6;
}

/* NAV */
.navbar {
    background: #fff;
    box-shadow: 0 6px 24px rgba(15, 23, 42, .06);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--pw-primary), var(--pw-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 600;
    color: var(--pw-text)
}

.nav-link:hover {
    color: var(--pw-primary)
}

/* ================= NAVBAR ACTIVE LINK ================= */
.navbar .nav-link.active {
    color: var(--pw-primary);
    position: relative;
}

/* underline indicator */
.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(135deg,
            var(--pw-primary),
            var(--pw-text));
}

/* hover smoothness */
.navbar .nav-link {
    position: relative;
    transition: color 0.25s ease;
}

@media (max-width: 991px) {
    .navbar .nav-link.active::after {
        display: none;
    }

    .navbar .nav-link.active {
        background: rgba(91, 79, 221, 0.08);
        padding-left: 12px;
        border-radius: 8px;
    }
}









/* this is used only indexpage */

.btn-primary,
.btn-gold {
    background: var(--pw-primary);
    border-color: var(--pw-primary);
    font-weight: 600;
    border-radius: 12px;
    padding: .85rem 2rem;
}


.btn-primary:hover {
    background: var(--pw-primary-dark);
    border-color: var(--pw-primary-dark);
}

.btn-gold {
    background: var(--math-gold);
    border-color: var(--math-gold);
    color: #000;
}

.btn-gold:hover {
    background: #e6b800;
    border-color: #e6b800;
    color: #000;
}













/* HERO */
.hero {
    background: linear-gradient(135deg, #eef1ff 0%, #f7eef8 50%, #eef7ff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(91, 79, 221, .1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 196, 48, .1) 0%, transparent 50%);
}

.hero h1 {
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    letter-spacing: -.02em;
    background: linear-gradient(135deg, var(--pw-primary), var(--pw-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero .lead {
    color: var(--pw-muted);
    font-size: 1.2rem
}

.hero .cta {
    padding: 1rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* ================= HERO VISUAL ================= */
.hero-visual {
    position: relative;
    width: 100%;
    height: 440px;
    display: flex;
    align-items: center;
}

/* ================= TEACHER IMAGE ================= */
.hero-person.teacher {
    position: absolute;
    width: 270px;
    height: 270px;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 70px rgba(91, 79, 221, 0.3);
    z-index: 2;
}

/* IMAGE */
.hero-person.teacher img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DOTTED RING */
.hero-person.teacher::after {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px dashed rgba(91, 79, 221, 0.35);
    animation: rotateRing 12s linear infinite;
}

/* ================= CHAT BUBBLE ================= */
.chat.teacher {
    position: absolute;
    left: 370px;
    top: 50%;
    transform: translateY(-60%);
    max-width: 280px;
    background: var(--pw-primary);
    color: #fff;
    padding: 16px 22px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
    z-index: 3;
    animation: floatChat 3.5s ease-in-out infinite;
}

/* CHAT ARROW */
.chat.teacher::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 22px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--pw-primary);
}

/* ================= ANIMATIONS ================= */
@keyframes floatChat {
    0% {
        transform: translateY(-60%);
    }

    50% {
        transform: translateY(-68%);
    }

    100% {
        transform: translateY(-60%);
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .hero-visual {
        height: 380px;
        justify-content: center;
    }

    .hero-person.teacher {
        width: 190px;
        height: 190px;
        left: 50%;
        top: 120px;
        transform: translateX(-50%);
    }

    .chat.teacher {
        left: 50%;
        top: 315px;
        transform: translateX(-50%);
        max-width: 90%;
        font-size: 13px;
        text-align: center;
        animation: floatChatMobile 3.5s ease-in-out infinite;
    }

    .chat.teacher::before {
        left: 50%;
        top: -10px;
        transform: translateX(-50%) rotate(90deg);
        border-right-color: transparent;
        border-top: 10px solid var(--pw-primary);
    }
}

@keyframes floatChatMobile {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}


/* floating math elements */
.hero-visual-gallery {
    position: relative;
    min-height: 320px;
}

.math-icon {
    position: absolute;
    font-size: 3rem;
    opacity: .6;
    font-weight: 300;
}

.math-icon1 {
    top: 10%;
    left: 5%;
    color: var(--pw-primary)
}

.math-icon2 {
    top: 60%;
    right: 5%;
    color: var(--math-gold)
}

.math-icon3 {
    bottom: 20%;
    left: 15%;
    color: #10b981;
    font-size: 2.5rem
}









/* index page style */

/* STATS STRIP - PERFECT ALIGNMENT */
.stats {
    background: #fff;
    margin-top: -40px;
    z-index: 10;
    position: relative;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    /* PERFECT HEIGHT ALIGNMENT */
    transition: all .3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, .12)
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--pw-soft), #e0e7ff);
    color: var(--pw-primary);
    font-size: 22px;
    font-weight: 600;
    flex-shrink: 0;
    /* PREVENT SHRINKING */
}

.stat-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0
}

.stat-sub {
    color: var(--pw-muted);
    font-size: 14px;
    margin: 0
}

/* SECTION */
.section {
    padding: 90px 0;
}

.section-alt {
    padding: 110px 0;
    background: var(--pw-bg)
}

.section h2,
.section h3 {
    font-weight: 800;
    letter-spacing: -.02em;
    background: linear-gradient(135deg, var(--pw-text), #1e293b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--pw-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* UNIFORM CARD GRID - PERFECT ALIGNMENT */

/* ================= SECTION GRID ================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ================= CARD ================= */
.card-uniform {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
    min-height: 380px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
    transition: all .3s ease;

    display: flex;
    flex-direction: column;
}

.card-uniform:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(91, 79, 221, .15);
}

/* ================= HEADER (TITLE + BADGE) ================= */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding: 0;
    background: transparent;
    border: 0;
}

.card-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--pw-text);
    line-height: 1.3;
}

/* ================= BADGE ================= */
.course-badge {
    background: linear-gradient(135deg,
            var(--pw-primary),
            var(--pw-primary-dark));
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(91, 79, 221, .35);
}

/* ================= COURSE LIST ================= */
.course-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.course-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.course-list li:last-child {
    border-bottom: none;
}

/* ================= BUTTON ================= */
.card-btn {
    margin-top: auto;
}


/* ================= CARD BUTTON (OUTLINE STYLE) ================= */
.card-btn {
    background: transparent;
    border: 1px solid var(--pw-primary);
    color: var(--pw-primary) !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

/* Hover → Fill Effect */
.card-btn:hover {
    background: linear-gradient(135deg,
            var(--pw-primary),
            var(--pw-primary-dark));
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-2px);
    /* box-shadow: 0 12px 25px rgba(91, 79, 221, 0.35); */
}

/* Active */
.card-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 16px rgba(91, 79, 221, 0.25);
}

/* Focus */
.card-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(91, 79, 221, 0.3);
}





/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-uniform {
        padding: 24px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Feature Cards - ALIGNED */
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    border: 1px solid #f1f5f9;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pw-primary), var(--math-gold));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, .12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--pw-primary), var(--pw-primary-dark));
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
    flex-shrink: 0;
}

.feature-alt .feature-icon {
    background: linear-gradient(135deg, var(--math-gold), #f4c430);
    color: #000;
}

.feature-card h5 {
    margin-bottom: 1rem;
    text-align: center;
    flex-shrink: 0
}

.feature-card p {
    flex-grow: 1;
    text-align: center
}

/* ===== Results ===== */
/* Tabs Button Style */
.filter {
    padding: 10px 22px;
    border-radius: 999px;
    /* pill shape */
    border: 1px solid #d0d7e2;
    background: #ffffff;
    color: #0b2c66;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
.filter:hover {
    background: #f2f6ff;
    border-color: #0b2c66;
}

/* Active Tab */
.filter.active {
    background: linear-gradient(135deg, #0b2c66, #123d8c);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(11, 44, 102, 0.25);
}


.banner {
    border-radius: 18px;
    height: 450px;
    /* position: relative; */
}

.result-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.result-slide.active {
    opacity: 1;
    position: relative;
}

.banner-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
}

/* Result Card */
.result-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

/* Image */
.result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay */
.result-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.05));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 10px;
}

/* Text */
.result-overlay h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.result-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0.85;
}

/* Hover Effects */
.result-card:hover img {
    transform: scale(1.08);
}

.result-card:hover .result-overlay {
    opacity: 1;
}



/* Results Banner */
.results-banner {
    background: linear-gradient(135deg, #5b4fdd, #3b82f6);
    color: #fff;
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.results-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, .2) 0%, transparent 70%);
    border-radius: 50%;
}

.results-banner h3 {
    font-size: 2rem;
    margin-bottom: 1rem
}

/* Testimonial */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    border-left: 5px solid var(--pw-primary);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: var(--pw-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem
}

/* CONTACT CARDS */
/* MAP */
.contact-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

/* LEFT INFO CARD */
.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--pw-primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}



/* INFO GRID */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* SINGLE INFO CARD */
.contact-info-card-single {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    /* box-shadow: 0 12px 30px rgba(0, 0, 0, .06); */
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    transition: all .3s ease;
    text-align: center;

}

.contact-info-card-single:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, .1); */
    box-shadow: 0 25px 50px rgba(91, 79, 221, .15);

}

/* ICON CENTERED */
.contact-info-card-single .info-icon {
    margin: 0 auto 14px auto;
}

/* TEXT */
.contact-info-card-single h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-info-card-single p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* FORM */
.form-control {
    padding: 12px 14px;
    border-radius: 20px;
}

.form-control:focus {
    border-color: var(--pw-primary);
    box-shadow: 0 0 0 .2rem rgba(91, 79, 221, .2);
}

/* MOBILE */
@media (max-width: 991px) {
    .contact-map iframe {
        height: 300px;
    }
}

/* MOBILE */
@media (max-width: 991px) {
    .map-container {
        height: 300px;
    }
}










/* ABOUT PAGE CSS START */



/* CARDS */
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
    height: 100%;
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--pw-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pw-primary);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* QUOTE */
.quote-box {
    background: linear-gradient(135deg,
            var(--pw-primary),
            var(--pw-primary-dark));
    color: #fff;
    border-radius: 22px;
    padding: 42px;
    height: 100%;
}

.quote-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.quote-author {
    font-weight: 700;
    color: var(--math-gold);
}








/* GALLERY SECTION CSS */

section {
    /* padding: 100px 0; */
    position: relative;
}

/* HEADER */
.gallery-header {
    background: linear-gradient(120deg, var(--pw-soft), #ffffff);
    border-radius: 28px;
    padding: 70px 40px;
    margin-bottom: 80px;
}

.gallery-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--pw-text);
}

.gallery-sub {
    max-width: 720px;
    margin: 15px auto 0;
    color: var(--pw-muted);
    font-size: 1.05rem;
}

/* IMAGE GRID */
.image-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 55px rgba(15, 23, 42, .08);
    transition: all .35s ease;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 75px rgba(91, 79, 221, .25);
}

.image-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* VIDEO CARD */
.video-card {
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(135deg,
            var(--pw-primary),
            var(--pw-primary-dark));
    padding: 6px;
    box-shadow: 0 30px 70px rgba(91, 79, 221, .35);
}

.video-inner {
    border-radius: 22px;
    overflow: hidden;
    background: #000;
}

.video-inner iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.1rem;
    }

    .image-card img {
        height: 220px;
    }
}








.section-title {
    font-size: 2.6rem;
    font-weight: 800;
}

.section-sub {
    color: var(--pw-muted);
    max-width: 720px;
    margin: 10px auto 0;
}

/* COURSE CARD */
.course-card {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .06);
    transition: all .35s ease;
    border-top: 5px solid var(--pw-primary);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 75px rgba(91, 79, 221, .25);
}

.course-badge {
    display: inline-block;
    background: var(--pw-soft);
    color: var(--pw-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--pw-text);
    display: flex;
    gap: 10px;
}

.course-list li::before {
    content: "✔";
    color: var(--pw-primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}









/* HERO COURSES */
.hero-courses {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 520px;
}

.course-chip {
    padding: 8px 16px;
    background: var(--pw-soft);
    color: var(--pw-primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(91,79,221,.12);
}

.course-chip.gold {
    background: rgba(244,196,48,.15);
    color: #b08a00;
}

/* MOBILE */
@media (max-width: 991px) {
    .hero-courses {
        justify-content: center;
    }
}



















/* FOOTER SECTION ALL PAGES */
footer {
    background: #0f172a;
    color: #cbd5f5;
    padding: 60px 0 20px;
}

footer h6 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

footer .nav-link {
    color: #cbd5f5;
    font-size: 14px;
    padding: 0;
    margin-bottom: 12px;
}

footer .nav-link:hover {
    color: var(--pw-primary)
}

.footer-divider {
    border-top: 1px solid #1e293b;
    margin: 40px 0;
}

/* Responsive */
@media (max-width:992px) {
    .card-uniform {
        min-height: 350px;
        padding: 24px
    }

    .feature-card {
        padding: 24px
    }
}

@media (max-width:768px) {
    .hero {
        padding: 80px 0 60px
    }

    .section {
        padding: 60px 0
    }

    .stats {
        margin-top: -30px
    }

    .card-grid {
        gap: 1rem
    }

    .card-uniform {
        min-height: 320px;
        padding: 20px
    }
}