/* ================= GENERAL ================= */
body {
    font-family: 'Segoe UI', sans-serif;
  overflow-x:hidden;
}

/* ================= NAVBAR ================= */
.custom-navbar {
    backdrop-filter: blur(6px);
    background-color: #3068B1;
}

.navbar-brand {
    font-size: 1.5rem;
    background-color: white;
}

.navbar-nav .dropdown-menu {
    position: static;
    margin-top: 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.dropdown-item:hover {
    color: #ffffff !important;
    background-color: #3068b1 !important;
}




/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    background: url('/img/homebanner.png') center center / cover no-repeat;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 70, 120, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    /*padding-top: 100px;*/
}

/* ================= TEXT STYLES ================= */
.small-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 15px 0;
}

.hero-text {
    max-width: 600px;
    opacity: 0.95;
}

/* ================= STATS ================= */
.stats-row h3 {
    color: #ffc107;
    font-weight: 700;
}

.stats-row p {
    margin: 0;
}

/* ================= BUTTONS ================= */
.hero-buttons .btn {
    padding: 10px 22px;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-content {
        padding-top: 120px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .stats-row {
        text-align: center;
    }
}


/* ================= ABOUT SECTION ================= */
.about-title {
    color: #2d6cdf;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-text {
    color: #555;
    line-height: 1.7;
}

.about-more {
    color: #2d6cdf;
    font-weight: 600;
    text-decoration: none;
}

/* ================= QUOTE BLOCK ================= */
.quote-box {
    position: relative;
    display: inline-block;
}

.quote-circle {
    background: #ffc107;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transform: rotate(-5deg);
}

    .quote-circle h3 {
        color: #1e5bd7;
        font-weight: 700;
        text-align: center;
        line-height: 1.3;
        transform: rotate(5deg);
    }

/* .quote-icon {
  font-size: 60px;
  color: #3cb371;
  position: absolute;
} */

/* .quote-icon.left {
  top: -20px;
  left: -20px;
} */
/* 
.quote-icon.right {
  bottom: -20px;
  right: -20px;
} */

/* ================= REGISTER SECTION ================= */
.register-section {
    background: #2f69b0;
    padding: 15px 0;
}

.register-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.register-box p {
    margin: 0;
    font-size: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .quote-circle {
        width: 220px;
        height: 220px;
    }

        .quote-circle h3 {
            font-size: 18px;
        }
}
/* ================= TESTIMONIALS ================= */
.section-title {
    color: #2d6cdf;
    font-weight: 600;
}

.testimonial-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    position: relative;
}

    .testimonial-card img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 6px;
        margin-right: 15px;
    }

.testimonial-content h6 {
    margin-bottom: 2px;
    font-weight: 600;
}

.role {
    font-size: 13px;
    color: #666;
}

.testimonial-content p {
    font-size: 14px;
    margin-top: 8px;
}
/* 
.quote-icon {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  color: #3cb371;
} */


/* ================= TESTIMONIALS ================= */
.section-title {
    color: #2d6cdf;
    font-weight: 600;
}

.testimonial-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .testimonial-card img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 6px;
        margin-right: 15px;
    }

/* .quote-icon {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  color: #3cb371;
} */

/* ================= GOOGLE MAP ================= */
.map-box iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 6px;
}

/* ================= CAROUSEL CONTROLS ================= */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}
/* ================= FOOTER ================= */
.footer-section {
    background: #2f69b0;
    color: #fff;
    padding: 50px 0 20px;
}

    /* Headings */
    .footer-section h6 {
        font-weight: 600;
        margin-bottom: 15px;
    }

    /* Paragraphs */
    .footer-section p {
        font-size: 14px;
        margin-bottom: 8px;
    }

/* ================= FOOTER LINKS ================= */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #ffc107;
        }

/* ================= SOCIAL ICONS ================= */
.social-icons i {
    font-size: 18px;
    margin-right: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

    .social-icons i:hover {
        transform: scale(1.2);
        color: #ffc107;
    }

/* ================= MAP BOX ================= */
.map-box {
    border-radius: 6px;
    text-align: center;
}

    .map-box img {
        max-width: 100%;
        height: auto;
    }

/* ================= DIVIDER ================= */
.footer-section hr {
    border-color: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

/* ================= COPYRIGHT ================= */
.footer-copy {
    font-size: 13px;
    margin-top: 10px;
}

.about-section {
    background-color: #f8fbff;
}

/* WHO WE ARE BOX */
.who-box {
    background-color: #2f6bb2;
    color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    transform: rotate(-5deg);
    display: inline-block;
}

    .who-box h2 {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.2;
    }

/* CONTENT */
.who-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* SECTION TITLE */
.section-title {
    font-weight: 700;
    color: #2f6bb2;
}

/* OFFER BOX */
.offer-box {
    background-color: #fff;
    border: 2px solid #f0b429;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
}

    .offer-box ul {
        padding-left: 18px;
        margin-bottom: 0;
    }

        .offer-box ul li {
            margin-bottom: 12px;
            font-size: 15px;
            line-height: 1.6;
            color: #444;
        }

/* RESPONSIVE */
@media (max-width: 767px) {
    .who-box {
        transform: rotate(0);
    }

        .who-box h2 {
            font-size: 26px;
        }
}

/* Wrapper */
.mq-why-wrapper {
    background-color: #f7fbff;
}

/* Titles */
.mq-title {
    font-weight: 700;
    color: #2f6bb2;
}

.mq-subtitle {
    color: #666;
    font-size: 15px;
}

/* Online Tuition Box */
.mq-online-box {
    background: url('/img/WhyOnlineTuitions-bg.png') no-repeat;
    border-radius: 16px;
    padding: 30px;
}

.mq-online-list {
    padding-left: 18px;
}

    .mq-online-list li {
        margin-bottom: 12px;
        line-height: 1.6;
        font-size: 15px;
        color: #444;
    }

.mq-online-img {
    max-width: 320px;
}

/* Feature Cards */
.mq-feature-card {
    background-color: #dceaff;
    border-radius: 12px;
    padding: 22px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

    .mq-feature-card:hover {
        transform: translateY(-6px);
    }

    .mq-feature-card h6 {
        font-weight: 700;
        color: #2f6bb2;
        margin-bottom: 10px;
    }

    .mq-feature-card p {
        font-size: 14px;
        color: #333;
        line-height: 1.5;
    }

/* Responsive */
@media (max-width: 767px) {
    .mq-online-box {
        padding: 20px;
    }
}

/* Appreciation Section */
.mq-appreciation-section {
    background-color: #ffffff;
}

/* Green Box */
.mq-green-box {
    background-color: #34a96f;
    padding: 22px 30px;
    border-radius: 6px;
}

    .mq-green-box p {
        color: #ffffff;
        font-size: 15px;
        line-height: 1.6;
        font-weight: 500;
    }

/* Responsive */
@media (max-width: 576px) {
    .mq-green-box {
        padding: 18px 20px;
    }

        .mq-green-box p {
            font-size: 14px;
        }
}

/* servicepage */
/* Services Section */
.mq-services-section {
    background: #f7fbff;
}

/* Service Card */
.mq-service-item {
    display: flex;
    align-items: center;
    background: #dbeafe;
    padding: 7px 30px;
    border-radius: 10px;
    margin-bottom: 16px;
    justify-content: space-between;
}

/* Icon Box */
.mq-service-icon {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* margin-right: 16px; */
    padding: 15px;
}

    .mq-service-icon.blue {
        background: #2563eb;
        transform: rotate(-15deg);
    }

    .mq-service-icon.green {
        background: #22c55e;
        transform: rotate(15deg);
    }

/* Content */
.mq-service-content h6 {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.mq-service-content p {
    font-size: 14px;
    margin: 0;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .mq-service-item {
        flex-direction: column;
        text-align: center;
    }

    .mq-service-icon {
        margin: 0 0 10px 0;
    }
}


/* Fast Track Section */
.mq-fasttrack-section {
    background: #ffffff;
}

.mq-fasttrack-title {
    font-weight: 700;
    color: #2563eb;
}

/* Cards */
.mq-fast-card {
    background: #dbeafe;
    border-radius: 10px;
    padding: 22px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #1e40af;
    height: 100%;
    transition: transform 0.3s ease;
}

    .mq-fast-card:hover {
        transform: translateY(-5px);
    }

/* Mobile Fine Tuning */
@media (max-width: 480px) {
    .mq-fast-card {
        font-size: 13px;
        padding: 18px 8px;
    }
}


/* tstimonials */
.mq-testimonial-section {
    background: #ffffff;
}

.mq-title {
    font-weight: 700;
    color: #2563eb;
}

/* Scroll rows */
.mq-scroll-row {
    overflow: hidden;
    margin-bottom: 25px;
}

.mq-scroll-track {
    display: flex;
    animation: scroll-left 25s linear infinite;
}

.mq-scroll-row.reverse .mq-scroll-track {
    animation: scroll-right 25s linear infinite;
}

/* Card */
.mq-test-card {
    min-width: 280px;
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    position: relative;
    cursor: pointer;
}

    .mq-test-card img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        margin-bottom: 8px;
    }

    .mq-test-card h6 {
        font-weight: 700;
        margin-bottom: 6px;
    }

    .mq-test-card p {
        font-size: 14px;
        color: #444;
    }

.mq-quote {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #22c55e;
    font-size: 20px;
}

/* Modal */
.mq-modal-content img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* Animations */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Mobile */
@media(max-width: 576px) {
    .mq-test-card {
        min-width: 240px;
    }
}

/* contactus */
/* Section */
.mq-contact-section {
    background: #ffffff;
}

/* Contact Row */
.mq-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Icon Box */
.mq-icon-box {
    width: 52px;
    height: 52px;
    background: #2563eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    transform: rotate(-12deg);
}

    .mq-icon-box i {
        color: #ffffff;
        font-size: 22px;
        transform: rotate(12deg); /* straighten icon */
    }

/* Text */
.mq-contact-item p {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Map Placeholder */
.mq-map-box {
    background: #cfe3ff;
    height: 260px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mq-map-box i {
        font-size: 80px;
        color: #2563eb;
    }

/* Responsive */
@media (max-width: 576px) {
    .mq-map-box {
        height: 200px;
    }

    .mq-contact-item {
        align-items: flex-start;
    }
}

/* bannertext */
.bnr {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

    .bnr img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Overlay Text */
.bnr-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* optional dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bnr-overlay h1 {
        color: #ffffff;
        font-size: 42px;
        font-weight: 700;
        text-transform: uppercase;
    }

/* Mobile */
@media (max-width: 576px) {
    .bnr {
        height: 200px;
    }

    .bnr-overlay h1 {
        font-size: 26px;
    }
}
/* studentregistration */
.student-reg-section {
}

.student-reg-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.reg-block {
    margin-bottom: 25px;
}

.reg-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0c040;
    padding-bottom: 6px;
}

.form-label span {
    color: red;
}

.reg-input {
    border-radius: 6px;
    font-size: 14px;
}

.reg-radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.reg-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* =========================
   Mobile Responsive Styles
   ========================= */

@media (max-width: 576px) {
    .student-reg-card {
        padding: 15px;
    }

    .reg-title {
        font-size: 15px;
    }

    .reg-radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .reg-btn-group {
        flex-direction: column;
    }

        .reg-btn-group .btn {
            width: 100%;
        }
}

/* Extra mobile tuning for extended profile */
@media (max-width: 576px) {
    .reg-block .form-label {
        font-size: 13px;
    }

    .reg-block .reg-input {
        font-size: 14px;
    }
}


/* Parent dropdown highlight */
.nav-item.dropdown.active > .nav-link {
    color: #facc15 !important;
}

/* Active dropdown item */
.dropdown-item.active {
    background-color: #2563eb;
    color: #fff;
}



/* ===== Loader Overlay ===== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}
/* Animated dots */
.dot-anim::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0% {
        content: '';
    }

    33% {
        content: '.';
    }

    66% {
        content: '..';
    }

    100% {
        content: '...';
    }
}

.validation-message {
    font-size: 12px;
    margin-top: 4px;


}

.aboutimg {
    width: 90% !important;
}

.rgtrnow {
    color: #ffc107;
}

/* Registration Dropdown Styling */

.klb-reg-dropdown {
    padding: 10px 0;
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.klb-reg-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    font-weight: 500;
}

.klb-reg-icon {
    font-size: 18px;
    color: #0d6efd; /* Change to your theme color */
}

.klb-reg-item:hover {
    background: #f8f9fa;
}

    .klb-reg-item:hover .klb-reg-icon {
        color: #dc3545; /* Hover color */
    }
.min-vh-100 {
    min-height: 83vh !important;
}
/* ================= HERO ANIMATIONS ================= */

.klb-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .klb-animate.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Delays */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

.delay-5 {
    transition-delay: 1s;
}

.delay-6 {
    transition-delay: 1.2s;
}


/* Buttons */
.klb-btn-primary {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .klb-btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

.klb-btn-outline {
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .klb-btn-outline:hover {
        background: #ffffff;
        color: #000;
        transform: translateY(-4px);
    }


/* Background zoom effect */
.hero-section {
    animation: klbZoom 12s ease-in-out infinite alternate;
}

@keyframes klbZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

.text-justify{
    text-align: justify;
}

/* Section Background */
.mq-excellence-section {
    background: linear-gradient(135deg, #ffcc00ad, #3068b1);
    padding: 20px;
    color: #fff;
}

/* Title */
.mq-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}

.mq-title-underline {
    width: 80px;
    height: 4px;
    background: #ffcc00;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Cards */
.mq-card {
    background: #ffffff;
    color: #240046;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

    .mq-card h5 {
        font-weight: 600;
        margin-bottom: 15px;
    }

    .mq-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    }

/* Quote Section */
.mq-quote p {
    font-size: 18px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.mq-quote h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffcc00;
}

/* Responsive */
@media (max-width: 768px) {
    .mq-title {
        font-size: 28px;
    }
}


.media-recognition {
    padding: 20px;
    background: #ffffff;
}

.media-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.media-left {
    flex: 1;
    text-align: center;
}

.featured-text {
    font-size: 14px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.media-left img {
    max-width: 280px;
    width: 100%;
}

.media-right {
    flex: 1.5;
}

    .media-right h1 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1a1a1a;
    }

    .media-right p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 18px;
        color: #444;
    }

.media-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #1e73be; /* Replace with your brand blue */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

    .media-btn:hover {
        background-color: #155a96;
    }

/* Responsive */
@media (max-width: 992px) {
    .media-container {
        flex-direction: column;
        text-align: center;
    }

    .media-right h1 {
        font-size: 28px;
    }
}

/*testimonals*/
/* TOP INDICATORS */
.custom-indicators {
    position: absolute;
    top: -45px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

    /* DOT STYLE */
    .custom-indicators [data-bs-target] {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #d0d0d0;
        opacity: 1;
        border: none;
        margin: 0 6px;
        transition: all 0.4s ease;
    }

    /* ACTIVE ANIMATION */
    .custom-indicators .active {
        width: 30px;
        border-radius: 20px;
        background: linear-gradient(45deg, #0d6efd, #4dabf7);
    }

    /* HOVER EFFECT */
    .custom-indicators button:hover {
        transform: scale(1.2);
    }

/* OPTIONAL SPACING */
.testimonial-section {
    padding-top: 80px;
}

/* SMOOTH CARD ANIMATION */
.carousel-item {
    transition: all 0.8s ease;
}

/*.testi-card {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}*/

.carousel-item .testi-card {
    transform: translateY(20px);
    opacity: 0.7;
}

.carousel-item.active .testi-card {
    transform: translateY(0);
    opacity: 1;
}

.testi-card {
    background: #2cc0f429;
    border: 2px solid blue;
    color: #240046;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: -5px 1px 4px 0px rgb(255 206 49);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat-box {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

    .stat-box h3 {
        font-size: 28px;
        color: #4a6cf7;
    }

    .stat-box p {
        font-size: 14px;
        margin-top: 5px;
    }
