.upcoming-event-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    transition: all .35s ease;
}

.upcoming-event-item:hover {
    border-color: #d9e2f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 28, 84, .06);
}

.event-date {
    width: 72px;
    min-width: 72px;
    height: 72px;
    background: #f5f8ff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 28, 84, .08);
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: #001c54;
}

.event-date .month {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #001c54;
}

.event-content {
    flex: 1;
}

.event-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    color: #001c54;
    background: rgba(255, 193, 7, .15);
    padding: 4px 10px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.event-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
}

.event-meta {
    color: #6c757d;
    font-size: .85rem;
}

.btn-event {
    background: #001c54;
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: .85rem;
    border: none;
    transition: .3s;
}

.btn-event:hover {
    background: #002d86;
    color: #fff;
}

@media(max-width:767px) {

    .upcoming-event-item {
        flex-wrap: wrap;
        padding: 18px;
    }

    .event-action {
        width: 100%;
        margin-top: 10px;
    }

    .event-action .btn {
        width: 100%;
    }
}


.partners-section {
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 193, 7, .12);
    color: #ffc107;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #001c54;
    margin-top: 15px;
}

.section-description {
    max-width: 650px;
    margin: 15px auto 0;
    color: #6c757d;
}

/* ===============================
   PARTNER CARD
================================== */

.partner-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    transition: all .35s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    margin: 10px;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 28, 84, .12);
}

.partner-card img {

    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 20px;
}

.partner-card h6 {
    margin: 0;
    color: #001c54;
    font-weight: 600;
    font-size: 1rem;
}

/* ===============================
   OWL NAVIGATION
================================== */

.partners-carousel .owl-nav {
    text-align: center;
    margin-top: 25px;
}

.partners-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: #001c54 !important;
    color: #fff !important;
    margin: 0 5px;
    transition: .3s;
}

.partners-carousel .owl-nav button:hover {
    background: #ffc107 !important;
    color: #000 !important;
}

.partners-carousel .owl-nav span {
    font-size: 24px;
    line-height: 1;
}


.partners-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
    display: none;
}

.partners-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d2d2d2 !important;
}

.partners-carousel .owl-dot.active span {
    background: #001c54 !important;
}

.news-events-section {
    font-family: 'Poppins', sans-serif;
}

.event-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all .35s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12) !important;
}

.event-img-wrapper {
    overflow: hidden;
}

.event-img-wrapper img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.event-card:hover .event-img-wrapper img {
    transform: scale(1.08);
}

.card-title {
    line-height: 1.4;
    min-height: 58px;
    color: #001c54;
}

.modal-content {
    border-radius: 18px;
}

.modal-body img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.btn-outline-primary {
    border-width: 2px;
}

@media (max-width: 767px) {
    .event-img-wrapper img {
        height: 220px;
    }

    .card-title {
        min-height: auto;
    }
}

p {
    margin-bottom: 10px;
}