﻿.about-section {
    width: 100%;
    padding: 60px 0;
}

.about-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 0.95fr;
    gap: 80px;
    align-items: center;
}

/* LEFT */

.about-left {
    position: relative;
}

.title-wrap {
    display: flex;
    align-items:center;
    margin-bottom: 40px;
}

.title-line {
    width: 120px;
    height: 3px;
    background: #2C2383;
    margin-right: 8px;
}

.about-title {
    font-size: 38px;
    font-weight: 800;
    color: #2C2383;
    line-height: 1;
    text-align:left
}

.logoabout {
    text-align: center;
    margin-bottom: 35px;
}

    .logoabout img {
        width: 160px;
        max-width: 100%;
    }

.intro {
    color: #2585F5;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: 30px;
}

.desc {
    color: #2585F5;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

/* RIGHT */

.about-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

/* Tablet */

@media(max-width:992px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-title {
        font-size: 42px;
    }
}

/* Mobile */

@media(max-width:600px) {

    .title-line {
        width: 60px;
    }

    .about-title {
        font-size: 34px;
    }

    .intro,
    .desc {
        font-size: 16px;
    }
}

.roles-section {
    position: relative;
    padding: 80px 0 140px;
    overflow: hidden;
}

/* Blue Background */
.blue-bg {
    position: absolute;
    left: 38%;
    right: 0;
    bottom: 0;
    height: 250px;
    background: #2E5DAA;
    border-radius: 8px 0 0 8px;
    z-index: 1;
}

/* White Card */
.roles-card {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 1250px;
    margin: auto;
    background: #f1f1f1;
    border-radius: 10px;
    padding: 45px 50px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

h1 {
    text-align: center;
    color: #2D257D;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 45px;
}

.roles-wrapper {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 35px;
}

.divider {
    background: #E8E8E8;
}

.column-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

.green {
    color: #27AE60;
}

.red {
    color: #E53935;
}

.column-title span {
    font-size: 28px;
}

.item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
}

    .item img {
        width: 180px;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .item p {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
    }

@media(max-width:991px) {

    h1 {
        font-size: 32px;
    }

    .roles-wrapper {
        grid-template-columns: 1fr;
    }

    .divider {
        display: none;
    }

    .item {
        flex-direction: column;
    }

        .item img {
            width: 100%;
            height: auto;
        }

    .roles-card {
        padding: 30px;
    }

    .blue-bg {
        left: 10%;
        height: 120px;
    }
}


.title {
    display: flex;
    align-items: center;
    color: #2b237f
}

    .title:before {
        content: "";
        width: 90px;
        height: 3px;
        background: #2b237f;
        margin-right: 15px
    }

h1 {
    font-size: 38px;
    line-height: 1;
    margin: 0 0 30px
}

p {
    color: #2d86e7;
    font-size: 15px
}

.stats {
    display: flex;
    gap: 60px;
    margin: 30px 0
}

.stat .num {
    font-size: 82px;
    font-weight: 700;
    color: #2d86e7;
    line-height: 1
}

.stat .label {
    font-size: 22px;
    color: #2d86e7
}

.cards {
    display: flex;
    gap: 30px;
    margin-top: 20px
}

.namecard {
    width: 160px;
    text-align: center
}

    .namecard img {
        width: 150px;
        height: 150px;
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0,0,0,.15)
    }

    .namecard .name {
        margin-top: 10px;
        color: #2d86e7;
        font-size: 15px
    }

button {
    margin-top: 25px;
    background: #FDB52A;
    border: none;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer
}

.logos {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    align-content: start
}

.logo {
 
  
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    align-items: center;
    justify-content: center
}

.modal2 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    align-items: center;
    justify-content: center
}

.modal-content {
    background: #fff;
    width: min(1000px,90%);
    border-radius: 12px;
    padding: 25px;
    position: relative
}

.close {
    position: absolute;
    right: 18px;
    top: 10px;
    font-size: 28px;
    cursor: pointer
}

@media(max-width:900px) {
    .container {
        grid-template-columns: 1fr
    }

    .logos {
        grid-template-columns: repeat(2,1fr)
    }

    h1 {
        font-size: 42px
    }
}

.initiative-section {
    padding: 70px 20px 60px;
    text-align: center;
}

.initiative-container {
    max-width: 1100px;
    margin: auto;
}

.initiative-title {
    font-size: 38px;
    font-weight: 800;
    color: #2A2285;
    line-height: 1.1;
    text-transform: uppercase;
}

.title-divider {
    width: 140px;
    height: 3px;
    background: #2A2285;
    margin: 35px auto;
    border-radius: 10px;
}

.initiative-text {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    line-height: 1.6;
    color: #2D86E7;
    font-weight: 400;
}

/* Tablet */

@media (max-width:992px) {

    .initiative-title {
        font-size: 48px;
    }

    .initiative-text {
        font-size: 20px;
    }
}

/* Mobile */

@media (max-width:768px) {

    .initiative-section {
        padding: 50px 20px;
    }

    .initiative-title {
        font-size: 34px;
    }

    .title-divider {
        width: 90px;
        margin: 25px auto;
    }

    .initiative-text {
        font-size: 17px;
    }
}


#accordion1,
a:hover {
    color: #2C90C7;
}

#accordion1 {
    background-color: white !important;
    width: 1140px;
}

.card-header {
    background-color: #f8f8f8;
    padding: 15px;
    /* Rounded corners for the top */
}

.card-body {
    background-color: white;
    /* Rounded corners for the bottom */
    padding: 15px;
}

.box {
    padding: 25px;
    background-color: #2C90C7;
    flex: 1;
    color: black;
}

.card-body.d-flex {
    display: flex;
    gap: 10px;
    /* Space between boxes */
    flex-wrap: wrap;
    /* Optional: Wrap boxes if the content overflows */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    /* Start with opacity 0 */
    animation: fadeInUp 1s ease-out forwards;
    /* Apply animation */
}

/* Add a delay for each box */
.box:nth-child(1) {
    animation-delay: 0.3s;
}

.box:nth-child(2) {
    animation-delay: 0.6s;
}

.box:nth-child(3) {
    animation-delay: 0.9s;
}

.accordion-toggle {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    /* Add space for the icon */
    text-decoration: none;
    color: #1e8be6;
}

    .accordion-toggle::before {
        content: '\25B6';
        /* Unicode for right arrow */
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease-in-out;
    }

    .accordion-toggle[aria-expanded="true"]::before {
        transform: translateY(-50%) rotate(90deg);
        /* Rotate arrow when open */
    }

    /* Optional: If you want a plus symbol instead of an arrow */
    .accordion-toggle::before {
        content: '\002B';
        /* Unicode for plus symbol */
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease-in-out;
    }

    .accordion-toggle[aria-expanded="true"]::before {
        content: '\2212';
        /* Unicode for minus symbol */
        transform: translateY(-50%);
    }

.hppsc-pr-section {
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.hppsc-pr-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

/* Left Image */

.hppsc-pr-image {
    width: 50%;
}

    .hppsc-pr-image img {
        width: 100%;
        display: block;
        border-radius: 18px;
    }

/* Right Content */

.hppsc-pr-content {
    width: 50%;
}

.hppsc-pr-title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.hppsc-pr-title {
    margin: 0;
    white-space: nowrap;
    color: #2A2285;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.hppsc-pr-title-line {
    flex: 1;
    height: 3px;
    background: #2A2285;
    margin-left: 20px;
}

/* Date */

.hppsc-pr-date {
    color: #2D86E7;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* News */

.hppsc-pr-link {
    display: block;
    color: #2D86E7;
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
    transition: .3s;
}

    .hppsc-pr-link:hover {
        color: #1C63C8;
    }

/* Divider */

.hppsc-pr-divider {
    margin: 35px 0;
    height: 2px;
    background: #2D86E7;
}

/* Responsive */

@media(max-width:992px) {

    .hppsc-pr-container {
        flex-direction: column;
    }

    .hppsc-pr-image,
    .hppsc-pr-content {
        width: 100%;
    }

    .hppsc-pr-title {
        font-size: 42px;
    }

    .hppsc-pr-link {
        font-size: 18px;
    }
}

@media(max-width:576px) {

    .hppsc-pr-section {
        padding: 50px 0;
    }

    .hppsc-pr-title {
        font-size: 32px;
    }

    .hppsc-pr-title-line {
        margin-left: 12px;
    }

    .hppsc-pr-date {
        font-size: 18px;
    }

    .hppsc-pr-link {
        font-size: 16px;
    }
}

.meeting-section {
    max-width: 100%;
    margin: auto;
    padding: 60px 20px;
    background-color:#f1f1f1;
}

    .meeting-section h1 {
        text-align: center;
        font-size: 38px;
        color: #25177d;
        font-weight: bold;
        letter-spacing: 2px;
    }

.title-line-meeting {
    width: 120px;
    height: 4px;
    background: #3d2ba8;
    margin: 18px auto 50px;
}

.meeting-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.meeting-card {
    width: 350px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
    transition: .3s;
}

    .meeting-card:hover {
        transform: translateY(-8px);
    }

    .meeting-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

.card-content {
    text-align: center;
    padding: 18px;
}

    .card-content h3 {
        color: #2080ff;
        font-size: 17px;
        margin-bottom: 6px;
    }

    .card-content p {
        color: #2080ff;
        font-size: 15px;
    }

    .card-content sup {
        font-size: 14px;
    }


/* Popup */

.gallery-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.gallery-box {
    width: 90%;
    max-width: 1100px;
    position: relative;
    color: #fff;
}

.close {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 40px;
    cursor: pointer;
}

.gallery-title {
    text-align: center;
    margin-bottom: 15px;
}

    .gallery-title h2 {
        font-size: 30px;
    }

    .gallery-title p {
        color: #ddd;
    }

.image-wrapper {
    position: relative;
}

    .image-wrapper img {
        width: 100%;
        max-height: 70vh;
        object-fit: contain;
        border-radius: 10px;
        background: #111;
    }

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.prev {
    left: -60px;
}

.next {
    right: -60px;
}

.counter {
    text-align: center;
    margin: 12px 0;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    overflow-x: auto;
    padding-top: 10px;
}

    .thumbnail-row img {
        width: 95px;
        height: 70px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        opacity: .5;
        border: 3px solid transparent;
    }

        .thumbnail-row img.active {
            opacity: 1;
            border-color: #2b7cff;
        }

@media(max-width:900px) {

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    .gallery-box {
        width: 95%;
    }
}

.contact-org-section {
    padding: 70px 20px;
    background-color:#f1f1f1
}

.contact-org-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.contact-org-title {
    font-size: 32px;
    color: #2583e8;
    font-weight: 700;
    margin-bottom: 60px;
}

.contact-org-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-org-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

    .contact-org-item:hover {
        transform: scale(1.05);
    }

    .contact-org-item img {
        max-width: 100%;
        max-height: 90px;
        object-fit: contain;
        filter: grayscale(0);
    }

/* Mobile */

@media(max-width:768px) {

    .contact-org-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .contact-org-list {
        justify-content: center;
        gap: 40px;
    }

    .contact-org-item {
        flex: 0 0 40%;
    }

        .contact-org-item img {
            max-height: 70px;
        }
}