﻿.stats-body {
    background: #F7F7F7;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.stats-header {
    text-align: left;
    margin-bottom: 20px;
}

.stats-title {
    color: #30619b;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stats-subtitle {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.stat-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    padding: 25px;
}

.card-heading {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.card-heading-text {
    font-size: 1.3rem;
    color: #30619b !important;
}

.card-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.card-value {
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    color: #e98300;
    margin-bottom: 15px;
}

.card-description {
    display: block;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.card-action {
    margin-top: auto;
    color: #30619b;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.action-arrow {
    position: relative;
}

    .action-arrow::after {
        content: "→";
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

.stat-card:hover .action-arrow::after {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-title {
        font-size: 2rem;
    }

    .stats-subtitle {
        font-size: 1rem;
    }

    .stat-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .card-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-title {
        font-size: 1.8rem;
    }

    .stat-card-link {
        padding: 20px;
    }

    .card-heading-text {
        font-size: 1.2rem;
    }

    .card-value {
        font-size: 1.8rem;
    }
}

.stats-footer {
    margin-top: 50px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Animation for cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: fadeIn 0.5s ease-out;
}

    .stat-card:nth-child(2) {
        animation-delay: 0.1s;
    }

    .stat-card:nth-child(3) {
        animation-delay: 0.2s;
    }

    .stat-card:nth-child(4) {
        animation-delay: 0.3s;
    }

    .stat-card:nth-child(5) {
        animation-delay: 0.4s;
    }

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px;
}

.news-header {
    text-align: left;
    margin-bottom: 20px;
}

.news-title {
    color: #30619b;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.news-subtitle {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.news-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.news-card-image {
    position: relative;
    overflow: hidden;
}

    .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #30619b;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-card-heading {
    font-size: 1.3rem;
    color: #30619b;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.news-card-action {
    margin-top: auto;
    color: #30619b;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

    .news-card-action::after {
        content: "→";
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

.news-card:hover .news-card-action::after {
    transform: translateX(5px);
}

.news-footer {
    margin-top: 50px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Animation for cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .news-title {
        font-size: 2rem;
    }

    .news-subtitle {
        font-size: 1rem;
    }

    .news-card-heading {
        font-size: 1.2rem;
    }
}

@@media (max-width: 480px) {
    .news-title {
        font-size: 1.8rem;
    }

    .news-card-content {
        padding: 20px;
    }

    .news-card-heading {
        font-size: 1.1rem;
    }
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px;
}

.events-header {
    text-align: left;
    margin-bottom: 20px;
}

.events-title {
    color: #30619b;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.events-subtitle {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.event-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.event-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.event-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

    .event-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #30619b;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-card-content {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.event-card-heading {
    font-size: 1.3rem;
    color: #30619b;
    margin-bottom: 10px;
    line-height: 1.4;
}

.event-card-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
    flex-grow: 1;
}

.event-card-action {
    margin-top: auto;
    color: #30619b;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-top: 10px;
    border-top: 2px solid #f0f0f0;
}

    .event-card-action::after {
        content: "→";
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

.event-card:hover .event-card-action::after {
    transform: translateX(5px);
}

.events-footer {
    margin-top: 50px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Animation for cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-card {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .events-title {
        font-size: 2rem;
    }

    .events-subtitle {
        font-size: 1rem;
    }

    .event-card-heading {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .events-title {
        font-size: 1.8rem;
    }

    .event-card-content {
        padding: 10px;
    }

    .event-card-heading {
        font-size: 1.1rem;
    }
}

.president-container {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 20px;
}

.president-section {
    background: #f8f9fa !important;
    padding: 2px 0;
}

.president-card {
    background-color: #ffffff !important;
    border-radius: 25px !important;
    border: 2px solid #2a5d9f !important;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #2a5d9f;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
}

.president-image-container {
    text-align: center;
    margin-bottom: 25px;
}

.president-image {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .president-image:hover {
        transform: scale(1.03);
    }

.message-title {
    color: #2a5d9f;
    margin-bottom: 20px;
    font-weight: 600;
}

.message-content {
    background-color: #fefefe;
    color: #2e2e2e;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    padding: 30px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #2a5d9f;
    position: relative;
}

.read-more-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #2a5d9f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .read-more-link:hover {
        background-color: #1d4677;
        color: white;
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 1.9rem;
    }

    .message-title {
        font-size: 1.6rem;
    }

    .message-content {
        font-size: 16px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.7rem;
    }

    .message-title {
        font-size: 1.5rem;
    }

    .message-content {
        font-size: 15px;
        padding: 20px;
        line-height: 1.7;
    }

    .president-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .message-title {
        font-size: 1.3rem;
    }

    .message-content {
        font-size: 14px;
        padding: 15px;
        line-height: 1.6;
    }

    .read-more-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: #2a5d9f;
    opacity: 0.2;
    font-family: Georgia, serif;
}

