﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
/*    padding: 0 15px;*/
}

.btn {
    display: inline-block;
    padding: 8px 14px;
    background-color: #337ab7;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

    .btn:hover {
        background-color: #0d5bba;
    }

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #a94442;
    position: relative;
/*    padding-bottom: 10px;*/
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 3px;
        background-color: #848c97;
    }

/* Header Styles */
.main-header {
    background-color: maroon;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    top: 0;
    z-index: 1000;
    position: sticky;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.logo {
    margin: 0;
    padding: 10px 6px 4px;
    width: 80px;
    background-color: white;
    margin: 6px 0;
    border-radius: 10px;
}

    .logo img {
        width: 100%;
        height: auto;
    }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-middle {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
}

    .header-middle .navbar {
        display: flex;
        justify-content: center;
    }

.header-right .navbar .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

    .header-right .navbar .nav-menu a {
        padding: 7px;
    }

    .header-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.header-text h1 {
    color: #d5e3e9;
    font-size: 1.8em;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    line-height: 1.5em;
}

.recognition-text {
    font-size: 0.8em;
    color: #06ffe2;
    margin: 0;
    font-weight: 400;
    margin-top: -5px;
    margin-bottom: 4px;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: #c9e4ec;
        border-radius: 2px;
        transition: all 0.3s;
    }

.nav-menu {
    display: flex;
    list-style: none;
}

    .nav-menu li {
        position: relative;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 10px 7px;
        color: #c9e4ec;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        font-size: 16px;
    }

        .nav-menu a:hover {
            color: #ffb303;
        }

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s;
}

.nav-menu li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    display: none;
    z-index: 100;
    top: 100%;
    left: 0;
}

.nav-menu li:hover .dropdown {
    display: block;
}

.dropdown a {
    padding: 12px 15px;
    display: block;
    font-size: 15px;
    color: #333;
}

    .dropdown a:hover {
        background-color: #f5f5f5;
        color: #feb300;
    }

/* Looping Horizontal Message Over Banner */
.admission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    background: linear-gradient(90deg, rgba(169, 68, 66, 0.95) 0%, rgba(139, 54, 53, 0.95) 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scrolling-message {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.scrolling-content {
    display: flex;
    animation: scrollText 25s linear infinite;
    white-space: nowrap;
}

.scrolling-text {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.scrolling-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    pointer-events: all;
}

    .scrolling-link:hover {
        color: #ffffff;
        text-decoration: underline;
    }

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.admission-overlay:hover .scrolling-content {
    animation-play-state: paused;
}

.login-item {
/*    margin-left: 10px;*/
}

.login-link {
    display: flex;
    align-items: center;
    gap: 6px; /* Reduced from 8px to 6px */
/*    padding: 10px 15px;*/
    /*background: linear-gradient(135deg, #28a745 0%, #20c997 100%);*/
    color: #c9e4ec;
    text-decoration: none;
    /*border-radius: 6px;*/
/*    transition: all 0.3s ease;*/
    font-weight: 600;
    /*    border: 2px solid transparent;*/
    white-space: nowrap;
}

    /*.login-link:hover {*/
        /*        background: linear-gradient(135deg, #218838 0%, #1e9e8a 100%);*/
        /*transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        color: #c9e4ec;
    }*/

    .login-link i {
        font-size: 14px;
        margin-right: 6px; /* Pulls icon closer to text */
    }


/* Banner */
.banner {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

    .banner-slide.active {
        opacity: 1;
    }

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
    z-index: 10;
}

    .banner-arrow:hover {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .banner-arrow.prev {
        left: 20px;
    }

    .banner-arrow.next {
        right: 20px;
    }

/* What's New Section */
.whats-new {
    /* background: linear-gradient(135deg, #1a73e8 0%, #6c5ce7 100%); */
    padding: 30px 0;
    color: #a43a1d;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .whats-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
    }

.whats-new-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1190px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

.whats-new-title {
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    margin-right: 30px;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .whats-new-title i {
        margin-right: 10px;
        font-size: 24px;
        color: #ffc107;
    }

.whats-new-content {
    flex-grow: 1;
    overflow: hidden;
    height: 80px;
    position: relative;
    margin-right: 20px; /* Add space for the button */
}

.whats-new-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.news-ticker {
    position: absolute;
    width: 100%;
    animation: ticker-scroll 10s linear infinite;
}

.whats-new-content:hover .news-ticker {
    animation-play-state: paused;
}

.news-item {
    padding: 13px 0;
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    align-items: flex-start;
}

.news-content {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}
.news-item a {
    padding: 13px 0;
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: #a43a1d;
    font-size: 16px;
}

.news-date {
    font-size: 14px;
    color: #666;
    font-style: italic;
    display: flex;
    align-items: center;
}

    .news-date .posted-text {
        color: #888;
        margin-right: 5px;
    }

    .news-date .date-value {
        color: #a94442;
        font-weight: 500;
    }

.btn1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #a94442 0%, #8b3635 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(169, 68, 66, 0.3);
    position: relative;
    overflow: hidden;
}

    .btn1::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn1:hover {
        background: linear-gradient(135deg, #8b3635 0%, #6d2928 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(169, 68, 66, 0.4);
    }

        .btn1:hover::before {
            left: 100%;
        }

    .btn1:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(169, 68, 66, 0.3);
    }

    .btn1 i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .btn1:hover i {
        transform: translateX(3px) translateY(-1px);
    }

    /* Specific styling for btn-external variant */
    .btn1.btn-external {
        background: linear-gradient(135deg, #337ab7 0%, #2a6496 100%);
        box-shadow: 0 4px 12px rgba(51, 122, 183, 0.3);
    }

        .btn1.btn-external:hover {
            background: linear-gradient(135deg, #2a6496 0%, #1e4a6e 100%);
            box-shadow: 0 6px 20px rgba(51, 122, 183, 0.4);
        }

@keyframes ticker-scroll {
    0% {
        transform: translateY(0);
    }

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

/* Introduction Section */
.intro-section {
    padding: 60px 0;
    background-color: #dff5f3;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

    .intro-text h2 {
        color: #a94442;
        font-size: 34px;
        margin-bottom: 20px;
    }

    .intro-text p {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.7;
    }

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .intro-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Awards Section */
.awards-section {
    padding: 80px 0;
}

.awards-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.award-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 300px;
    display: flex;
    flex-direction: column;
}

    .award-card:hover {
        transform: translateY(-5px);
    }

.award-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f9f9f9;
}

    .award-image img {
        max-height: 180px;
        object-fit: contain;
    }

.award-content {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .award-content p {
        font-size: 14px;
        margin: 0;
        line-height: 1.5;
    }

.view-all {
    text-align: center;
}

/* Why Choose Us */
.why-choose-us {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 330px;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 50px;
    color: #800000;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #222;
    font-size: 22px;
}

.feature-card p {
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 70px 0;
    background-color: #e3f2f3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 200px;
}

    .gallery-item:hover {
        transform: translateY(-5px);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label {
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

.form-group.button-group {
    margin-top: 20px;
}

    .form-group.button-group button{
        width: 120px;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
    color: #a94442;
    margin-top: 3px;
}

.contact-detail h3 {
    margin-bottom: 5px;
    color: #4a6283;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* Footer */
.footer {
    background-color: #4c4d59;
    color: white;
    padding: 30px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 3fr 1fr 2fr;
    gap: 90px;
}

.footer-column h3 {
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
    color: cyan;
}

    .footer-column h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
    }
.footer-column p {
    /*text-align: justify;*/
}

.footer-links {
    list-style: none;
    padding-left: 5px;
}

    .footer-links li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }

        .footer-links li i {
            margin-top: 2px; /* Adjust this value to align with the first line of text */
            flex-shrink: 0;
            padding: 3px;
        }

        .footer-links li p {
            margin: 0;
            line-height: 1.4;
            text-align: left;
        }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 15px;
    }

        .footer-links a:hover {
            color: white;
        }

    .footer-links i {
        margin-right: 8px;
        width: 16px;
    }

a {
    color: #ababab;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .social-link:hover {
        background-color: #337ab7;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #ccc;
    flex-wrap: wrap;
}

    .copyright .footer-links {
        margin: 0;
    }

        .copyright .footer-links p {
            margin: 0;
        }

    .copyright a {
        color: #a2a2ea; /* Gold color */
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .copyright a:hover {
            color: #ffffff; /* White on hover */
            text-decoration: underline;
        }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #8d5a92;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: #0d5bba;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .awards-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .awards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-content {
        flex-direction: column;
    }

    .intro-text, .intro-image {
        flex: none;
        width: 100%;
    }

    .whats-new-title {
        font-size: 18px;
        padding: 10px 15px;
    }

    .news-content {
        font-size: 16px;
    }
}

#navbar-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* .header-container {
                flex-wrap: wrap;
            } */
    .header-container {
        gap: 20px;
        align-items: center;
    }

    .header-left .logo {
        width: 60px;
    }

    .header-middle h1 {
        font-size: 1em;
    }

    .header-middle .recognition-text {
        display: none;
    }

    .header-middle .navbar {
        display: none;
    }

    .header-right {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    #navbar-mobile {
        display: block;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        background-color: #988f93;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

        #navbar-mobile.navbar.active {
            max-height: 80vh;
            overflow-y: auto;
        }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        background-color: #ffeaea85;
    }

        .nav-menu li {
            width: 100%;
        }

        .nav-menu a {
            padding: 15px 20px;
            /* border-bottom: 1px solid rgba(255,255,255,0.1); */
            color: #000000a3;
            justify-content: space-between;
        }
            .nav-menu a:hover {
                color: #000000a3;
            }

    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
        background-color: rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu li:hover .dropdown {
        display: block;
    }
    .dropdown.active {
        display: block;
        max-height: 500px
    }

    .dropdown a {
        padding-left: 40px;
        color: white;
        font-size: 14px;
    }

    .dropdown-arrow.active {
        transform: rotate(180deg);
    }

    .scrolling-text {
        font-size: 14px;
        gap: 15px;
    }

    .scrolling-message {
        padding: 10px 0;
    }

    .login-item {
        margin-left: 0;
        margin-top: 10px;
    }

    .login-link {
        justify-content: center;
        margin-right: 320px;
        margin-left: 12px;
/*        padding: 12px 15px;*/
        height: 46px;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .login-link i {
        margin-right: -1px; /* Adjusted for mobile */
    }
    .features-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .banner {
        height: 400px;
    }

    .banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .whats-new-container {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 15px;
        margin-right: 15px;
    }

    .whats-new-title {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        justify-content: center;
    }

    .whats-new-content {
        width: 100%;
        height: 100px;
    }

    .whats-new-btn {
        align-self: flex-end;
    }

    .news-content {
        font-size: 16px;
    }

    .news-date {
        font-size: 13px;
    }
    .statistics-container {
        gap: 20px;
    }

    .stat-item {
        min-width: 220px;
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 18px;
    }

    .stat-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .social-icons {
        justify-content: center;
        gap: 20px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }
    .copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .awards-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .award-card {
        height: 250px;
    }

    .award-image {
        height: 150px;
    }

    .banner {
        height: 300px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .recognition-text {
        font-size: 11px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .whats-new-title {
        font-size: 16px;
        padding: 8px 12px;
    }

    .whats-new-btn .btn {
        padding: 8px 12px;
        font-size: 14px;
        margin-right: 10px;
    }

    .news-content {
        font-size: 14px;
    }

    .news-icon {
        font-size: 16px;
        margin-right: 10px;
    }

    .whats-new-content {
        height: 100px;
    }
}
/* Statistics Section Styles */
.statistics-section {
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.statistics-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.statistics-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    gap: 11px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    scroll-snap-type: x mandatory;
}

    .statistics-container::-webkit-scrollbar {
        display: none;
    }

    .statistics-container.dragging {
        scroll-behavior: auto;
        cursor: grabbing;
        scroll-snap-type: none;
    }

.stat-item {
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0px 4px 15px rgb(0 0 0 / 14%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, background-color 0.3s;
    min-width: 250px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

    .stat-item:hover {
        transform: translateY(-5px);
    }

.stat-icon {
    font-size: 45px;
    margin-bottom: 20px;
    color: #ffc107;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: #6195bb;
}

.stat-label {
    font-size: 20px;
    font-weight: 500;
    color: #337ab7;
}

/* Navigation arrows */
.stat-nav {
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    border: none;
    font-size: 20px;
}


    .stat-nav.prev {
        left: 10px;
    }

    .stat-nav.next {
        right: 10px;
    }

    .stat-nav.hidden {
        display: none;
    }

/* Responsive adjustments */
/*@media (max-width: 768px) {
    .statistics-container {
        gap: 20px;
    }

    .stat-item {
        min-width: 220px;
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 18px;
    }

    .stat-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}*/


@media (max-width: 480px) {
    .scrolling-text {
        font-size: 12px;
        gap: 10px;
    }

    .scrolling-message {
        padding: 8px 0;
    }

    .statistics-container {
        gap: 15px;
    }

    .stat-item {
        min-width: 200px;
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }
}
