/*all pages banner*/
/* Common inner page banner */
.inner-page-banner {
    height: 350px !important;
    min-height:350px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.inner-page-banner .inner-page-banner-overlay {
    height: 350px !important;
    min-height: 350px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(
        90deg,
        rgba(15, 35, 80, 0.68) 0%,
        rgba(15, 35, 80, 0.35) 45%,
        rgba(15, 35, 80, 0.08) 100%
    ) !important;
}

.inner-page-banner .middle-section {
    padding: 0 !important;
    margin: 0 !important;
}

.inner-page-banner .link-list-menu h2 {
    margin: 0 0 4px !important;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
}

.inner-page-banner .link-list-menu p {
    margin: 0 !important;
    color: #ffffff;
    font-size: 14px;
}

@media (max-width: 767px) {
    .inner-page-banner,
    .inner-page-banner .inner-page-banner-overlay {
        height: 210px !important;
        min-height: 210px !important;
    }

    .inner-page-banner .link-list-menu h2 {
        font-size: 22px;
    }

    .inner-page-banner .link-list-menu p {
        font-size: 12px;
    }
}
/*all pages banner*/


/*navbar*/

:root {
    --upsia-navy: #0b2d4d;
    --upsia-blue: #155a92;
    --upsia-saffron: #f28c28;
    --upsia-light: #f5f8fb;
    --upsia-text: #243746;
}

/* Fixed header wrapper */
.w3l-bootstrap-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e7edf2;
    box-shadow: 0 4px 18px rgba(11, 45, 77, 0.08);
    transition: all 0.3s ease;
}

/* Main navbar */
.w3l-bootstrap-header .navbar {
    min-height: 82px;
    padding: 10px 0 !important;
}

/* Logo area */
.w3l-bootstrap-header .head-top {
    display: flex;
    align-items: center;
}

.w3l-bootstrap-header .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 !important;
}

.w3l-bootstrap-header .head-logo {
    display: flex;
    align-items: center;
}

.w3l-bootstrap-header .logo {
    width: auto;
    max-width: 185px;
    max-height: 58px;
    object-fit: contain;
}

/* Navigation position */
.w3l-bootstrap-header .navbar-collapse {
    justify-content: flex-end;
}

/* Main navigation links */
.w3l-bootstrap-header .navbar-nav .nav-link {
    position: relative;
    padding: 12px 1px !important;
    color: var(--upsia-navy) !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15px;
    white-space: nowrap;
    transition: color 0.25s ease;
}

/* Bottom accent line */
.w3l-bootstrap-header .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 6px;
    height: 3px;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

/* Bootstrap dropdown arrow should remain visible */
.w3l-bootstrap-header .navbar-nav .dropdown-toggle::after {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 0.35em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    background: transparent;
    transform: none;
}

.w3l-bootstrap-header .navbar-nav .nav-link:hover::after,
.w3l-bootstrap-header .navbar-nav .nav-item.active .nav-link::after,
.w3l-bootstrap-header .navbar-nav .show > .nav-link::after {
    transform: scaleX(1);
}

/* Dropdown design */
.w3l-bootstrap-header .dropdown-menu {
    min-width: 235px;
    padding: 8px;
    margin-top: 12px;
    border: 1px solid #e5edf4;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(11, 45, 77, 0.16);
    background: #ffffff;
    overflow: hidden;
}

.w3l-bootstrap-header .dropdown-item {
    padding: 10px 13px;
    margin: 2px 0;
    border-radius: 8px;
    color: var(--upsia-text);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.w3l-bootstrap-header .dropdown-item:hover,
.w3l-bootstrap-header .dropdown-item:focus {
    color: var(--upsia-navy);
    background: #edf5fb;
    padding-left: 18px;
}

/* Contact Us as a highlighted action button */
.w3l-bootstrap-header .navbar-nav > .nav-item:last-child .nav-link {
    margin-left: 8px;
    padding: 10px 16px !important;
    color: #ffffff !important;
    background: var(--upsia-navy);
    border: 1px solid var(--upsia-navy);
    border-radius: 7px;
    box-shadow: 0 4px 10px rgba(11, 45, 77, 0.18);
}

.w3l-bootstrap-header .navbar-nav > .nav-item:last-child .nav-link::after {
    display: none;
}

.w3l-bootstrap-header .navbar-nav > .nav-item:last-child .nav-link:hover {
    color: #ffffff !important;
    background: var(--upsia-saffron);
    border-color: var(--upsia-saffron);
}

/* Mobile toggle button */
.w3l-bootstrap-header .navbar-toggler {
    padding: 7px 9px;
    border: 1px solid #d6e1ea;
    border-radius: 7px;
    outline: none !important;
}

.w3l-bootstrap-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(21, 90, 146, 0.12);
}

.w3l-bootstrap-header .navbar-toggler-icon {
    width: 1.35em;
    height: 1.35em;
}

/* Tablet */
@media (max-width: 1199px) {
    .w3l-bootstrap-header .navbar-nav .nav-link {
        padding: 12px 6px !important;
        font-size: 13px;
    }

    .w3l-bootstrap-header .logo {
        max-width: 155px;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .w3l-bootstrap-header .navbar {
        min-height: 68px;
        padding: 8px 15px !important;
    }

    .w3l-bootstrap-header .container {
        max-width: 100%;
    }

    .w3l-bootstrap-header .head-top {
        width: 100%;
        justify-content: space-between;
    }

    .w3l-bootstrap-header .navbar-collapse {
        margin-top: 12px;
        padding: 10px;
        background: #ffffff;
        border: 1px solid #e5edf4;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(11, 45, 77, 0.1);
    }

    .w3l-bootstrap-header .navbar-nav {
        align-items: stretch;
        gap: 0;
    }

    .w3l-bootstrap-header .navbar-nav .nav-link {
        padding: 12px 10px !important;
        border-bottom: 1px solid #eef2f5;
    }

    .w3l-bootstrap-header .navbar-nav .nav-link::after {
        left: 0;
        right: auto;
        bottom: 0;
        width: 4px;
        height: 100%;
        transform: scaleY(0);
    }

    .w3l-bootstrap-header .navbar-nav .nav-link:hover::after,
    .w3l-bootstrap-header .navbar-nav .nav-item.active .nav-link::after,
    .w3l-bootstrap-header .navbar-nav .show > .nav-link::after {
        transform: scaleY(1);
    }

    .w3l-bootstrap-header .dropdown-menu {
        margin: 0 0 8px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: var(--upsia-light);
    }

    .w3l-bootstrap-header .navbar-nav > .nav-item:last-child .nav-link {
        margin: 12px 0 0;
        text-align: center;
        border-bottom: 0;
    }

    .w3l-bootstrap-header .logo {
        max-width: 150px;
        max-height: 48px;
    }
}

/* WhatsApp icon in navbar */
.w3l-bootstrap-header .navbar-nav .upsia-whatsapp-nav {
    margin-left: 6px;
}

.w3l-bootstrap-header .navbar-nav .upsia-whatsapp-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    color: #168a45 !important;
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    font-size: 23px !important;
    line-height: 1;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.14);
    transition: all 0.25s ease;
}

.w3l-bootstrap-header .navbar-nav .upsia-whatsapp-link {
    color: #ffffff !important;
    background: #168a45 !important;
    border-color: #168a45 !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .w3l-bootstrap-header .navbar-nav .upsia-whatsapp-nav {
        margin: 10px 0 0;
    }

    .w3l-bootstrap-header .navbar-nav .upsia-whatsapp-link {
        width: 42px;
        height: 42px;
        margin-left: 10px;
    }
}

/*navbar*/


/*index page*/


.event-glimpses-section {
    padding-top: 70px;
    background: #ffffff;
    overflow: hidden;
}

.event-heading-wrap {
    margin-bottom: 38px;
}

.event-glimpses-section .section-title {
    margin: 0;
    color: #16439a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.section-title-line {
    display: block;
    width: 145px;
    height: 3px;
    margin: 10px auto 0;
    background: #e52323;
}
.eventMainSwiper {
    width: 100%;
    overflow: visible;
    position: relative;
}

.event-main-prev,
.event-main-next {
    width: 34px !important;
    height: 34px !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;

    background: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    color: #16439a !important;
    padding: 0 !important;
}


.event-main-prev::after,
.event-main-next::after {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.event-main-prev {
    left: -5px !important;
}

.event-main-next {
    right: -5px !important;
}


@media (max-width: 767px) {
    .event-main-prev,
    .event-main-next {
        display: none !important;
    }
}

.event-glimpse-layout {
    display: flex;
    align-items: center;
    gap: 68px;
    min-height: 480px;
}

.event-image-area {
    width: 48%;
    min-width: 0;
}

.eventImageSwiper {
    width: 100%;
    height: 480px;
    background: #f5f5f5;
    overflow: hidden;
}

.event-glimpse-image {
    width: 100%;
    height: 480px;
    display: block;
    object-fit: contain;
    object-position: center;
}

.event-glimpse-content {
    width: 52%;
    padding: 0 15px 0 0;
}

.event-small-title {
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.55;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.event-small-title i {
    color: #21479b;
    font-size: 15px;
    margin-right: 7px;
    letter-spacing: 0;
}

.event-glimpse-content h3 {
    color: #555555;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.event-title-line {
    display: block;
    width: 50px;
    height: 4px;
    margin: 18px 0 20px;
    background: #21479b;
}

.event-description {
    color: #242424;
    font-size: 15px;
    line-height: 1.72;
    text-align: justify;
}

.event-description p {
    margin-bottom: 12px;
}

.event-description p:last-child {
    margin-bottom: 0;
}

.event-view-more {
    display: inline-block;
    margin-top: 26px;
    padding: 11px 22px;
    background: #21479b;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.3s ease;
}

.event-view-more:hover {
    background: #e52323;
    color: #ffffff !important;
}

.event-image-pagination {
    bottom: 12px !important;
}

.event-image-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #16439a;
    opacity: 0.45;
}

.event-image-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.event-main-prev,
.event-main-next {
    width: 42px;
    height: 42px;
    color: #16439a;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.event-main-prev:after,
.event-main-next:after {
    font-size: 15px;
    font-weight: bold;
}


@media (max-width: 1199px) {
    .event-glimpse-layout {
        gap: 40px;
    }

    .event-main-prev {
        left: 5px;
    }

    .event-main-next {
        right: 5px;
    }
}

@media (max-width: 991px) {
    .event-glimpse-layout {
        gap: 28px;
        min-height: 390px;
    }

    .eventImageSwiper,
    .event-glimpse-image {
        height: 390px;
    }

    .event-glimpse-content h3 {
        font-size: 24px;
    }

    .event-small-title {
        letter-spacing: 2px;
    }
}

@media (max-width: 767px) {
    .event-glimpses-section .section-title {
        font-size: 27px;
    }

    .event-glimpse-layout {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        min-height: auto;
    }

    .event-image-area,
    .event-glimpse-content {
        width: 100%;
    }

    .eventImageSwiper,
    .event-glimpse-image {
        height: 310px;
    }

    .event-glimpse-content {
        padding: 0;
    }

    .event-glimpse-content h3 {
        font-size: 23px;
    }

    .event-description {
        font-size: 14px;
        text-align: left;
    }

    .event-main-prev,
    .event-main-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .eventImageSwiper,
    .event-glimpse-image {
        height: 250px;
    }

    .event-small-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

 .event-image-area {
    width: 550px;
    height: 500px;
    flex: 0 0 600px;
    overflow: hidden;
    background: #f5f5f5;
}

.eventImageSwiper,
.eventImageSwiper .swiper-wrapper,
.eventImageSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.event-glimpse-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Tablet */
@media (max-width: 991px) {
    .event-image-area {
        width: 480px;
        height: 440px;
        flex: 0 0 480px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .event-image-area {
        width: 100%;
        height: 320px;
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    .event-glimpse-layout {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .event-image-area {
        width: 100% !important;
        height: 340px !important;
        flex: 0 0 auto !important;
    }

    .eventImageSwiper,
    .eventImageSwiper .swiper-wrapper,
    .eventImageSwiper .swiper-slide {
        width: 100% !important;
        height: 340px !important;
    }

    .event-glimpse-image {
        width: 100% !important;
        height: 340px !important;
        object-fit: cover;
    }
}


.upsia-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fbff 0%, #edf5fb 55%, #fff8ee 100%);
    margin-top:20px;
}

.upsia-hero-section::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    top: -220px;
    left: -180px;
    border-radius: 50%;
    background: rgba(242, 140, 40, 0.10);
}

.upsia-hero-section::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -130px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(11, 45, 77, 0.08);
}

.upsia-hero-content {
    position: relative;
    z-index: 1;
}

.upsia-hero-text {
    padding-right: 45px;
}

.upsia-hero-title {
    color: #0b2d4d !important;
    font-size: 43px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.7px;
    margin-bottom: 12px;
}

.upsia-hero-short-name {
    display: inline-block;
    padding: 6px 13px;
    margin-top: 0 !important;
    color: #b65b00;
    background: #fff0dc;
    border: 1px solid #ffd9a7;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.upsia-hero-description {
    max-width: 660px;
    color: #536473;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
}

.upsia-hero-button {
    padding: 12px 24px;
    color: #ffffff !important;
    background: #0b2d4d !important;
    border: 1px solid #0b2d4d !important;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 9px 20px rgba(11, 45, 77, 0.18);
    transition: all 0.25s ease;
}

.upsia-hero-button:hover {
    color: #ffffff !important;
    background: #f28c28 !important;
    border-color: #f28c28 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(242, 140, 40, 0.28);
}

.upsia-hero-image-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
}

.upsia-hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: 20px 0 0 25px;
    border-radius: 18px;
    z-index: -1;
}

.upsia-hero-image {
    max-width: 100%;
    padding: 10px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(11, 45, 77, 0.18);
}

/* Tablet */
@media (max-width: 991px) {
    .upsia-hero-title {
        font-size: 36px;
    }

    .upsia-hero-text {
        padding-right: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .upsia-hero-section {
        text-align: center;
    }

    .upsia-hero-text {
        padding-right: 15px;
    }

    .upsia-hero-title {
        font-size: 30px;
    }

    .upsia-hero-description {
        font-size: 15px;
        line-height: 1.75;
    }

    .upsia-hero-image-wrap {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .upsia-hero-image-wrap::before {
        inset: 15px 0 0 15px;
    }
}

/* UPSIA OBJECTIVES SECTION */

.upsia-objective-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.upsia-objective-content {
    position: relative;
}

.upsia-objective-row {
    position: relative;
    z-index: 1;
}

.upsia-objective-image-wrap {
    position: relative;
    padding: 18px 25px 18px 12px;
}

.upsia-objective-image-wrap::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 84%;
    left: 0;
    bottom: 5px;
    background: #edf5fb;
    border-radius: 18px;
    z-index: -1;
}

.upsia-objective-image-wrap::after {
    content: "";
    position: absolute;
    width: 88%;
    height: 86%;
    top: 10px;
    right: 10px;
    border: 2px solid #f28c28;
    border-radius: 18px;
    z-index: -1;
}

.upsia-objective-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 35px rgba(11, 45, 77, 0.16);
}

.upsia-objective-text {
    padding: 20px 25px 20px 45px;
}

.upsia-objective-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 14px;
    color: #0b2d4d;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.upsia-objective-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 58px;
    height: 4px;
    background: #f28c28;
    border-radius: 20px;
}

.upsia-objective-description {
    margin-bottom: 24px;
    color: #536473;
    font-size: 16px;
    line-height: 1.85;
}

.upsia-objective-link {
    display: inline-block !important;
    padding: 9px 18px;
    color: #ffffff !important;
    background: #f28c28;
    border: 1px solid #f28c28;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: all 0.25s ease;
}

.upsia-objective-link:hover {
    color: #ffffff;
    background: #0b2d4d;
    border-color: #0b2d4d;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(11, 45, 77, 0.18);
}
@media (max-width: 991px) {
    .upsia-objective-text {
        padding-left: 25px;
    }

    .upsia-objective-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {

    .upsia-objective-image-wrap {
        padding: 15px 22px 25px 10px;
        margin-bottom: 22px;
    }

    .upsia-objective-text {
        padding: 10px 15px;
    }

    .upsia-objective-title {
        font-size: 28px;
    }

    .upsia-objective-description {
        font-size: 15px;
        line-height: 1.75;
    }
}
/* =====================================================
   UPSIA CHAPTERS SECTION
===================================================== */

.upsia-chapters-section {
    position: relative;
    overflow: hidden;
    background: #f5f8fb;
}

.upsia-chapters-section::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    top: -175px;
    right: -125px;
    border: 42px solid rgba(242, 140, 40, 0.12);
    border-radius: 50%;
}

.upsia-chapters-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    left: -110px;
    bottom: -130px;
    background: rgba(11, 45, 77, 0.07);
    border-radius: 50%;
}

.upsia-chapters-section .upsia-chapters-content {
    position: relative;
    z-index: 1;
}

.upsia-chapters-content {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
    background: transparent !important;
}

.upsia-chapters-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.upsia-chapters-title {
    position: relative;
    display: inline-block;
    margin-bottom: 14px !important;
    padding-bottom: 13px;
    color: #0b2d4d !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.upsia-chapters-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 55px;
    height: 4px;
    background: #f28c28;
    border-radius: 10px;
    transform: translateX(-50%);
}

.upsia-chapters-subtitle {
    color: #5b6c7a !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.7;
}

.upsia-chapters-row {
    margin-top: 5px;
}

.upsia-chapter-column {
    margin-bottom: 24px;
}

.upsia-chapter-card {
    min-height: 150px;
    padding: 20px 18px;
    color: inherit !important;
    background: #ffffff !important;
    border: 1px solid #e3ebf1;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(11, 45, 77, 0.07);
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.upsia-chapter-card:hover {
    border-color: #f28c28;
    box-shadow: 0 14px 30px rgba(11, 45, 77, 0.14);
    text-decoration: none !important;
    transform: translateY(-5px);
}

.upsia-chapter-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.upsia-chapter-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    padding: 8px;
    background: #edf5fb;
    border: 1px solid #dceaf5;
    border-radius: 14px;
}

.upsia-chapter-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    border-radius: 9px;
}

.upsia-chapter-text-column {
    display: flex;
    align-items: center;
}

.upsia-chapter-text {
    width: 100%;
}

.upsia-chapter-name {
    margin: 0 !important;
    color: #0b2d4d !important;
    font-size: 20px !important;
    font-weight: 750 !important;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.upsia-chapter-card:hover .upsia-chapter-name {
    color: #f28c28 !important;
}

@media (max-width: 767px) {
    .upsia-chapters-content {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .upsia-chapters-title {
        font-size: 28px !important;
    }

    .upsia-chapters-subtitle {
        font-size: 15px !important;
    }

    .upsia-chapter-card {
        min-height: auto;
        padding: 20px 15px;
    }

    .upsia-chapter-image-column {
        justify-content: flex-start;
    }

    .upsia-chapter-text-column {
        margin-top: 16px !important;
    }

    .upsia-chapter-name {
        font-size: 18px !important;
    }
}

/* =====================================================
   UPSIA SPONSOR SECTION
===================================================== */

.upsia-sponsor-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.upsia-sponsor-content {
    padding: 75px 0 !important;
    background: transparent !important;
}

.upsia-sponsor-heading {
    max-width: 720px;
    margin-bottom: 25px;
}

.upsia-sponsor-title {
    position: relative;
    display: inline-block;
    margin-bottom: 10px !important;
    padding-bottom: 13px;
    color: #0b2d4d !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.upsia-sponsor-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 55px;
    height: 4px;
    background: #f28c28;
    border-radius: 10px;
    transform: translateX(-50%);
}

.upsia-sponsor-slider-wrap {
    padding-top: 5px;
}

.upsia-sponsor-card {
    min-height: 240px;
    padding: 30px 25px;
    margin: 12px 10px 20px;
    background: #f8fbfd;
    border: 1px solid #e2ebf2;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(11, 45, 77, 0.08);
}

.upsia-sponsor-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 115px;
    padding: 12px;
    margin: 0 auto 18px;
    background: #ffffff;
    border: 1px solid #e1eaf1;
    border-radius: 14px;
}

.upsia-sponsor-logo {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    border-radius: 8px !important;
}

.upsia-sponsor-message {
    max-width: 680px;
    margin: 0 auto 12px;
    color: #5b6c7a;
    font-size: 15px;
    line-height: 1.75;
}

.upsia-sponsor-name {
    color: #0b2d4d;
    font-size: 17px;
    font-weight: 800;
}

/* Owl carousel dots */
.upsia-sponsor-section .owl-theme .owl-dots {
    margin-top: 12px;
}

.upsia-sponsor-section .owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 5px;
    background: #cbd8e2;
    transition: all 0.25s ease;
}

.upsia-sponsor-section .owl-theme .owl-dots .owl-dot.active span,
.upsia-sponsor-section .owl-theme .owl-dots .owl-dot:hover span {
    width: 25px;
    background: #f28c28;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .upsia-sponsor-content {
        padding: 55px 0 !important;
    }

    .upsia-sponsor-title {
        font-size: 28px !important;
    }

    .upsia-sponsor-card {
        min-height: 210px;
        padding: 25px 16px;
        margin-left: 4px;
        margin-right: 4px;
    }

    .upsia-sponsor-logo-box {
        width: 100px;
        height: 100px;
    }

    .upsia-sponsor-message {
        font-size: 14px;
    }
}

/* =====================================================
   UPSIA ORGANISATION STRUCTURE SECTION
===================================================== */

.upsia-team-section {
    position: relative;
    overflow: hidden;
    background: #f5f8fb;
}

.upsia-team-section::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    top: -165px;
    left: -115px;
    background: rgba(21, 90, 146, 0.07);
    border-radius: 50%;
}

.upsia-team-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -165px;
    bottom: -210px;
    border: 45px solid rgba(242, 140, 40, 0.11);
    border-radius: 50%;
}

.upsia-team-section .upsia-team-content {
    position: relative;
    z-index: 1;
}

.upsia-team-content {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
}

.upsia-team-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.upsia-team-title {
    position: relative;
    display: inline-block;
    margin-bottom: 10px !important;
    padding-bottom: 13px;
    color: #0b2d4d !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.upsia-team-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 55px;
    height: 4px;
    background: #f28c28;
    border-radius: 10px;
    transform: translateX(-50%);
}

.upsia-team-column {
    margin-bottom: 26px;
}

.upsia-team-card {
    height: 100%;
    padding: 18px 18px 22px !important;
    background: #ffffff;
    border: 1px solid #e2ebf2;
    border-radius: 15px;
    box-shadow: 0 9px 22px rgba(11, 45, 77, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.upsia-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(11, 45, 77, 0.15);
}

.upsia-team-image-wrap {
    overflow: hidden;
    border-radius: 11px;
    background: #edf5fb;
}

.upsia-team-image-link {
    display: block;
}

.upsia-team-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.upsia-team-card:hover .upsia-team-image {
    transform: scale(1.04);
}

.upsia-team-member {
    padding: 19px 8px 0;
}

.upsia-team-name {
    margin: 0 0 7px !important;
}

.upsia-team-name-link {
    color: #0b2d4d !important;
    font-size: 19px;
    font-weight: 800;
    text-decoration: none !important;
}

.upsia-team-designation {
    margin: 0 !important;
    color: #f28c28 !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.upsia-team-button-wrap {
    margin-top: 16px;
}

.upsia-team-view-more {
    display: inline-block !important;
    width: auto !important;
    min-width: 145px;
    padding: 11px 22px !important;
    color: #ffffff !important;
    background: #0b2d4d !important;
    border: 1px solid #0b2d4d !important;
    border-radius: 7px !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.upsia-team-view-more:hover {
    color: #ffffff !important;
    background: #f28c28 !important;
    border-color: #f28c28 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(242, 140, 40, 0.25);
}

@media (max-width: 767px) {
    .upsia-team-content {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .upsia-team-title {
        font-size: 28px !important;
    }

    .upsia-team-column {
        margin-bottom: 20px;
    }

    .upsia-team-card {
        max-width: 380px;
        margin: 0 auto;
    }
}
/* =====================================================
   UPSIA PRESS RELEASE SECTION
===================================================== */

.upsia-press-section {
    background: #ffffff;
}

.upsia-press-content {
    padding: 75px 0 !important;
}

.upsia-press-heading {
    margin-bottom: 0;
}

.upsia-press-title {
    position: relative;
    display: inline-block;
    margin-bottom: 10px !important;
    padding-bottom: 13px;
    color: #0b2d4d !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.upsia-press-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 55px;
    height: 4px;
    background: #f28c28;
    border-radius: 10px;
    transform: translateX(-50%);
}

.upsia-press-row {
    margin-top: 38px !important;
}

.upsia-press-column {
    display: flex;
    margin-bottom: 25px;
    color: inherit !important;
    text-decoration: none !important;
}

.upsia-press-card {
    width: 100%;
    min-height: 330px;
    padding: 15px 15px 18px;
    background: #ffffff;
    border: 1px solid #e2ebf2;
    border-radius: 14px;
    box-shadow: 0 9px 22px rgba(11, 45, 77, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.upsia-press-column:hover .upsia-press-card {
    border-color: #f28c28;
    box-shadow: 0 16px 32px rgba(11, 45, 77, 0.15);
    transform: translateY(-6px);
}

.upsia-press-post-content {
    width: 100%;
}

.upsia-press-image {
    display: block;
    width: 100% !important;
    height: 170px !important;
    object-fit: cover;
    border-radius: 9px;
}

.upsia-press-category {
    display: inline-block;
    padding: 5px 10px;
    margin: 16px 0 10px !important;
    color: #b65b00 !important;
    background: #fff0dc;
    border-radius: 20px;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.upsia-press-post-title {
    margin: 0 !important;
    color: #0b2d4d !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1.42;
    transition: color 0.25s ease;
}

.upsia-press-column:hover .upsia-press-post-title {
    color: #f28c28 !important;
}

.upsia-press-meta {
    width: 100%;
    padding-top: 14px;
    margin-bottom: 0 !important;
    border-top: 1px solid #e9eff4;
    color: #6d7d89;
    font-size: 13px;
    font-weight: 600;
    list-style: none;
}

.upsia-press-author {
    color: #0b2d4d;
}

.upsia-press-date {
    color: #6d7d89;
}

.upsia-press-button-wrap {
    margin-top: 12px;
}

.upsia-press-view-more {
    display: inline-block !important;
    width: auto !important;
    min-width: 145px;
    padding: 11px 22px !important;
    color: #ffffff !important;
    background: #0b2d4d !important;
    border: 1px solid #0b2d4d !important;
    border-radius: 7px !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.upsia-press-view-more:hover {
    color: #ffffff !important;
    background: #f28c28 !important;
    border-color: #f28c28 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(242, 140, 40, 0.25);
}

@media (max-width: 767px) {
    .upsia-press-content {
        padding: 55px 0 !important;
    }

    .upsia-press-title {
        font-size: 28px !important;
    }

    .upsia-press-row {
        margin-top: 28px !important;
    }

    .upsia-press-column {
        max-width: 410px;
        margin-left: auto;
        margin-right: auto;
    }

    .upsia-press-card {
        min-height: 300px;
    }
}

/* =====================================================
   UPSIA SUBSCRIBE SECTION
===================================================== */

.upsia-subscribe-section {
    position: relative;
    overflow: hidden;
    background: #edf5fb;
}

.upsia-subscribe-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -190px;
    left: -120px;
    border: 45px solid rgba(242, 140, 40, 0.14);
    border-radius: 50%;
}

.upsia-subscribe-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: -155px;
    background: rgba(11, 45, 77, 0.08);
    border-radius: 50%;
}

.upsia-subscribe-box {
    position: relative;
    z-index: 1;
    max-width: 940px;
    padding: 42px 45px;
    background: #ffffff;
    border: 1px solid #dce8f1;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(11, 45, 77, 0.10);
}

.upsia-subscribe-heading {
    margin-bottom: 0;
}

.upsia-subscribe-title {
    position: relative;
    display: inline-block;
    margin-bottom: 5px !important;
    padding-bottom: 12px;
    color: #0b2d4d !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.upsia-subscribe-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 48px;
    height: 4px;
    background: #f28c28;
    border-radius: 10px;
    transform: translateX(-50%);
}

.upsia-subscribe-form {
    margin-top: 28px !important;
}

.upsia-subscribe-fields {
    gap: 12px;
    align-items: center;
}

.upsia-subscribe-input {
    flex: 1 1 260px;
    height: 48px !important;
    padding: 10px 15px !important;
    color: #314858;
    background: #f8fbfd !important;
    border: 1px solid #d8e4ed !important;
    border-radius: 7px !important;
    font-size: 14px;
    box-shadow: none !important;
}

.upsia-subscribe-input:focus {
    background: #ffffff !important;
    border-color: #155a92 !important;
    box-shadow: 0 0 0 3px rgba(21, 90, 146, 0.12) !important;
}

.upsia-subscribe-button {
    flex: 0 0 auto;
    width: auto !important;
    height: 48px !important;
    padding: 10px 24px !important;
    color: #ffffff !important;
    background: #0b2d4d !important;
    border: 1px solid #0b2d4d !important;
    border-radius: 7px !important;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.upsia-subscribe-button:hover {
    color: #ffffff !important;
    background: #f28c28 !important;
    border-color: #f28c28 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(242, 140, 40, 0.25);
}

.upsia-subscribe-error {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .upsia-subscribe-box {
        padding: 32px 20px;
        border-radius: 14px;
    }

    .upsia-subscribe-title {
        font-size: 27px !important;
    }

    .upsia-subscribe-fields {
        display: block !important;
    }

    .upsia-subscribe-input,
    .upsia-subscribe-button {
        width: 100% !important;
        margin-bottom: 12px;
    }

    .upsia-subscribe-button {
        margin-bottom: 0;
    }
}

.upsia-subscribe-fields {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px;
}

.upsia-subscribe-input {
    flex: 1 1 0 !important;
    min-width: 0 !important;
}

.upsia-subscribe-button {
    flex: 0 0 auto !important;
    width: auto !important;
    white-space: nowrap;
}
/* =====================================================
   UPSIA VISION / INFORMATION BANNER
===================================================== */

.upsia-vision-section {
    position: relative;
    overflow: hidden;
    background: #eaf2f8;
}

.upsia-vision-content {
    position: relative;
    min-height: 500px;
    padding: 75px 0;
    background-position: center center !important;
    background-size: cover !important;
}

/* Overlay on full background image */
.upsia-vision-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 45, 77, 0.48);
}

.upsia-vision-content .container {
    position: relative;
    z-index: 1;
}

/* Full-width text area */
.upsia-vision-inner {
    width: 100%;
    max-width: 100%;
    padding: 38px 42px;
    background: rgba(11, 45, 77, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 5px solid #f28c28;
    border-radius: 14px;
    backdrop-filter: blur(2px);
}

.upsia-vision-heading {
    width: 100% !important;
    max-width: 100% !important;
}

.upsia-vision-title {
    margin: 0 0 18px !important;
    color: #ffffff !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1.25;
}

.upsia-vision-text {
    width: 100%;
    max-width: 100%;
}

.upsia-vision-description {
    max-width: 100%;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.97) !important;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 1.8;
}

/* Tablet */
@media (max-width: 991px) {
    .upsia-vision-content {
        min-height: auto;
        padding: 65px 0;
    }

    .upsia-vision-inner {
        padding: 32px 30px;
    }

    .upsia-vision-title {
        font-size: 30px !important;
    }

    .upsia-vision-description {
        font-size: 15px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .upsia-vision-content {
        min-height: auto;
        padding: 55px 0;
        background-position: 62% center !important;
    }

    .upsia-vision-inner {
        width: auto;
        max-width: none;
        padding: 25px 20px;
        margin: 0 8px;
        border-left-width: 4px;
        border-radius: 10px;
    }

    .upsia-vision-title {
        margin-bottom: 15px !important;
        font-size: 27px !important;
    }

    .upsia-vision-description {
        font-size: 14px !important;
        line-height: 1.7;
    }
}
/* Force Vision text box to full container width */
.w3l-index-block10 .middle-section.upsia-vision-inner,
.w3l-index-block10 .upsia-vision-inner {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 38px 42px !important;
    box-sizing: border-box !important;
}

.w3l-index-block10 .section-width.upsia-vision-heading,
.w3l-index-block10 .upsia-vision-heading,
.w3l-index-block10 .link-list-menu.upsia-vision-text,
.w3l-index-block10 .upsia-vision-text {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.w3l-index-block10 .upsia-vision-description {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* =====================================================
   UPSIA CALL TO ACTION SECTION - LIGHT BACKGROUND
===================================================== */

.upsia-cta-section {
    position: relative;
    overflow: hidden;
    background: #f5f8fb;
}

.upsia-cta-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -230px;
    left: -120px;
    border: 42px solid rgba(242, 140, 40, 0.14);
    border-radius: 50%;
}

.upsia-cta-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -125px;
    bottom: -180px;
    background: rgba(21, 90, 146, 0.07);
    border-radius: 50%;
}

.upsia-cta-content {
    position: relative;
    z-index: 1;
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.upsia-cta-title {
    position: relative;
    display: inline-block;
    margin: 0 !important;
    padding-bottom: 13px;
    color: #0b2d4d !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.upsia-cta-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 52px;
    height: 4px;
    background: #f28c28;
    border-radius: 10px;
    transform: translateX(-50%);
}

.upsia-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px !important;
}

.upsia-cta-buttons .btn-demo {
    display: inline-block !important;
    width: auto !important;
    min-width: 145px;
    padding: 11px 22px !important;
    border-radius: 7px !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.upsia-cta-donate {
    color: #0b2d4d !important;
    background: #ffffff !important;
    border: 1px solid #0b2d4d !important;
}

.upsia-cta-donate:hover {
    color: #ffffff !important;
    background: #0b2d4d !important;
    border-color: #0b2d4d !important;
    transform: translateY(-2px);
}

.upsia-cta-start {
    color: #ffffff !important;
    background: #f28c28 !important;
    border: 1px solid #f28c28 !important;
}

.upsia-cta-start:hover {
    color: #ffffff !important;
    background: #d97212 !important;
    border-color: #d97212 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(242, 140, 40, 0.28);
}

@media (max-width: 767px) {
    .upsia-cta-content {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .upsia-cta-title {
        font-size: 28px !important;
    }

    .upsia-cta-buttons {
        gap: 10px;
    }

    .upsia-cta-buttons .btn-demo {
        min-width: 130px;
        padding: 10px 17px !important;
    }
}

/*index page*/



/*event page*/

    .events-listing-section {
    padding: 80px 0;
    background: #f6f8fc;
}

.events-listing-section .row {
    row-gap: 32px;
}

/* Event Card */
.event-list-card {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(20, 67, 154, 0.10);
    transition: all 0.35s ease;
}

.event-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(20, 67, 154, 0.18);
}

/* Image */
.event-list-image-link {
    display: block;
    height: 245px;
    overflow: hidden;
    background: #eeeeee;
}

.event-list-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-list-card:hover .event-list-image {
    transform: scale(1.08);
}

/* Content */
.event-list-content {
    padding: 24px 24px 26px;
}

.event-list-date {
    display: inline-block;
    margin-bottom: 12px;
    color: #21479b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-list-date i {
    margin-right: 6px;
}

/* Title */
.event-list-content h3 {
    min-height: 68px;
    margin: 0 0 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.35;
}

.event-list-content h3 a {
    color: #263f83;
    text-decoration: none;
    transition: color 0.25s ease;
}

.event-list-content h3 a:hover {
    color: #e52323;
}

/* Description */
.event-list-description {
    min-height: 78px;
    margin-bottom: 20px;
    color: #555555;
    font-size: 14px;
    line-height: 1.75;
}

/* Button */
.event-list-card .event-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    margin-top: 0;
    padding: 10px 19px;
    background: #21479b;
    color: #ffffff !important;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.event-list-card .event-view-more:hover {
    background: #e52323;
    color: #ffffff !important;
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 991px) {
    .events-listing-section {
        padding: 60px 0;
    }

    .event-list-image-link {
        height: 230px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .events-listing-section {
        padding: 45px 0;
    }

    .events-listing-section .row {
        row-gap: 24px;
    }

    .event-list-image-link {
        height: 220px;
    }

    .event-list-content {
        padding: 20px;
    }

    .event-list-content h3 {
        min-height: auto;
        font-size: 21px;
    }

    .event-list-description {
        min-height: auto;
    }
}

.event-details-section {
    padding: 80px 0;
    background: #f6f8fc;
}

.event-details-section .row {
    align-items: flex-start;
}

/* Image box */
.eventDetailImageSwiper {
    width: 100%;
    height: 470px;
    overflow: hidden;
    background: #e9edf5;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(20, 67, 154, 0.14);
}

.eventDetailImageSwiper .swiper-wrapper,
.eventDetailImageSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

/* Main event image */
.event-detail-image {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Hide image slider previous / next arrows */
.event-detail-prev,
.event-detail-next,
.eventDetailImageSwiper .swiper-button-prev,
.eventDetailImageSwiper .swiper-button-next {
    display: none !important;
}

/* Pagination dots only */
.event-detail-pagination {
    bottom: 15px !important;
}

.event-detail-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    opacity: 0.6;
}

.event-detail-pagination .swiper-pagination-bullet-active {
    background: #21479b;
    opacity: 1;
}

/* Right content panel */
.event-details-section .col-lg-5 {
    padding: 35px 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(20, 67, 154, 0.10);
}

.event-detail-date {
    display: inline-block;
    margin-bottom: 14px;
    color: #21479b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-detail-title {
    margin: 0;
    color: #263f83;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.35;
}

.event-detail-description {
    margin-top: 22px;
    color: #4b4b4b;
    font-size: 15px;
    line-height: 1.85;
    text-align: left;
}

.event-detail-description p {
    margin-bottom: 14px;
}

.event-details-section .event-title-line {
    width: 55px;
    height: 4px;
    margin: 18px 0 0;
    background: #21479b;
}

/* Back button */
.event-details-section .event-view-more {
    display: inline-block;
    margin-top: 25px;
    padding: 11px 21px;
    background: #21479b;
    color: #ffffff !important;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.3s ease;
}

.event-details-section .event-view-more:hover {
    background: #e52323;
    color: #ffffff !important;
}

/* Tablet */
@media (max-width: 991px) {
    .event-details-section {
        padding: 60px 0;
    }

    .eventDetailImageSwiper {
        height: 430px;
        margin-bottom: 30px;
    }

    .event-details-section .col-lg-5 {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .event-details-section {
        padding: 45px 0;
    }

    .eventDetailImageSwiper {
        height: 280px;
        border-radius: 7px;
    }

    .event-details-section .col-lg-5 {
        padding: 24px 20px;
        border-radius: 7px;
    }

    .event-detail-title {
        font-size: 25px;
    }

    .event-detail-description {
        font-size: 14px;
        line-height: 1.75;
    }
}




/*contact page*/

  .contact-page-section {
        padding: 80px 0;
        background: #f5f7fb;
        margin-top:30px;
    }

    .contact-info-card,
    .contact-form-card {
        height: 100%;
        padding: 38px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(20, 67, 154, 0.10);
    }

    .contact-section-title {
        margin: 0 0 10px;
        color: #21479b;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 30px;
        font-weight: 600;
    }

    .contact-section-subtitle {
        margin-bottom: 30px;
        color: #6b7280;
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-info-item {
        display: flex;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 22px;
        border-bottom: 1px solid #edf0f5;
    }

    .contact-info-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .contact-info-icon {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 46px;
        background: #eaf0ff;
        border-radius: 50%;
        color: #21479b;
        font-size: 18px;
    }

    .contact-info-text h5 {
        margin: 2px 0 6px;
        color: #263f83;
        font-size: 15px;
        font-weight: 700;
    }

    .contact-info-text p,
    .contact-info-text a {
        margin: 0;
        color: #555555;
        font-size: 14px;
        line-height: 1.65;
        text-decoration: none;
    }

    .contact-info-text a:hover {
        color: #e52323;
    }

    .contact-form-card .form-group {
        margin-bottom: 20px;
    }

    .contact-form-card label {
        margin-bottom: 8px;
        color: #263f83;
        font-size: 14px;
        font-weight: 700;
    }

    .contact-form-card .form-control {
        height: 48px;
        border: 1px solid #dfe5f0;
        border-radius: 5px;
        box-shadow: none;
        color: #333333;
        font-size: 14px;
    }

    .contact-form-card textarea.form-control {
        height: 125px;
        resize: vertical;
    }

    .contact-form-card .form-control:focus {
        border-color: #21479b;
        box-shadow: 0 0 0 3px rgba(33, 71, 155, 0.10);
    }

    .captcha-box {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 5px;
    }

    .captcha-question {
        min-width: 125px;
        padding: 13px 14px;
        background: #eaf0ff;
        border: 1px dashed #21479b;
        border-radius: 5px;
        color: #21479b;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
    }

    .captcha-box .form-control {
        width: 150px;
    }

    .btn-contact {
        padding: 12px 26px;
        background: #21479b;
        border: 0;
        border-radius: 4px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        transition: 0.3s ease;
    }

    .btn-contact:hover,
    .btn-contact:focus {
        background: #e52323;
        color: #ffffff;
    }

    .error {
        display: block;
        margin-top: 5px;
        color: #e52323;
        font-size: 12px;
        font-weight: 500;
    }

    #success_message {
        min-height: 22px;
        margin: 0 0 14px;
        color: #198754;
        font-size: 14px;
        font-weight: 600;
    }

    @media (max-width: 767px) {
        .contact-page-section {
            padding: 45px 0;
        }

        .contact-info-card,
        .contact-form-card {
            padding: 25px 20px;
        }

        .contact-section-title {
            font-size: 26px;
        }

        .captcha-box {
            align-items: stretch;
            flex-direction: column;
        }

        .captcha-box .form-control {
            width: 100%;
        }
    }
/*contact page*/


/*about page*/


.introduction-section {
    background: #f6f8fc;
}

.introduction-heading {
    margin-bottom: 38px;
}

.intro-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.introduction-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.intro-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 0;
    background: #e52323;
}

.introduction-content-box {
    max-width: 1080px;
    margin: 0 auto;
    padding: 42px 45px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(20, 67, 154, 0.10);
}

.introduction-content p {
    position: relative;
    margin: 0 0 18px;
    padding-left: 20px;
    color: #4d5562;
    font-size: 15px;
    line-height: 1.85;
    text-align: justify;
}

.introduction-content p::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #e52323;
    border-radius: 50%;
}

.objectives-box {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    padding: 27px 30px;
    background: linear-gradient(135deg, #21479b, #163a85);
    border-radius: 8px;
}

.objectives-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #ffffff;
    font-size: 21px;
}

.objectives-content h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 600;
}

.objectives-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 767px) {
    .introduction-heading h3 {
        font-size: 26px;
    }

    .introduction-content-box {
        padding: 28px 20px;
    }

    .introduction-content p,
    .objectives-content p {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }

    .objectives-box {
        flex-direction: column;
        gap: 14px;
        padding: 24px 20px;
    }

    .objectives-content h3 {
        font-size: 22px;
    }
}
/*about page*/

/*MISSION & VISION PAgE */

.mission-vision-section {
    background: #f6f8fc;
}

.mission-vision-heading {
    margin-bottom: 38px;
}

.mission-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mission-vision-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.mission-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 0;
    background: #e52323;
}

.mission-vision-box {
    max-width: 1080px;
    margin: 0 auto;
    padding: 42px 45px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(20, 67, 154, 0.10);
}

.mission-vision-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    padding: 22px 25px;
    background: linear-gradient(135deg, #21479b, #163a85);
    border-radius: 8px;
}

.mission-vision-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
}

.mission-vision-top h4 {
    margin: 0 0 5px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 600;
}

.mission-vision-top p {
    margin: 0;
    color: rgba(255, 255, 255, 0.90);
    font-size: 14px;
    line-height: 1.6;
}

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

.mission-vision-list li {
    position: relative;
    margin-bottom: 18px;
    padding: 16px 18px 16px 52px;
    background: #f8faff;
    border-left: 3px solid #21479b;
    border-radius: 4px;
    color: #4d5562;
    font-size: 15px;
    line-height: 1.75;
    text-align: justify;
}

.mission-vision-list li:last-child {
    margin-bottom: 0;
}

.mission-vision-list li::before {
    content: "\f00c";
    position: absolute;
    top: 17px;
    left: 18px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #21479b;
    border-radius: 50%;
    color: #ffffff;
    font-family: FontAwesome;
    font-size: 11px;
}

@media (max-width: 767px) {
    .mission-vision-heading h3 {
        font-size: 26px;
    }

    .mission-vision-box {
        padding: 28px 20px;
    }

    .mission-vision-top {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 20px;
    }

    .mission-vision-top h4 {
        font-size: 21px;
    }

    .mission-vision-list li {
        padding: 15px 15px 15px 48px;
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }

    .mission-vision-list li::before {
        left: 15px;
    }
}





/*  ORGANISATION STRUCTURE */

.organisation-section {
    padding-top:30px;
    background: #f6f8fc;
}

.organisation-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.organisation-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.organisation-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.organisation-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 18px;
    background: #e52323;
}

.organisation-heading p {
    margin: 0;
    color: #596273;
    font-size: 15px;
    line-height: 1.75;
}

.organisation-team-row {
    row-gap: 30px;
}

.organisation-team-column {
    display: flex;
}

.organisation-team-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(20, 67, 154, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.organisation-team-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 30px rgba(20, 67, 154, 0.18);
}

.organisation-team-image-wrap {
    height: 265px;
    overflow: hidden;
    background: #e9edf5;
}

.organisation-team-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease;
}

.organisation-team-card:hover .organisation-team-image {
    transform: scale(1.06);
}

.organisation-team-content {
    min-height: 105px;
    padding: 20px 16px;
    text-align: center;
}

.organisation-team-content h5 {
    margin: 0 0 7px;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

.organisation-team-content p {
    margin: 0;
    color: #e52323;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .organisation-heading h3 {
        font-size: 26px;
    }

    .organisation-heading p {
        font-size: 14px;
    }

    .organisation-team-row {
        row-gap: 22px;
    }

    .organisation-team-image-wrap {
        height: 280px;
    }
}





/*certificate page*/

/* =========================================
   CERTIFICATES
========================================= */

.certificates-section {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #f6f8fc;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.certificates-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.certificates-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.certificates-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.certificates-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 0;
    background: #e52323;
}

.certificates-row {
    row-gap: 30px;
}

.certificates-column {
    display: flex;
}

.certificate-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(20, 67, 154, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.certificate-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 30px rgba(20, 67, 154, 0.18);
}

.certificate-image-wrap {
    height: 260px;
    padding: 15px;
    overflow: hidden;
    background: #f7f9fd;
}

.certificate-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.certificate-card:hover .certificate-image {
    transform: scale(1.04);
}

.certificate-content {
    min-height: 80px;
    padding: 18px 16px;
    text-align: center;
}

.certificate-content h5 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .certificates-section {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .certificates-heading h3 {
        font-size: 26px;
    }

    .certificates-row {
        row-gap: 22px;
    }

    .certificate-image-wrap {
        height: 240px;
    }
}
/*certificate page*/


/* =========================================
   TERMS & CONDITIONS
========================================= */

.terms-section {
    padding-top: 30px;
    padding-bottom: 50px;
    background: #f6f8fc;
}

.terms-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.terms-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.terms-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.terms-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 0;
    background: #e52323;
}

.terms-content-box {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 45px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(20, 67, 154, 0.10);
}

.terms-intro {
    margin-bottom: 28px;
    padding: 20px 24px;
    background: #eef3ff;
    border-left: 4px solid #21479b;
    border-radius: 5px;
}

.terms-intro p {
    margin: 0;
    color: #455166;
    font-size: 15px;
    line-height: 1.75;
}

.terms-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #edf0f5;
}

.terms-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.terms-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    background: #21479b;
    border-radius: 50%;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.terms-text h4 {
    margin: 3px 0 8px;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
}

.terms-text p {
    margin: 0;
    color: #555f70;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 767px) {
    .terms-section {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .terms-heading h3 {
        font-size: 26px;
    }

    .terms-content-box {
        padding: 28px 20px;
    }

    .terms-item {
        gap: 14px;
    }

    .terms-number {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        font-size: 11px;
    }

    .terms-text h4 {
        margin-top: 0;
        font-size: 19px;
    }

    .terms-text p,
    .terms-intro p {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }
}


/* =========================================
   SOCIAL WORK
========================================= */

.social-work-section {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #f6f8fc;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.social-work-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.social-work-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.social-work-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.social-work-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 0;
    background: #e52323;
}

.social-work-row {
    row-gap: 30px;
}

.social-work-column {
    display: flex;
}

.social-work-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(20, 67, 154, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.social-work-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 30px rgba(20, 67, 154, 0.18);
}

.social-work-image-wrap {
    display: block;
    height: 230px;
    overflow: hidden;
    background: #e9edf5;
}

.social-work-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.social-work-card:hover .social-work-image {
    transform: scale(1.06);
}

.social-work-content {
    min-height: 125px;
    padding: 20px 18px;
    text-align: center;
}

.social-work-content h5 {
    margin: 0 0 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.social-work-content h5 a {
    color: #21479b;
    text-decoration: none;
}

.social-work-content h5 a:hover {
    color: #e52323;
}

.social-work-read-more {
    color: #e52323;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.social-work-read-more span {
    margin-left: 5px;
    transition: margin-left 0.25s ease;
}

.social-work-read-more:hover {
    color: #21479b;
    text-decoration: none;
}

.social-work-read-more:hover span {
    margin-left: 9px;
}

@media (max-width: 767px) {
    .social-work-section {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .social-work-heading h3 {
        font-size: 26px;
    }

    .social-work-row {
        row-gap: 22px;
    }

    .social-work-image-wrap {
        height: 220px;
    }
}

/* =========================================
   SOCIAL WORK DETAIL PAGE
========================================= */

.social-detail-section {
    padding-top: 30px;
    padding-bottom: 50px;
    background: #f6f8fc;
    overflow: hidden;
}

.social-detail-section *,
.social-detail-section *::before,
.social-detail-section *::after {
    box-sizing: border-box;
}

.social-detail-layout {
    display: flex;
    width: 100%;
    gap: 32px;
    align-items: flex-start;
}

/* Main Content Card */
.social-detail-content {
    flex: 1 1 0;
    min-width: 0;
    width: 0;
    max-width: 100%;
    padding: 40px 45px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(20, 67, 154, 0.10);
}

/* Title */
.social-detail-title-wrap {
    margin-bottom: 28px;
}

.social-detail-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.social-detail-title-wrap h1 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
}

.social-detail-title-line {
    display: block;
    width: 55px;
    height: 3px;
    margin-top: 14px;
    background: #e52323;
}

/* Main Description - overflow fix */
.social-detail-description {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    color: #4d5562;
    font-size: 15px;
    line-height: 1.85;
    text-align: justify;
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.social-detail-description p,
.social-detail-description div,
.social-detail-description span,
.social-detail-description li {
    max-width: 100%;
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.social-detail-description p {
    margin: 0 0 17px;
}

.social-detail-description p:last-child {
    margin-bottom: 0;
}

.social-detail-description img,
.social-detail-description iframe,
.social-detail-description table {
    max-width: 100% !important;
    height: auto;
}

.social-detail-description table {
    display: block;
    overflow-x: auto;
}

/* Sidebar */
.social-detail-sidebar {
    width: 308px;
    min-width: 308px;
    flex: 0 0 308px;
}

.social-sidebar-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(20, 67, 154, 0.10);
}

.social-sidebar-heading {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 20px;
    background: #21479b;
    color: #ffffff;
}

.social-sidebar-heading span {
    font-size: 19px;
}

.social-sidebar-heading h4 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
}

.social-sidebar-links {
    padding: 10px;
}

.social-sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 58px;
    margin: 0 0 7px;
    padding: 13px 12px;
    background: #f7f9fd;
    border-left: 3px solid transparent;
    border-radius: 4px;
    color: #4d5562;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    transition: 0.25s ease;
}

.social-sidebar-links a:last-child {
    margin-bottom: 0;
}

.social-sidebar-links a span {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
}

.social-sidebar-links a i {
    flex: 0 0 auto;
    color: #e52323;
    font-size: 17px;
}

.social-sidebar-links a:hover,
.social-sidebar-links a.active {
    background: #eef3ff;
    border-left-color: #21479b;
    color: #21479b;
}

/* Tablet */
@media (max-width: 991px) {
    .social-detail-layout {
        flex-direction: column;
        gap: 25px;
    }

    .social-detail-content,
    .social-detail-sidebar {
        width: 100%;
        min-width: 0;
        flex: 0 0 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .social-detail-section {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .social-detail-content {
        padding: 28px 20px;
    }

    .social-detail-title-wrap h1 {
        font-size: 26px;
    }

    .social-detail-description {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }

    .social-sidebar-heading h4 {
        font-size: 20px;
    }
}

/* =========================================
   CHAPTERS
========================================= */

.chapters-section {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #f6f8fc;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.chapters-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.chapters-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.chapters-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.chapters-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 0;
    background: #e52323;
}

.chapters-row {
    row-gap: 30px;
}

.chapters-column {
    display: flex;
}

.chapter-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(20, 67, 154, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.chapter-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 30px rgba(20, 67, 154, 0.18);
}

/* Image area */
.chapter-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    padding: 15px;
    overflow: hidden;
    background: #f7f9fd;
}

.chapter-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain; /* shows full image without cropping */
    object-position: center;
    transition: transform 0.35s ease;
}

.chapter-card:hover .chapter-image {
    transform: scale(1.04);
}

/* Content area */
.chapter-content {
    min-height: auto; /* removes bottom empty space */
    padding: 18px 20px 20px;
    text-align: center;
}

.chapter-content h5 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
}

.chapter-content h5 a {
    color: #21479b;
    text-decoration: none;
}

.chapter-content h5 a:hover {
    color: #e52323;
}

.chapter-content p {
    margin: 0 0 16px;
    color: #5a6474;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

.chapter-read-more {
    display: inline-block;
    color: #e52323;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.chapter-read-more span {
    margin-left: 5px;
    transition: margin-left 0.25s ease;
}

.chapter-read-more:hover {
    color: #21479b;
    text-decoration: none;
}

.chapter-read-more:hover span {
    margin-left: 9px;
}

@media (max-width: 767px) {
    .chapters-section {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .chapters-heading h3 {
        font-size: 26px;
    }

    .chapters-row {
        row-gap: 22px;
    }

    .chapter-image-wrap {
        height: 220px;
    }
}


/* =========================================
   PRESS RELEASE LISTING
========================================= */

.press-release-section {
    padding-top: 30px;
    padding-bottom: 50px;
    background: #f6f8fc;
}

.press-release-section *,
.press-release-section *::before,
.press-release-section *::after {
    box-sizing: border-box;
}

.press-release-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.press-release-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.press-release-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.press-release-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 0;
    background: #e52323;
}

.press-release-layout {
    align-items: flex-start;
}

.press-release-row {
    row-gap: 30px;
}

.press-release-column {
    display: flex;
}

.press-release-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(20, 67, 154, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.press-release-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 30px rgba(20, 67, 154, 0.18);
}

.press-release-image-wrap {
    display: block;
    height: 210px;
    overflow: hidden;
    background: #eef1f6;
}

.press-release-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.press-release-card:hover .press-release-image {
    transform: scale(1.06);
}

.press-release-content {
    padding: 20px;
}

.press-release-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #e52323;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.press-release-content h4 {
    margin: 0 0 17px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.press-release-content h4 a {
    color: #21479b;
    text-decoration: none;
}

.press-release-content h4 a:hover {
    color: #e52323;
}

.press-release-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    margin-bottom: 18px;
    color: #737d8e;
    font-size: 12px;
}

.press-release-meta i {
    margin-right: 4px;
    color: #e52323;
}

.press-release-read-more {
    display: inline-block;
    color: #e52323;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.press-release-read-more i {
    margin-left: 5px;
    transition: margin-left 0.25s ease;
}

.press-release-read-more:hover {
    color: #21479b;
    text-decoration: none;
}

.press-release-read-more:hover i {
    margin-left: 9px;
}

.press-release-empty {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    color: #5a6474;
    text-align: center;
}

.press-release-pagination {
    margin-top: 35px;
}

/* Sidebar */
.press-release-sidebar {
    padding-left: 30px;
}

.press-sidebar-card {
    margin-bottom: 25px;
    padding: 22px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(20, 67, 154, 0.10);
}

.press-sidebar-card:last-child {
    margin-bottom: 0;
}

.press-sidebar-card h5 {
    margin: 0 0 16px;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 600;
}

.press-sidebar-card h5 i {
    margin-right: 7px;
    color: #e52323;
}

.press-search-form {
    display: flex;
}

.press-search-form input {
    height: 44px;
    border: 1px solid #dfe4ed;
    border-radius: 5px 0 0 5px;
    box-shadow: none;
    font-size: 13px;
}

.press-search-form button {
    width: 46px;
    height: 44px;
    border: 0;
    border-radius: 0 5px 5px 0;
    background: #21479b;
    color: #ffffff;
    cursor: pointer;
}

.press-search-form button:hover {
    background: #e52323;
}

.press-sidebar-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}

.press-sidebar-title i {
    color: #e52323;
    font-size: 18px;
}

.press-sidebar-title h5 {
    margin: 0;
}

.press-recent-list {
    display: block;
}

.press-recent-item {
    display: block;
    margin-bottom: 10px;
    padding: 13px 12px;
    background: #f7f9fd;
    border-left: 3px solid transparent;
    border-radius: 4px;
    color: #21479b;
    text-decoration: none;
    transition: 0.25s ease;
}

.press-recent-item:last-child {
    margin-bottom: 0;
}

.press-recent-item:hover {
    background: #eef3ff;
    border-left-color: #21479b;
    color: #e52323;
    text-decoration: none;
}

.press-recent-text {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.press-recent-item small {
    color: #7b8493;
    font-size: 11px;
}

.press-recent-item small i {
    margin-right: 4px;
    color: #e52323;
}

.press-recent-empty {
    margin: 0;
    color: #6a7483;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 991px) {
    .press-release-sidebar {
        margin-top: 35px;
        padding-left: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .press-release-section {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .press-release-heading h3 {
        font-size: 26px;
    }

    .press-release-row {
        row-gap: 22px;
    }

    .press-release-image-wrap {
        height: 220px;
    }

    .press-release-sidebar {
        padding-left: 15px;
    }

    .press-sidebar-card {
        padding: 20px;
    }
}


/* =========================================
   PRESS RELEASE DETAIL PAGE
========================================= */

.press-detail-section {
    padding-top: 120px;
    padding-bottom: 50px;
    background: #f6f8fc;
}

.press-detail-section *,
.press-detail-section *::before,
.press-detail-section *::after {
    box-sizing: border-box;
}

.press-detail-layout {
    align-items: flex-start;
}

/* Main Card */
.press-detail-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(20, 67, 154, 0.10);
}

.press-detail-header {
    padding: 38px 42px 25px;
}

.press-detail-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.press-detail-header h1 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 33px;
    font-weight: 600;
    line-height: 1.35;
}

.press-detail-title-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 17px 0 20px;
    background: #e52323;
}

.press-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: #747e8d;
    font-size: 13px;
}

.press-detail-meta i {
    margin-right: 5px;
    color: #e52323;
}

.press-detail-image-wrap {
    width: 100%;
    height: 420px;
    max-height: none;
    overflow: hidden;
    background: #eef1f6;
}

.press-detail-image {
    width: 100%;
    height: 100%;
    max-height: none;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Content */
.press-detail-content {
    padding: 32px 42px 35px;
    color: #4d5562;
    font-size: 15px;
    line-height: 1.9;
    text-align: justify;
    white-space: normal !important;
    overflow-wrap: break-word;
}

.press-detail-content p {
    margin: 0 0 17px;
}

.press-detail-content p:last-child {
    margin-bottom: 0;
}

.press-detail-content img,
.press-detail-content iframe,
.press-detail-content table {
    max-width: 100% !important;
}

.press-detail-content img {
    height: auto;
    margin: 15px 0;
}

.press-detail-content table {
    display: block;
    overflow-x: auto;
}

/* Share */
.press-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 42px;
    border-top: 1px solid #edf0f5;
    color: #596476;
    font-size: 13px;
    font-weight: 600;
}

.press-detail-share {
    display: flex;
    gap: 8px;
}

.press-detail-share a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #21479b;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.25s ease;
}

.press-detail-share a:hover {
    background: #e52323;
    color: #ffffff;
}

/* Sidebar */
.press-detail-sidebar {
    padding-left: 30px;
}

.press-detail-sidebar .press-sidebar-card {
    margin-bottom: 25px;
}

.press-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 17px;
    background: #21479b;
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.press-back-button:hover {
    background: #e52323;
    color: #ffffff;
    text-decoration: none;
}

/* Tablet */
@media (max-width: 991px) {
    .press-detail-sidebar {
        margin-top: 30px;
        padding-left: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .press-detail-section {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .press-detail-header {
        padding: 28px 20px 20px;
    }

    .press-detail-header h1 {
        font-size: 26px;
    }

    .press-detail-content {
        padding: 25px 20px 28px;
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }

    .press-detail-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }

    .press-detail-sidebar {
        padding-left: 15px;
    }
}

/* =========================================
   PHOTO AND VIDEO GALLERY
========================================= */

.gallery-section {
    padding-top: 30px;
    padding-bottom: 50px;
    background: #f6f8fc;
}

.gallery-video-section {
    background: #ffffff;
}

.gallery-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.gallery-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gallery-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.gallery-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 0;
    background: #e52323;
}

.gallery-row {
    row-gap: 28px;
}

.gallery-column {
    display: flex;
}

.gallery-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(20, 67, 154, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(20, 67, 154, 0.18);
}

.gallery-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 10px;
    overflow: hidden;
    background: #f3f5f9;
}

.gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 71, 155, 0.72);
    color: #ffffff;
    font-size: 25px;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-card:hover .gallery-image-overlay {
    opacity: 1;
}

.gallery-info {
    padding: 17px 16px 19px;
    text-align: center;
}

.gallery-info h5 {
    margin: 0 0 7px;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

.gallery-info span {
    color: #6e7786;
    font-size: 13px;
}

.gallery-info span i {
    margin-right: 4px;
    color: #e52323;
}

/* Video */
.gallery-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #111111;
}

.gallery-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-empty {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    color: #5d6675;
    text-align: center;
}

@media (max-width: 767px) {
    .gallery-section {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .gallery-heading h3 {
        font-size: 26px;
    }

    .gallery-row {
        row-gap: 22px;
    }

    .gallery-image-wrap {
        height: 230px;
    }
}

/* =========================================
   PARTNERS AND SPONSORS
========================================= */

.partners-section,
.sponsors-section {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #f6f8fc;
}

.sponsors-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.partners-heading,
.sponsors-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.partners-small-title,
.sponsors-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.partners-heading h3,
.sponsors-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.partners-heading-line,
.sponsors-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 0;
    background: #e52323;
}

.partners-row,
.sponsors-row {
    row-gap: 30px;
}

.partners-column,
.sponsors-column {
    display: flex;
}

/* Partner card */
.partner-card,
.sponsor-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(20, 67, 154, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.partner-card:hover,
.sponsor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(20, 67, 154, 0.18);
}

.partner-image-wrap {
    height: 190px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f9fd;
}

.partner-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.partner-content {
    padding: 16px;
    text-align: center;
}

.partner-content h5 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* Sponsor card */
.sponsor-image-wrap {
    height: 230px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f9fd;
}

.sponsor-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.sponsor-content {
    padding: 18px 20px 20px;
    text-align: center;
}

.sponsor-content p {
    margin: 0 0 12px;
    color: #5a6474;
    font-size: 14px;
    line-height: 1.7;
}

.sponsor-content h5 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .partners-section,
    .sponsors-section {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .partners-heading h3,
    .sponsors-heading h3 {
        font-size: 26px;
    }

    .partners-row,
    .sponsors-row {
        row-gap: 22px;
    }

    .partner-image-wrap {
        height: 180px;
    }

    .sponsor-image-wrap {
        height: 220px;
    }
}

/* =========================================
   AWARDS & ACHIEVEMENTS
========================================= */

.awards-section {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #f6f8fc;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.awards-heading {
    max-width: 780px;
    margin-bottom: 38px;
}

.awards-small-title {
    display: block;
    margin-bottom: 8px;
    color: #e52323;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.awards-heading h3 {
    margin: 0;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
}

.awards-heading p {
    margin: 13px 0 0;
    color: #5a6474;
    font-size: 14px;
    line-height: 1.7;
}

.awards-heading-line {
    display: block;
    width: 55px;
    height: 3px;
    margin: 14px auto 0;
    background: #e52323;
}

.awards-row {
    row-gap: 30px;
}

.awards-column {
    display: flex;
}

.award-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(20, 67, 154, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(20, 67, 154, 0.18);
}

.award-image-wrap {
    height: 255px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f9fd;
}

.award-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.award-content {
    padding: 20px;
    text-align: center;
}

.award-content h4 {
    margin: 0 0 10px;
    color: #21479b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
}

.award-description {
    color: #5a6474;
    font-size: 14px;
    line-height: 1.7;
}

.award-description p {
    margin: 0 0 10px;
}

.award-description p:last-child {
    margin-bottom: 0;
}

.awards-empty {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    color: #5a6474;
    text-align: center;
}

@media (max-width: 767px) {
    .awards-section {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .awards-heading h3 {
        font-size: 26px;
    }

    .awards-row {
        row-gap: 22px;
    }

    .award-image-wrap {
        height: 230px;
    }
}