
/* ==========================================
   HERO CAROUSEL
=========================================== */

.hero-carousel {
    width: 100%;
    overflow: hidden;
    background: #000;
}


/*
 * IMPORTANT:
 * Do NOT use fixed height.
 * Do NOT use object-fit: cover.
 *
 * The natural image ratio is retained so
 * nothing is cropped on mobile.
 */

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


/* ==========================================
   HERO CAPTION
=========================================== */

.hero-caption {
    bottom: 12%;
    left: 8%;
    right: 8%;

    text-align: left;

    text-shadow:
        0 2px 5px rgba(0,0,0,0.8);
}

.hero-caption h1 {
    font-size: clamp(24px, 4vw, 52px);
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-caption p {
    font-size: clamp(14px, 2vw, 22px);
    margin-bottom: 18px;
}


/* ==========================================
   HERO BUTTON
=========================================== */

.hero-button {
    background: #7b2d00;
    border-color: #7b2d00;
    padding: 9px 22px;
    font-weight: 600;
}

.hero-button:hover {
    background: #d88900;
    border-color: #d88900;
}


/* ==========================================
   INDICATORS
=========================================== */

.hero-carousel .carousel-indicators {
    margin-bottom: 15px;
}

.hero-carousel .carousel-indicators button {
    width: 30px;
    height: 4px;
    margin: 0 4px;
}


/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 767.98px) {

    .hero-caption {
        bottom: 8%;
        left: 6%;
        right: 6%;
    }

    .hero-caption h1 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .hero-caption p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .hero-button {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-carousel .carousel-indicators {
        margin-bottom: 7px;
    }

    .hero-carousel .carousel-indicators button {
        width: 20px;
        height: 3px;
    }

}


/* ==========================================
   VERY SMALL MOBILE
=========================================== */

@media (max-width: 400px) {

    .hero-caption h1 {
        font-size: 17px;
    }

    .hero-caption p {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .hero-button {
        font-size: 10px;
        padding: 5px 11px;
    }

}
/* Main Section */
/* ==========================================
   TRUST INTRO SECTION
=========================================== */

.trust-intro-section {
    padding: 25px 0;
    background: #fffaf3;
}


/* ==========================================
   COMMON SECTION LABEL
=========================================== */

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #b66a00;
    margin-bottom: 6px;
}


/* ==========================================
   TRUST OBJECTIVE CARD
=========================================== */

.trust-objective-card {
    background: #ffffff;
    border: 1px solid #ead9c7;
    border-radius: 12px;
    padding: 30px;

    box-shadow: 0 4px 18px rgba(80,40,10,0.07);
}


/* ==========================================
   PRESIDENT
=========================================== */

.president-photo-wrapper {
    width: 170px;
    height: 170px;
    margin: 0 auto 15px;

    border-radius: 50%;
    overflow: hidden;

    border: 5px solid #f1dfc8;
    background: #f8eee3;
}

.president-photo {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.president-name {
    color: #4d1b00;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.president-designation {
    color: #8b6b52;
    font-size: 13px;
}


/* ==========================================
   OBJECTIVE
=========================================== */

.objective-title {
    color: #4d1b00;
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 8px;
}

.objective-line {
    width: 45px;
    height: 3px;
    background: #d88900;
    border-radius: 3px;
    margin-bottom: 18px;
}

.objective-text {
    color: #665344;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 5px;

    color: #7b2d00;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.read-more-link:hover {
    color: #d88900;
}

.read-more-link i {
    transition: transform 0.2s ease;
}

.read-more-link:hover i {
    transform: translateX(4px);
}


/* ==========================================
   ANNOUNCEMENTS CARD
=========================================== */

.announcements-card {
    background: #ffffff;
    border: 1px solid #ead9c7;
    border-radius: 12px;

    box-shadow: 0 4px 18px rgba(80,40,10,0.07);

    overflow: hidden;

    display: flex;
    flex-direction: column;
}


/* ==========================================
   ANNOUNCEMENT HEADER
=========================================== */

.announcements-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 24px 25px 18px;

    border-bottom: 1px solid #f0e4d7;
}

.announcements-title {
    color: #4d1b00;
    font-size: 25px;
    font-weight: 700;
    margin: 0;
}

.announcement-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0d9;
    color: #b66a00;

    font-size: 19px;
}


/* ==========================================
   ANNOUNCEMENT SCROLL WINDOW
=========================================== */

.announcement-window {
    height: 390px;
    overflow: hidden;

    position: relative;
}


/* ==========================================
   VERTICAL SCROLLING
=========================================== */

.announcement-scroller {
    animation: announcementScroll 28s linear infinite;
}


/*
 * Pause when mouse is over the
 * announcement area.
 */

.announcement-window:hover .announcement-scroller {
    animation-play-state: paused;
}


/*
 * Move upward by approximately half
 * because the announcements are duplicated.
 */

@keyframes announcementScroll {

    0% {
        transform: translateY(0);
    }

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

}


/* ==========================================
   ANNOUNCEMENT ITEM
=========================================== */

.announcement-item {
    display: flex;
    gap: 14px;

    padding: 18px 22px;

    color: inherit;
    text-decoration: none;

    border-bottom: 1px solid #f0e4d7;

    transition: background 0.2s ease;
}

.announcement-item:hover {
    background: #fff9f0;
}


/* ==========================================
   DATE BOX
=========================================== */

.announcement-date {
    width: 52px;
    min-width: 52px;
    height: 58px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #7b2d00;
    color: #ffffff;

    border-radius: 6px;
}

.date-day {
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 10px;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.5px;
}


/* ==========================================
   ANNOUNCEMENT CONTENT
=========================================== */

.announcement-content {
    min-width: 0;
}

.announcement-content h5 {
    color: #4d1b00;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.announcement-content p {
    color: #766353;
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 5px;
}

.announcement-read {
    color: #b66a00;
    font-size: 11px;
    font-weight: 700;
}

/* ==========================================
   ANNOUNCEMENT FOOTER
=========================================== */

.announcements-footer {
    margin-top: auto;

    padding: 14px 22px;

    border-top: 1px solid #f0e4d7;

    text-align: right;
}

.announcements-footer a {
    color: #7b2d00;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
}

.announcements-footer a:hover {
    color: #d88900;
}


/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 991.98px) {

    .trust-intro-section {
        padding: 45px 0;
    }

    /*
     * Announcements already appear first because:
     *
     * announcement = order-1
     * objective    = order-2
     */

    .announcement-window {
        height: 350px;
    }

}


@media (max-width: 767.98px) {

    .trust-objective-card {
        padding: 22px;
    }

    .president-photo-wrapper {
        width: 145px;
        height: 145px;
    }

    .objective-title {
        font-size: 23px;
    }

    .objective-text {
        font-size: 13px;
    }

    .announcements-header {
        padding: 20px;
    }

    .announcements-title {
        font-size: 22px;
    }

    .announcement-window {
        height: 330px;
    }

    .announcement-item {
        padding: 16px;
    }

}


@media (max-width: 575.98px) {

    .trust-intro-section {
        padding: 35px 0;
    }

    .trust-objective-card {
        padding: 20px 16px;
    }

    .announcement-window {
        height: 320px;
    }

    .announcement-item {
        gap: 10px;
    }

    .announcement-date {
        width: 48px;
        min-width: 48px;
        height: 54px;
    }

}


/* ==========================================
   SIGNATURE PROJECT SECTION
=========================================== */

.signature-project-section {
    padding: 70px 0;
    background: #ffffff;
}


/* ==========================================
   SECTION HEADING
=========================================== */

.signature-project-heading {
    color: #4d1b00;
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 8px;
}

.signature-heading-line {
    width: 55px;
    height: 3px;
    background: #d88900;
    border-radius: 3px;
    margin: 0 auto;
}


/* ==========================================
   PROJECT DESCRIPTION
=========================================== */

.signature-project-content {
    padding: 10px 15px 10px 0;
}

.signature-project-content h3 {
    color: #4d1b00;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 17px;
}

.signature-project-content > p {
    color: #665344;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 13px;
}


/* ==========================================
   SPONSOR BOX
=========================================== */

.project-sponsor-box {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 25px;
    padding: 18px;

    border: 1px solid #e5c89e;
    border-left: 4px solid #d88900;

    border-radius: 8px;

    background: #fff8ec;

    color: inherit;
    text-decoration: none;

    transition: all 0.2s ease;
}

.project-sponsor-box:hover {
    background: #fff1d8;
    border-left-color: #7b2d00;
    transform: translateX(3px);
}

.sponsor-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #7b2d00;
    color: #ffffff;

    font-size: 20px;
}

.sponsor-label {
    color: #b66a00;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 2px;
}

.sponsor-content h4 {
    color: #4d1b00;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

.sponsor-content p {
    color: #766353;
    font-size: 12px;
    margin-bottom: 4px;
    line-height: 1.5;
}

.sponsor-link {
    color: #7b2d00;
    font-size: 12px;
    font-weight: 700;
}

.sponsor-link i {
    margin-left: 3px;
    transition: transform 0.2s ease;
}

.project-sponsor-box:hover .sponsor-link i {
    transform: translateX(4px);
}


/* ==========================================
   PROJECT GALLERY
=========================================== */

.project-gallery {
    width: 100%;
}

.project-gallery-frame {
    position: relative;

    width: 100%;
    height: 450px;

    background: #f8f3ec;

    border: 1px solid #e7d7c5;
    border-radius: 10px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================
   MAIN PROJECT IMAGE
=========================================== */

.project-main-image-container {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    position: relative;
}

.project-main-image {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    padding: 10px;

    transition: transform 0.25s ease;
}

.project-main-image-container:hover .project-main-image {
    transform: scale(1.015);
}


/* ==========================================
   VIEW GALLERY OVERLAY
=========================================== */

.gallery-view-overlay {
    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 8px 14px;

    background: rgba(0,0,0,0.65);
    color: #ffffff;

    border-radius: 5px;

    font-size: 12px;

    opacity: 0;

    transition: opacity 0.2s ease;
}

.project-main-image-container:hover .gallery-view-overlay {
    opacity: 1;
}


/* ==========================================
   LEFT / RIGHT ARROWS
=========================================== */

.project-gallery-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 5;

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    background: rgba(63,27,11,0.82);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    cursor: pointer;

    transition: all 0.2s ease;
}

.project-gallery-arrow:hover {
    background: #d88900;
    transform: translateY(-50%) scale(1.05);
}

.project-prev {
    left: 15px;
}

.project-next {
    right: 15px;
}


/* ==========================================
   IMAGE COUNTER
=========================================== */

.project-gallery-counter {
    text-align: center;

    margin-top: 10px;

    color: #766353;

    font-size: 13px;
    font-weight: 600;
}


/* ==========================================
   MODAL
=========================================== */

.project-modal-content {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.project-modal-content .modal-header {
    border-bottom: 1px solid #ead9c7;
}

.project-modal-content .modal-title {
    color: #4d1b00;
    font-weight: 700;
}

.project-modal-content .modal-body {
    padding: 0;
}


/* ==========================================
   MODAL IMAGE
=========================================== */

.modal-gallery-container {
    position: relative;

    width: 100%;
    height: 75vh;

    min-height: 400px;

    background: #111111;

    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-project-image {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 20px;
}


/* ==========================================
   MODAL ARROWS
=========================================== */

.modal-gallery-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 5;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.85);
    color: #4d1b00;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;

    cursor: pointer;

    transition: all 0.2s ease;
}

.modal-gallery-arrow:hover {
    background: #d88900;
    color: #ffffff;
}

.modal-project-prev {
    left: 20px;
}

.modal-project-next {
    right: 20px;
}


/* ==========================================
   MODAL COUNTER
=========================================== */

.modal-gallery-counter {
    position: absolute;

    bottom: 15px;
    left: 50%;

    transform: translateX(-50%);

    padding: 6px 13px;

    background: rgba(0,0,0,0.65);
    color: #ffffff;

    border-radius: 4px;

    font-size: 12px;
}


/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 991.98px) {

    .signature-project-section {
        padding: 55px 0;
    }

    .signature-project-content {
        padding-right: 0;
    }

    .project-gallery-frame {
        height: 400px;
    }

}


@media (max-width: 767.98px) {

    .signature-project-heading {
        font-size: 25px;
    }

    .signature-project-content h3 {
        font-size: 22px;
    }

    .project-gallery-frame {
        height: 330px;
    }

    .project-gallery-arrow {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .project-prev {
        left: 10px;
    }

    .project-next {
        right: 10px;
    }

    .gallery-view-overlay {
        opacity: 1;
        bottom: 12px;
        font-size: 10px;
        padding: 6px 10px;
    }

    .modal-gallery-container {
        height: 65vh;
        min-height: 300px;
    }

    .modal-gallery-arrow {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .modal-project-prev {
        left: 10px;
    }

    .modal-project-next {
        right: 10px;
    }

}


@media (max-width: 575.98px) {

    .signature-project-section {
        padding: 40px 0;
    }

    .project-sponsor-box {
        padding: 15px;
        gap: 12px;
    }

    .sponsor-icon {
        width: 44px;
        min-width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .project-gallery-frame {
        height: 270px;
    }

    .modal-gallery-container {
        height: 55vh;
        min-height: 250px;
    }

}
/* Site Name */
.signature-project-heading {
    color: #4d1b00;
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Desktop - one line */
.signature-project-heading span {
    display: inline;
}

.signature-project-heading span + span::before {
    content: " ";
}


/* Mobile - two lines */
@media (max-width: 767.98px) {

    .signature-project-heading span {
        display: block;
    }

    .signature-project-heading span + span::before {
        content: none;
    }

    .signature-project-heading {
        font-size: 25px;
        line-height: 1.3;
    }
}
/* Welcome */
/* ==========================================
   WELCOME SECTION
=========================================== */

.welcome-section {
    background: #fffaf3;
    padding: 45px 20px 20px;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


/* ==========================================
   WELCOME TO - ABOVE LOGO
=========================================== */

.welcome-above-logo {
    margin-bottom: 16px;
}

.welcome-label {
    color: #b66a00;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 7px;
}

.welcome-to {
    color: #7b2d00;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* ==========================================
   TRUST LOGO
=========================================== */

.welcome-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 17px;
}

.welcome-logo {
    width: 230px;
    height: 230px;

    max-width: 65vw;
    max-height: 65vw;

    object-fit: contain;
    display: block;
}


/* ==========================================
   TRUST NAME - BELOW LOGO
=========================================== */

.trust-name {
    color: #4d1b00;

    font-size: 34px;
    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 10px;
}


/* ==========================================
   DIVIDER
=========================================== */

.welcome-divider {
    width: 60px;
    height: 3px;

    margin: 0 auto 18px;

    background: #d88900;

    border-radius: 3px;
}


/* ==========================================
   DESCRIPTION
=========================================== */

.welcome-description p {
    max-width: 720px;

    margin: 0 auto;

    color: #665344;

    font-size: 15px;
    line-height: 1.8;
}

.welcome-description .welcome-tagline {
    margin-top: 9px;

    color: #7b2d00;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


/* ==========================================
   TABLET
=========================================== */

@media (max-width: 991.98px) {

    .trust-name {
        font-size: 30px;
    }

    .welcome-logo {
        width: 210px;
        height: 210px;
    }

}


/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 767.98px) {

    .welcome-section {
        padding: 35px 15px 38px;
    }

    .welcome-above-logo {
        margin-bottom: 13px;
    }

    .welcome-label {
        font-size: 21px;
    }

    .welcome-to {
        font-size: 17px;
        letter-spacing: 1.5px;
    }

    .welcome-logo {
        width: 190px;
        height: 190px;

        max-width: 60vw;
        max-height: 60vw;
    }

    .welcome-logo-wrapper {
        margin-bottom: 14px;
    }

    .trust-name {
        font-size: 24px;
        line-height: 1.35;
    }

    .welcome-divider {
        width: 50px;
        margin-bottom: 14px;
    }

    .welcome-description p {
        font-size: 13px;
        line-height: 1.7;
    }

    .welcome-description .welcome-tagline {
        font-size: 12px;
    }

}


/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 400px) {

    .welcome-logo {
        width: 165px;
        height: 165px;
    }

    .welcome-to {
        font-size: 15px;
    }

    .trust-name {
        font-size: 21px;
    }

    .welcome-description p {
        font-size: 12px;
    }

}
/* Increase fint size */
/* ==========================================
   INCREASE SITE CONTENT FONT SIZE
========================================== */

/* General content paragraphs */
.trust-intro-section p,
.signature-project-section p {
    font-size: 16px;
    line-height: 1.8;
}


/* Trust objective */
.objective-text {
    font-size: 16px;
    line-height: 1.85;
}


/* Announcement content */
.announcement-content h5 {
    font-size: 17px;
}

.announcement-content p {
    font-size: 14px;
    line-height: 1.65;
}

.announcement-read {
    font-size: 13px;
}


/* Signature project */
.signature-project-content > p {
    font-size: 16px;
    line-height: 1.85;
}

.signature-project-content h3 {
    font-size: 27px;
}


/* Sponsor box */
.sponsor-content h4 {
    font-size: 19px;
}

.sponsor-content p {
    font-size: 14px;
    line-height: 1.6;
}

.sponsor-link {
    font-size: 13px;
}


/* Read more */
.read-more-link {
    font-size: 15px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .trust-intro-section p,
    .signature-project-section p {
        font-size: 15px;
        line-height: 1.75;
    }

    .objective-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .announcement-content h5 {
        font-size: 16px;
    }

    .announcement-content p {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .announcement-read {
        font-size: 12px;
    }

    .signature-project-content > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .signature-project-content h3 {
        font-size: 23px;
    }

    .sponsor-content h4 {
        font-size: 18px;
    }

    .sponsor-content p {
        font-size: 13px;
    }

    .read-more-link {
        font-size: 14px;
    }

}
/* page static hero */
/* ==========================================
   CONTACT HERO TEXT PANEL
========================================== */

.page-static-hero-content {
    display: inline-block;

    max-width: 650px;

    padding: 22px 30px;

    color: #ffffff;

    /* Dark translucent background */
    background: rgba(25, 12, 5, 0.68);

    /* Blur the area behind the panel */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-left: 4px solid #d88900;

    border-radius: 8px;

    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.25);
}


/* ==========================================
   HERO LABEL
========================================== */

.page-static-hero-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;

    margin-bottom: 8px;

    color: #ffe0a3;
}


/* ==========================================
   CONTACT US TITLE
========================================== */

/* ==========================================
   CONTACT HERO - CONTACT US TITLE
========================================== */

