/*=========================================================
HERO 2
=========================================================*/

.hero2 {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero2 .carousel,
.hero2 .carousel-inner,
.hero2 .carousel-item {
    height: 100vh;
    min-height: 700px;
}

.hero2 .carousel-item {
    position: relative;
    overflow: hidden;
}

/* Smooth crossfade between slides */
.hero2 .carousel.carousel-fade .carousel-item {
    transition: opacity 1.1s ease-in-out;
}

.hero2-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    will-change: transform;
}

.hero2 .carousel-item.active .hero2-image {
    animation: hero2KenBurns 7s ease-out forwards;
}

.hero2-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(18, 30, 46, 0.82) 0%,
            rgba(32, 50, 72, 0.62) 42%,
            rgba(0, 0, 0, 0.22) 100%),
        radial-gradient(ellipse at 20% 80%,
            rgba(132, 147, 15, 0.12) 0%,
            transparent 55%);
    z-index: 1;
    pointer-events: none;
}

.hero2 .carousel-item .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero2-content {
    position: relative;
    z-index: 10;
    max-width: 560px;
    color: #fff;
    padding: 0 4px;
}

/* Staggered entrance on each slide */
.hero2-content > * {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(3px);
}

.hero2 .carousel-item.active .hero2-badge {
    animation: hero2FadeUp 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero2 .carousel-item.active .hero2-content h1 {
    animation: hero2FadeUp 0.85s 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero2 .carousel-item.active .hero2-content p {
    animation: hero2FadeUp 0.85s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero2 .carousel-item.active .hero2-buttons {
    animation: hero2FadeUp 0.85s 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero2KenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.07); }
}

@keyframes hero2FadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero2-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.hero2-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 100%);
    transform: translateX(-120%);
    animation: hero2BadgeShimmer 4s 1.2s ease-in-out infinite;
}

@keyframes hero2BadgeShimmer {
    0%, 70% { transform: translateX(-120%); }
    100%     { transform: translateX(120%); }
}

.hero2-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 600;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero2-content h1 span {
    color: #D4AF37;
    display: inline-block;
}

.hero2-content p {
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 38px;
    max-width: 520px;
}

.hero2-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-hero2 {
    background: linear-gradient(135deg, #84930F 0%, #6C7A0B 100%);
    color: #fff;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                background 0.35s ease;
    box-shadow: 0 6px 20px rgba(132, 147, 15, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-hero2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero2:hover {
    background: linear-gradient(135deg, #72810D 0%, #5E6A09 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(132, 147, 15, 0.45);
}

.btn-hero2:hover::before {
    opacity: 1;
}

.btn-hero2-outline {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.35s ease,
                border-color 0.35s ease,
                color 0.35s ease,
                box-shadow 0.35s ease;
}

.btn-hero2-outline:hover {
    background: #fff;
    color: #35557A;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Carousel indicators */
.hero2-indicators {
    margin-bottom: 36px;
    gap: 6px;
    z-index: 5;
}

.hero2-indicators [data-bs-target] {
    width: 36px;
    height: 4px;
    border-radius: 4px;
    border: none;
    margin: 0;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition: width 0.4s ease, background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero2-indicators [data-bs-target].active {
    width: 52px;
    background: rgba(255, 255, 255, 0.35);
}

.hero2-indicators [data-bs-target].active::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #D4AF37;
    border-radius: inherit;
    transform-origin: left center;
    animation: hero2IndicatorProgress 6s linear forwards;
}

.hero2-indicators.hero2-restart [data-bs-target].active::after {
    animation: hero2IndicatorProgress 6s linear forwards;
}

@keyframes hero2IndicatorProgress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* Carousel controls */
.hero2-control {
    width: 52px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.hero2:hover .hero2-control {
    opacity: 1;
}

.hero2-control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.25rem;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hero2-control:hover .hero2-control-icon {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    transform: scale(1.06);
}

/* Scroll cue */
.hero2-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: hero2ScrollBounce 2.4s ease-in-out infinite;
}

.hero2-scroll:hover {
    color: #fff;
}

.hero2-scroll-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero2-scroll-line {
    display: block;
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.6),
        transparent);
}

.hero2-scroll i {
    font-size: 14px;
    margin-top: -4px;
}

@keyframes hero2ScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

/* Hero responsive */
@media (max-width: 991px) {
    .hero2 .carousel,
    .hero2 .carousel-inner,
    .hero2 .carousel-item {
        min-height: 600px;
    }

    .hero2-content h1 {
        margin-bottom: 18px;
    }

    .hero2-content p {
        margin-bottom: 28px;
    }

    .hero2-control {
        opacity: 1;
    }

    .hero2-control-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .hero2 .carousel,
    .hero2 .carousel-inner,
    .hero2 .carousel-item {
        min-height: 520px;
    }

    .hero2-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero2,
    .btn-hero2-outline {
        width: 100%;
        text-align: center;
    }

    .hero2-indicators {
        margin-bottom: 52px;
    }

    .hero2-scroll {
        bottom: 18px;
    }

    .hero2-badge {
        font-size: 10px;
        padding: 8px 16px;
        letter-spacing: 1.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero2 .carousel-item.active .hero2-image,
    .hero2-content > *,
    .hero2 .carousel-item.active .hero2-badge,
    .hero2 .carousel-item.active .hero2-content h1,
    .hero2 .carousel-item.active .hero2-content p,
    .hero2 .carousel-item.active .hero2-buttons,
    .hero2-badge::after,
    .hero2-indicators [data-bs-target].active::after,
    .hero2-scroll {
        animation: none !important;
    }

    .hero2.carousel-fade .carousel-item {
        transition: opacity 0.4s ease;
    }

    .hero2-content > * {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/*=========================================================
ABOUT HOME
=========================================================*/

.about2 {

    padding: 120px 0;

    background: linear-gradient(180deg, #FCFAF6 0%, #F7F3EC 100%);

    position: relative;

    overflow: hidden;

}

.about2::before {

    content: "";

    position: absolute;

    width: 480px;

    height: 480px;

    background: rgba(132, 147, 15, .05);

    border-radius: 50%;

    top: -200px;

    right: -160px;

    pointer-events: none;

}

.about2::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(212, 175, 55, .06);

    border-radius: 50%;

    bottom: -120px;

    left: -100px;

    pointer-events: none;

}

.about2 .container {

    position: relative;

    z-index: 1;

}

/* Image */

.about2-image-wrap {

    position: relative;

    padding: 0 20px 20px 0;

}

.about2-image-accent {

    position: absolute;

    bottom: 0;

    right: 0;

    width: 75%;

    height: 80%;

    border: 3px solid rgba(212, 175, 55, .35);

    border-radius: 28px;

    z-index: 0;

}

.about2-image {

    position: relative;

    z-index: 2;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 25px 60px rgba(34, 50, 72, .14);

}

.about2-image::before {

    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    background: linear-gradient(135deg, rgba(132, 147, 15, .15) 0%, rgba(212, 175, 55, .10) 100%);

    border-radius: 20px;

    top: -15px;

    left: -15px;

    z-index: -1;

}

.about2-image img {

    width: 100%;

    display: block;

    transition: transform .5s ease;

}

.about2-image-wrap:hover .about2-image img {

    transform: scale(1.04);

}

.about2-image-badge {

    position: absolute;

    left: 30px;

    bottom: 30px;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: rgba(255, 255, 255, .96);

    padding: 14px 22px;

    border-radius: 16px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

    font-weight: 600;

    font-size: 14px;

    color: #243447;

}

.about2-image-badge i {

    color: #84930F;

    font-size: 16px;

}

/* Content */

.about2-content {

    padding-left: 10px;

}

.about2-subtitle {

    display: inline-block;

    color: #84930F;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 15px;

}

.about2-title {

    font-size: 48px;

    line-height: 1.15;

    margin-bottom: 25px;

    color: #243447;

    font-weight: 700;

}

.about2-title span {

    display: block;

    color: #84930F;

}

.about2-text {

    font-size: 18px;

    line-height: 1.9;

    color: #5d6975;

    margin-bottom: 0;

}

.about2-features {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 35px;

}

.about2-feature {

    display: flex;

    align-items: center;

    gap: 16px;

    background: #fff;

    border-radius: 16px;

    padding: 16px 20px;

    border: 1px solid rgba(67, 102, 145, .08);

    box-shadow: 0 6px 22px rgba(34, 50, 72, .05);

    font-weight: 600;

    color: #243447;

    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;

}

.about2-feature:hover {

    transform: translateX(8px);

    border-color: rgba(132, 147, 15, .25);

    box-shadow: 0 10px 30px rgba(34, 50, 72, .08);

}

.about2-feature-icon {

    width: 46px;

    height: 46px;

    min-width: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, #84930F 0%, #6d7c0d 100%);

    color: #fff;

    border-radius: 14px;

    font-size: 18px;

    box-shadow: 0 6px 16px rgba(132, 147, 15, .30);

}

.about2-feature i {

    width: auto;

    height: auto;

    background: none;

    border-radius: 0;

    font-size: inherit;

}

.about2-btn {

    margin-top: 35px;

    display: inline-flex;

    align-items: center;

    transition: transform .3s ease, box-shadow .3s ease;

}

.about2-btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(132, 147, 15, .35);

}

.about2-btn i {

    transition: transform .3s ease;

}

.about2-btn:hover i {

    transform: translateX(4px);

}

@media (max-width: 991px) {

    .about2 {

        padding: 90px 0;

    }

    .about2-content {

        padding-left: 0;

        margin-top: 20px;

    }

    .about2-title {

        font-size: 38px;

    }

    .about2-image-wrap {

        max-width: 520px;

        margin: 0 auto;

    }

}

@media (max-width: 575px) {

    .about2 {

        padding: 70px 0;

    }

    .about2-title {

        font-size: 32px;

    }

    .about2-text {

        font-size: 16px;

    }

    .about2-image-badge {

        left: 20px;

        bottom: 20px;

        padding: 12px 18px;

        font-size: 13px;

    }

    .about2-feature {

        padding: 14px 16px;

    }

    .about2-feature-icon {

        width: 42px;

        height: 42px;

        min-width: 42px;

        font-size: 16px;

    }

}

/*==================================================
MINISTRIES 2
==================================================*/

.ministries2 {

    padding: 120px 0;

    background: linear-gradient(180deg,
            #365271 0%,
            #2F4866 100%);

    position: relative;

    overflow: hidden;

}

/* Decorative Background */

.ministries2::before {

    content: "";

    position: absolute;

    width: 550px;

    height: 550px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .03);

    top: -220px;

    right: -180px;

}

.ministries2::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .02);

    bottom: -120px;

    left: -120px;

}

/* Heading */

.ministries2-subtitle {

    display: inline-block;

    color: #D4AF37;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;

}

.ministries2-title {

    color: #fff;

    font-size: 52px;

    line-height: 1.2;

    margin-bottom: 25px;

}

.ministries2-description {

    color: rgba(255, 255, 255, .82);

    font-size: 18px;

    line-height: 1.9;

    max-width: 700px;

    margin: auto;

}

/* Each Ministry Card */

.ministry2-card {

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 24px;

    overflow: hidden;

    height: 100%;

    display: flex;

    flex-direction: column;

    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;

}

.ministry2-card:hover {

    transform: translateY(-8px);

    border-color: rgba(212, 175, 55, .4);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);

}

/* Image */

.ministry2-image {

    position: relative;

    overflow: hidden;

    border-radius: 24px 24px 0 0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

    height: 250px;

}

.ministry2-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}

.ministry2-card:hover .ministry2-image img,

.ministry2-image:hover img {

    transform: scale(1.08);

}

/* Badge */

.ministry2-badge {

    position: absolute;

    left: 30px;

    bottom: 30px;

    background: rgba(255, 255, 255, .95);

    color: #243447;

    padding: 16px 22px;

    border-radius: 18px;

    backdrop-filter: blur(10px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

}

.ministry2-badge strong {

    display: block;

    color: #84930F;

    font-size: 22px;

    font-weight: 700;

}

.ministry2-badge span {

    display: block;

    font-size: 14px;

    margin-top: 4px;

}

/* Content */

.ministry2-content {

    padding: 30px 25px;

    display: flex;

    flex-direction: column;

    flex-grow: 1;

}

.ministry2-subtitle {

    display: inline-block;

    color: #D4AF37;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-size: 13px;

    margin-bottom: 12px;

    font-weight: 600;

}

.ministry2-card h3,

.ministry2-row h3 {

    color: #fff;

    font-size: 22px;

    line-height: 1.35;

    margin-bottom: 15px;

    font-weight: 600;

}

.ministry2-card p,

.ministry2-row p {

    color: rgba(255, 255, 255, .82);

    line-height: 1.7;

    font-size: 15px;

    margin-bottom: 25px;

    flex-grow: 1;

}

/* Learn More */

.ministry2-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    margin-top: auto;

    transition: .3s;

}

.ministry2-link i {

    transition: .3s;

}

.ministry2-link:hover {

    color: #D4AF37;

}

.ministry2-link:hover i {

    transform: translateX(6px);

}

/* Legacy row support */

.ministry2-row {

    padding: 80px 0;

    position: relative;

}

.ministry2-row:not(:last-child) {

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.ministry2-row h3 {

    font-size: 40px;

    line-height: 1.25;

    margin-bottom: 25px;

}

.ministry2-row p {

    line-height: 1.9;

    font-size: 18px;

    margin-bottom: 35px;

}

/* Responsive */

@media(max-width:991px) {

    .ministries2 {

        padding: 80px 0;

    }

    .ministry2-row {

        padding: 60px 0;

    }

    .ministries2-title {

        font-size: 38px;

    }

    .ministry2-card h3 {

        font-size: 20px;

    }

    .ministry2-row h3 {

        font-size: 30px;

    }

    .ministry2-badge {

        left: 20px;

        bottom: 20px;

        padding: 14px 18px;

    }

}

@media(max-width:767px) {

    .ministries2-title {

        font-size: 32px;

    }

    .ministry2-card .ministry2-image {

        height: 220px;

    }

    .ministry2-card h3 {

        font-size: 20px;

    }

    .ministry2-row h3 {

        font-size: 28px;

    }

    .ministries2-description,

    .ministry2-card p,

    .ministry2-row p {

        font-size: 15px;

    }

}

/*=========================================
FEATURED MINISTRY
=========================================*/

.ministry2-featured {

    margin: 80px 0;

    padding: 60px;

    /*background:linear-gradient(
        135deg,
        rgba(255,255,255,.16),
        rgba(255,255,255,.08)
    );

    border:1px solid rgba(255,255,255,.20);*/

    background: rgba(255, 255, 255, .15);

    border: 1px solid rgba(255, 255, 255, .25);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .20);

    backdrop-filter: blur(12px);

    border-radius: 32px;




    -webkit-backdrop-filter: blur(10px);

    position: relative;

    overflow: hidden;

}

/* Decorative Gold Circle */

.ministry2-featured::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background: rgba(212, 175, 55, .04);

    top: -110px;

    right: -110px;

}

/* Decorative White Circle */

.ministry2-featured::after {

    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .02);

    bottom: -60px;

    left: -60px;

}

/* Keep content above decorations */

.ministry2-featured .row {

    position: relative;

    z-index: 2;

}

/* Stronger image */

.ministry2-featured .ministry2-image {

    box-shadow: 0 25px 70px rgba(0, 0, 0, .35);

}

/* Better title */

.ministry2-featured h3 {

    font-size: 44px;

}

/* Better badge */

.ministry2-featured .ministry2-badge {

    background: #fff;

}

/* Mobile */

@media(max-width:991px) {

    .ministry2-featured {

        padding: 35px;

        margin: 50px 0;

    }

}

@media(max-width:767px) {

    .ministry2-featured {

        padding: 25px;

        border-radius: 20px;

    }

}

/*==================================================
THE SHEPHERD BEHIND THE MISSION
==================================================*/

.shepherd2 {

    padding: 120px 0;

    background: #F4EFE7;

    position: relative;

    overflow: hidden;

}

/* Decorative Background */

.shepherd2::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background: rgba(132, 147, 15, .05);

    border-radius: 50%;

    top: -220px;

    right: -180px;

}

.shepherd2::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    background: rgba(78, 112, 148, .04);

    border-radius: 50%;

    bottom: -120px;

    left: -100px;

}

/* Image */

.shepherd2-image {

    position: relative;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

.shepherd2-image img {

    width: 100%;

    transition: .5s;

}

.shepherd2-image:hover img {

    transform: scale(1.05);

}

/* Name Card */

.shepherd2-name {

    position: absolute;

    left: 25px;

    bottom: 25px;

    background: rgba(255, 255, 255, .96);

    padding: 18px 25px;

    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .10);

}

.shepherd2-name h4 {

    margin: 0;

    color: #243447;

    font-size: 24px;

}

.shepherd2-name span {

    color: #84930F;

    font-size: 15px;

    font-weight: 600;

}

/* Content */

.shepherd2-subtitle {

    display: inline-block;

    color: #84930F;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;

}

.shepherd2-title {

    font-size: 52px;

    line-height: 1.2;

    color: #243447;

    margin-bottom: 35px;

}

/* Quote */

.shepherd2-quote {

    position: relative;

    margin-bottom: 35px;

    padding-left: 70px;

}

.shepherd2-quote::before {

    content: "“";

    position: absolute;

    left: -30px;

    top: -60px;

    font-size: 180px;

    font-family: "Cormorant Garamond", serif;

    color: rgba(212, 175, 55, .08);

    z-index: 0;

}

.shepherd2-quote i {

    position: absolute;

    left: 0;

    top: -10px;

    font-size: 55px;

    color: #D4AF37;

    opacity: .8;

}

.shepherd2-quote p {

    font-size: 24px;

    line-height: 1.6;

    font-style: italic;

    color: #35557A;

    margin: 0;

    position: relative;

    z-index: 2;

}

/* Text */

.shepherd2-text {

    font-size: 18px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 35px;

}

/* Button */

.shepherd2 .btn {

    padding: 14px 32px;

}

/* Responsive */

@media(max-width:991px) {

    .shepherd2 {

        padding: 80px 0;

    }

    .shepherd2-title {

        font-size: 40px;

    }

    .shepherd2-quote p {

        font-size: 20px;

    }

}

@media(max-width:767px) {

    .shepherd2-title {

        font-size: 32px;

    }

    .shepherd2-quote {

        padding-left: 50px;

    }

    .shepherd2-quote i {

        font-size: 40px;

    }

    .shepherd2-quote p {

        font-size: 18px;

    }

    .shepherd2-text {

        font-size: 16px;

    }

    .shepherd2-name {

        left: 15px;

        right: 15px;

        bottom: 15px;

        padding: 15px 20px;

    }

}

/*==================================================
COMMUNITY OUTREACH
==================================================*/

.outreach2 {

    padding: 120px 0;

    background: #FCFAF6;

    position: relative;

    overflow: hidden;

}

/* Decorative Background Elements */

.outreach2::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    background: rgba(212, 175, 55, .06);

    border-radius: 50%;

    top: -200px;

    right: -150px;

    pointer-events: none;

}

.outreach2::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    background: rgba(47, 72, 102, .04);

    border-radius: 50%;

    bottom: -150px;

    left: -120px;

    pointer-events: none;

}

.outreach2-subtitle {

    display: inline-block;

    color: #84930F;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 15px;

}

.outreach2-title {

    font-size: 52px;

    color: #243447;

    margin-bottom: 25px;

    font-weight: 700;

}

.outreach2-description {

    max-width: 720px;

    margin: auto;

    font-size: 18px;

    line-height: 1.9;

    color: #55687D;

}

/* Featured Programme Box */

.outreach2-feature {

    background: #ffffff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);

    border: 1px solid rgba(132, 147, 15, .15);

    transition: transform .4s ease, box-shadow .4s ease;

}

.outreach2-feature:hover {

    box-shadow: 0 30px 60px rgba(0, 0, 0, .1);

}

.outreach2-feature-image {

    position: relative;

    height: 100%;

    min-height: 380px;

    overflow: hidden;

}

.outreach2-feature-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}

.outreach2-feature:hover .outreach2-feature-image img {

    transform: scale(1.06);

}

.outreach2-feature-badge {

    position: absolute;

    bottom: 25px;

    left: 25px;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(10px);

    padding: 14px 22px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    gap: 14px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

}

.outreach2-feature-badge i {

    font-size: 24px;

    color: #D4AF37;

}

.outreach2-feature-badge strong {

    display: block;

    font-size: 15px;

    color: #243447;

    font-weight: 700;

    line-height: 1.2;

}

.outreach2-feature-badge span {

    font-size: 13px;

    color: #666;

}

.outreach2-feature-content {

    padding: 45px 40px;

}

.outreach2-label {

    display: inline-block;

    background: rgba(132, 147, 15, .12);

    color: #6C7A0B;

    padding: 6px 16px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.outreach2-feature-content h3 {

    font-size: 36px;

    color: #243447;

    font-weight: 700;

    margin-bottom: 8px;

    line-height: 1.25;

}

.outreach2-feature-content h5 {

    font-size: 18px;

    color: #D4AF37;

    font-weight: 600;

    margin-bottom: 20px;

}

.outreach2-feature-content p {

    color: #55687D;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 30px;

}

.btn-outreach {

    display: inline-flex;

    align-items: center;

    background: #365271;

    color: #fff;

    padding: 14px 30px;

    border-radius: 50px;

    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;

    box-shadow: 0 8px 20px rgba(54, 82, 113, .25);

}

.btn-outreach:hover {

    background: #84930F;

    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(132, 147, 15, .35);

}

.btn-outreach i {

    transition: transform .3s ease;

}

.btn-outreach:hover i {

    transform: translateX(5px);

}

/* Cards */

.outreach2-card {

    display: flex;

    flex-direction: column;

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    text-decoration: none;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);

    border: 1px solid rgba(0, 0, 0, .04);

    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;

    height: 100%;

}

.outreach2-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 22px 45px rgba(0, 0, 0, .12);

    border-color: rgba(212, 175, 55, .3);

}

/* Image */

.outreach2-card-image {

    overflow: hidden;

    height: 210px;

}

.outreach2-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}

.outreach2-card:hover .outreach2-card-image img {

    transform: scale(1.08);

}

/* Content */

.outreach2-card-content {

    padding: 25px 20px;

    display: flex;

    flex-direction: column;

    flex-grow: 1;

}

.outreach2-card-content h4 {

    color: #243447;

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 10px;

    transition: color .3s ease;

}

.outreach2-card:hover h4 {

    color: #84930F;

}

.outreach2-card-content p {

    color: #666;

    font-size: 14px;

    line-height: 1.65;

    margin-bottom: 20px;

    flex-grow: 1;

}

/* Learn More */

.outreach2-readmore {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #4E7094;

    font-weight: 600;

    font-size: 14px;

    margin-top: auto;

    transition: color .3s ease;

}

.outreach2-readmore i {

    transition: transform .3s ease;

}

.outreach2-card:hover .outreach2-readmore {

    color: #84930F;

}

.outreach2-card:hover .outreach2-readmore i {

    transform: translateX(5px);

}

/* Responsive */

@media(max-width:991px) {

    .outreach2 {

        padding: 80px 0;

    }

    .outreach2-title {

        font-size: 40px;

    }

    .outreach2-feature-content {

        padding: 35px 25px;

    }

    .outreach2-feature-content h3 {

        font-size: 28px;

    }

}

@media(max-width:767px) {

    .outreach2-title {

        font-size: 32px;

    }

    .outreach2-description {

        font-size: 16px;

    }

    .outreach2-feature-image {

        min-height: 260px;

    }

    .outreach2-card-image {

        height: 190px;

    }

    .outreach2-card-content {

        padding: 20px;

    }

    .outreach2-card-content h4 {

        font-size: 18px;

    }

}

/*==================================================
MOMENTS & MEMORIES (MEMORIES2)
==================================================*/

.memories2 {

    padding: 120px 0;

    background: linear-gradient(135deg, #1E2D3E 0%, #27384B 50%, #182432 100%);

    position: relative;

    overflow: hidden;

}

/* Background Glowing Elements */

.memories2::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    background: rgba(212, 175, 55, .05);

    border-radius: 50%;

    top: -200px;

    left: -150px;

    pointer-events: none;

}

.memories2::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    background: rgba(132, 147, 15, .05);

    border-radius: 50%;

    bottom: -150px;

    right: -100px;

    pointer-events: none;

}

.memories2-subtitle {

    display: inline-flex;

    align-items: center;

    color: #D4AF37;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 15px;

}

.memories2-title {

    font-size: 48px;

    color: #FFFFFF;

    margin-bottom: 18px;

    font-weight: 700;

    line-height: 1.2;

}

.memories2-description {

    max-width: 600px;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .78);

}

.btn-memories-gallery {

    display: inline-flex;

    align-items: center;

    background: rgba(255, 255, 255, .08);

    color: #FFFFFF;

    border: 1px solid rgba(255, 255, 255, .2);

    padding: 13px 28px;

    border-radius: 50px;

    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;

    backdrop-filter: blur(8px);

}

.btn-memories-gallery:hover {

    background: #D4AF37;

    color: #1E2D3E;

    border-color: #D4AF37;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(212, 175, 55, .3);

}

.btn-memories-gallery i {

    transition: transform .3s ease;

}

.btn-memories-gallery:hover i {

    transform: translateX(5px);

}

/* Memory Cards */

.memory2-card {

    display: flex;

    flex-direction: column;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 24px;

    overflow: hidden;

    text-decoration: none;

    height: 100%;

    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;

}

.memory2-card:hover {

    transform: translateY(-8px);

    border-color: rgba(212, 175, 55, .45);

    box-shadow: 0 22px 45px rgba(0, 0, 0, .4);

}

/* Image & Date Badge */

.memory2-card-image {

    position: relative;

    height: 230px;

    overflow: hidden;

}

.memory2-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}

.memory2-card:hover .memory2-card-image img {

    transform: scale(1.08);

}

.memory2-card-date {

    position: absolute;

    top: 18px;

    right: 18px;

    background: rgba(23, 38, 56, .85);

    backdrop-filter: blur(8px);

    color: #D4AF37;

    font-size: 12px;

    font-weight: 600;

    padding: 6px 14px;

    border-radius: 30px;

    border: 1px solid rgba(212, 175, 55, .3);

    box-shadow: 0 6px 15px rgba(0, 0, 0, .2);

}

/* Body */

.memory2-card-body {

    padding: 25px 22px;

    display: flex;

    flex-direction: column;

    flex-grow: 1;

}

.memory2-card-body h5 {

    color: #FFFFFF;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.35;

    margin-bottom: 12px;

    transition: color .3s ease;

}

.memory2-card:hover .memory2-card-body h5 {

    color: #D4AF37;

}

.memory2-card-body p {

    color: rgba(255, 255, 255, .75);

    font-size: 14px;

    line-height: 1.65;

    margin-bottom: 20px;

    flex-grow: 1;

}

/* Link */

.memory2-card-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #D4AF37;

    font-weight: 600;

    font-size: 14px;

    margin-top: auto;

    transition: color .3s ease;

}

.memory2-card-link i {

    transition: transform .3s ease;

}

.memory2-card:hover .memory2-card-link i {

    transform: translateX(5px);

}

/* Swiper Pagination Styling */

.memories2 .swiper-pagination-bullet {

    background: rgba(255, 255, 255, .3);

    opacity: 1;

    width: 10px;

    height: 10px;

    transition: all .3s ease;

}

.memories2 .swiper-pagination-bullet-active {

    background: #D4AF37;

    width: 28px;

    border-radius: 10px;

}

/* Responsive */

@media(max-width:991px) {

    .memories2 {

        padding: 80px 0;

    }

    .memories2-title {

        font-size: 38px;

    }

}

@media(max-width:767px) {

    .memories2-title {

        font-size: 30px;

    }

    .memories2-description {

        font-size: 15px;

    }

    .memory2-card-image {

        height: 200px;

    }

    .memory2-card-body {

        padding: 20px 18px;

    }

    .memory2-card-body h5 {

        font-size: 18px;

    }

}

/*==================================================
SPONSOR A MEAL & DONATE (DONATE2)
==================================================*/

.donate2 {

    padding: 120px 0;

    background: linear-gradient(180deg, #FFFBF5 0%, #F5EFE4 100%);

    position: relative;

    overflow: hidden;

}

/* Background Glowing Circles */

.donate2::before {

    content: "";

    position: absolute;

    width: 550px;

    height: 550px;

    background: rgba(212, 175, 55, .07);

    border-radius: 50%;

    top: -200px;

    right: -180px;

    pointer-events: none;

}

.donate2::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background: rgba(132, 147, 15, .06);

    border-radius: 50%;

    bottom: -180px;

    left: -150px;

    pointer-events: none;

}

.donate2-subtitle {

    display: inline-block;

    color: #84930F;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 15px;

}

.donate2-title {

    font-size: 48px;

    color: #243447;

    margin-bottom: 20px;

    font-weight: 700;

}

.donate2-description {

    max-width: 720px;

    margin: auto;

    font-size: 18px;

    line-height: 1.8;

    color: #55687D;

}

/* Meal Cards */

.donate2-meal-card {

    position: relative;

    background: #FFFFFF;

    border-radius: 24px;

    padding: 35px 28px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);

    border: 1px solid rgba(132, 147, 15, .15);

    display: flex;

    flex-direction: column;

    height: 100%;

    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;

}

.donate2-meal-card:hover {

    transform: translateY(-8px);

    border-color: #D4AF37;

    box-shadow: 0 22px 50px rgba(0, 0, 0, .12);

}

.donate2-meal-card.featured {

    border: 2px solid #84930F;

    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCF7 100%);

}

.donate2-meal-card.featured-gold {

    border: 2px solid #D4AF37;

    background: linear-gradient(180deg, #FFFFFF 0%, #FCFBF4 100%);

}

.donate2-popular-badge {

    position: absolute;

    top: -14px;

    right: 25px;

    background: #84930F;

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 700;

    padding: 4px 14px;

    border-radius: 20px;

    box-shadow: 0 6px 15px rgba(132, 147, 15, .3);

    text-transform: uppercase;

    letter-spacing: 0.5px;

}

.donate2-popular-badge.gold {

    background: #D4AF37;

    box-shadow: 0 6px 15px rgba(212, 175, 55, .3);

}

.donate2-meal-icon {

    width: 64px;

    height: 64px;

    border-radius: 50%;

    background: rgba(132, 147, 15, .12);

    color: #84930F;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 26px;

    margin-bottom: 22px;

    transition: all .3s ease;

}

.donate2-meal-card:hover .donate2-meal-icon {

    background: #84930F;

    color: #FFFFFF;

    transform: scale(1.1);

}

.donate2-meal-card.featured-gold .donate2-meal-icon {

    background: rgba(212, 175, 55, .15);

    color: #D4AF37;

}

.donate2-meal-card.featured-gold:hover .donate2-meal-icon {

    background: #D4AF37;

    color: #1E2D3E;

}

.donate2-meal-card h4 {

    font-size: 22px;

    color: #243447;

    font-weight: 700;

    margin-bottom: 10px;

}

.donate2-meal-card p {

    color: #666666;

    font-size: 14px;

    line-height: 1.65;

    margin-bottom: 22px;

    flex-grow: 1;

}

.donate2-amount {

    font-size: 28px;

    font-weight: 800;

    color: #365271;

    margin-bottom: 20px;

    letter-spacing: -0.5px;

}

.donate2-meal-card.featured .donate2-amount {

    color: #84930F;

}

.donate2-meal-card.featured-gold .donate2-amount {

    color: #D4AF37;

}

.btn-sponsor-card {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: rgba(54, 82, 113, .08);

    color: #365271;

    font-weight: 700;

    padding: 12px 22px;

    border-radius: 40px;

    text-decoration: none;

    transition: all .3s ease;

    margin-top: auto;

}

.btn-sponsor-card i {

    transition: transform .3s ease;

}

.donate2-meal-card:hover .btn-sponsor-card {

    background: #365271;

    color: #FFFFFF;

}

.donate2-meal-card.featured:hover .btn-sponsor-card {

    background: #84930F;

    color: #FFFFFF;

}

.donate2-meal-card.featured-gold:hover .btn-sponsor-card {

    background: #D4AF37;

    color: #1E2D3E;

}

.donate2-meal-card:hover .btn-sponsor-card i {

    transform: translateX(5px);

}

/* General Donation Box Banner */

.donate2-cta-box {

    background: linear-gradient(135deg, #365271 0%, #293E56 100%);

    border-radius: 28px;

    padding: 45px 40px;

    color: #FFFFFF;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);

    position: relative;

    overflow: hidden;

}

.donate2-cta-box::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    background: rgba(212, 175, 55, .08);

    border-radius: 50%;

    top: -100px;

    right: -100px;

    pointer-events: none;

}

.donate2-cta-box h3 {

    font-size: 32px;

    font-weight: 700;

    color: #FFFFFF;

    margin-bottom: 10px;

}

.donate2-cta-box p {

    color: rgba(255, 255, 255, .85);

    font-size: 16px;

    line-height: 1.7;

    max-width: 650px;

    margin-bottom: 24px;

}

.donate2-cta-contact {

    margin-top: 6px;

    padding-top: 26px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

}

.donate2-cta-phones-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    padding: 8px 16px;

    border-radius: 40px;

    background: rgba(212, 175, 55, 0.12);

    border: 1px solid rgba(212, 175, 55, 0.28);

    color: #D4AF37;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.donate2-cta-phones-label i {

    font-size: 12px;

}

.donate2-cta-phones {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

}

.donate2-cta-phone {

    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 18px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #fff;

    text-decoration: none;

    overflow: hidden;

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;

}

.donate2-cta-phone,
.donate2-cta-phone:hover,
.donate2-cta-phone:focus,
.donate2-cta-phone:visited {

    color: #fff;

}

.donate2-cta-phone::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: linear-gradient(90deg, #84930F, #D4AF37);

    opacity: 0;

    transition: opacity 0.35s ease;

}

.donate2-cta-phone:hover {

    background: rgba(255, 255, 255, 0.11);

    border-color: rgba(212, 175, 55, 0.4);

    color: #fff;

    transform: translateY(-4px);

    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);

}

.donate2-cta-phone:hover::before {

    opacity: 1;

}

.donate2-cta-phone-icon {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    border-radius: 12px;

    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(132, 147, 15, 0.18));

    color: #D4AF37;

    font-size: 18px;

    flex-shrink: 0;

    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;

}

.donate2-cta-phone:hover .donate2-cta-phone-icon {

    transform: scale(1.06);

    background: linear-gradient(135deg, #D4AF37, #84930F);

    color: #243447;

}

.donate2-cta-phone-info {

    display: flex;

    flex-direction: column;

    gap: 4px;

    flex: 1;

    min-width: 0;

}

.donate2-cta-phone-label {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.88);

    line-height: 1.3;

}

.donate2-cta-phone:hover .donate2-cta-phone-label,
.donate2-cta-phone:focus .donate2-cta-phone-label {

    color: #fff;

}

.donate2-cta-phone-number {

    font-size: 15px;

    font-weight: 700;

    color: #fff;

    letter-spacing: 0.4px;

    line-height: 1.2;

    white-space: nowrap;

}

.donate2-cta-phone:hover .donate2-cta-phone-number,
.donate2-cta-phone:focus .donate2-cta-phone-number {

    color: #fff;

}

.donate2-cta-phone-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;

    flex-shrink: 0;

    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;

}

.donate2-cta-phone:hover .donate2-cta-phone-arrow {

    background: rgba(212, 175, 55, 0.25);

    color: #fff;

    transform: translateX(3px);

}

/* Responsive */

@media (max-width: 1199px) {

    .donate2-cta-phones {

        grid-template-columns: 1fr;

    }

}

@media(max-width:991px) {

    .donate2 {

        padding: 80px 0;

    }

    .donate2-title {

        font-size: 38px;

    }

    .donate2-cta-box {

        padding: 35px 25px;

    }

    .donate2-cta-box h3 {

        font-size: 26px;

    }

    .donate2-cta-phones {

        grid-template-columns: 1fr;

    }

    .donate2-cta-phone {

        width: 100%;

    }

    .donate2-cta-phone-number {

        white-space: normal;

    }

}

@media(max-width:767px) {

    .donate2-title {

        font-size: 30px;

    }

    .donate2-description {

        font-size: 15px;

    }

    .donate2-meal-card {

        padding: 28px 22px;

    }

    .donate2-meal-card h4 {

        font-size: 20px;

    }

    .donate2-amount {

        font-size: 24px;

    }

}

/*==================================================
OUR COMMITTEE (COMMITTEE2)
==================================================*/

.committee2 {

    padding: 120px 0;

    background: linear-gradient(180deg, #FAF7F2 0%, #F4EFE7 100%);

    position: relative;

    overflow: hidden;

}

.committee2::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    background: rgba(212, 175, 55, .06);

    border-radius: 50%;

    top: -220px;

    left: -180px;

    pointer-events: none;

}

.committee2::after {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    background: rgba(132, 147, 15, .05);

    border-radius: 50%;

    bottom: -180px;

    right: -140px;

    pointer-events: none;

}

.committee2 .container {

    position: relative;

    z-index: 1;

}

.committee2-header {

    max-width: 720px;

    margin: 0 auto 65px;

}

.committee2-subtitle {

    display: inline-block;

    color: #84930F;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 15px;

}

.committee2-title {

    font-size: 48px;

    color: #243447;

    margin-bottom: 20px;

    font-weight: 700;

    line-height: 1.2;

}

.committee2-description {

    font-size: 18px;

    line-height: 1.85;

    color: #5d6975;

    margin: 0;

}

@media (max-width: 991px) {

    .committee2 {

        padding: 90px 0;

    }

    .committee2-title {

        font-size: 38px;

    }

    .committee2-header {

        margin-bottom: 50px;

    }

}

@media (max-width: 575px) {

    .committee2 {

        padding: 70px 0;

    }

    .committee2-title {

        font-size: 32px;

    }

    .committee2-description {

        font-size: 16px;

    }

}

/*==================================================
TESTIMONIALS (TESTIMONIALS2)
==================================================*/

.testimonials2 {

    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;

    padding: 120px 0;

    background: #FFFFFF;

    position: relative;

    overflow: hidden;

}

.testimonials2::before {

    content: "";

    position: absolute;

    width: 480px;

    height: 480px;

    background: rgba(54, 82, 113, .04);

    border-radius: 50%;

    top: -200px;

    right: -160px;

    pointer-events: none;

}

.testimonials2::after {

    content: "";

    position: absolute;

    width: 360px;

    height: 360px;

    background: rgba(212, 175, 55, .05);

    border-radius: 50%;

    bottom: -140px;

    left: -120px;

    pointer-events: none;

}

.testimonials2 .container {

    position: relative;

    z-index: 1;

}

.testimonials2-header {

    max-width: 760px;

    margin: 0 auto 60px;

}

.testimonials2-subtitle {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #4285F4;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 15px;

}

.testimonials2-subtitle .google-logo {

    width: 20px;

    height: 20px;

    flex-shrink: 0;

}

.google-logo {

    display: inline-block;

    vertical-align: middle;

}

.google-word {

    font-weight: 700;

    background: linear-gradient(
        90deg,
        #4285F4 0%,
        #EA4335 35%,
        #FBBC05 65%,
        #34A853 100%
    );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}

.testimonials2-title {

    font-size: 48px;

    color: #243447;

    margin-bottom: 20px;

    font-weight: 700;

    line-height: 1.2;

}

.testimonials2-description {

    font-size: 18px;

    line-height: 1.85;

    color: #5d6975;

    margin: 0 auto 25px;

}

.testimonials2-rating {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 22px;

    border-radius: 50px;

    background: #FFFFFF;

    border: 1px solid rgba(66, 133, 244, .2);

    box-shadow: 0 8px 24px rgba(66, 133, 244, .08);

}

.testimonials2-rating .testimonials2-stars {

    display: inline-flex;

    gap: 2px;

    color: #FBBC05;

    font-size: 15px;

}

.testimonials2-score {

    font-size: 20px;

    font-weight: 700;

    color: #243447;

    line-height: 1;

}

.testimonials2-count {

    font-size: 14px;

    color: #6b7a88;

    font-weight: 500;

}

.testimonial2-card {

    height: 100%;

    background: #FAF7F2;

    border: 1px solid rgba(132, 147, 15, .12);

    border-radius: 24px;

    padding: 32px 30px 28px;

    display: flex;

    flex-direction: column;

    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;

}

.testimonial2-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 45px rgba(36, 52, 71, .1);

    border-color: rgba(212, 175, 55, .35);

}

.testimonial2-card-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 18px;

}

.testimonial2-card .testimonial2-stars {

    display: inline-flex;

    gap: 3px;

    color: #FBBC05;

    font-size: 14px;

}

.testimonial2-quote-icon {

    font-size: 42px;

    line-height: 1;

    color: rgba(132, 147, 15, .25);

}

.testimonial2-text {

    flex: 1;

    margin: 0 0 24px;

    font-size: 16px;

    line-height: 1.85;

    color: #4a5a68;

    font-style: italic;

}

.testimonial2-author {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: auto;

}

.testimonial2-avatar {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, #365271, #4a6d8f);

    color: #FFFFFF;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .5px;

    flex-shrink: 0;

}

.testimonial2-name {

    display: block;

    font-style: normal;

    font-size: 16px;

    font-weight: 600;

    color: #243447;

    margin-bottom: 2px;

}

.testimonial2-source {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    font-size: 13px;

    color: #4285F4;

    font-weight: 500;

}

.testimonial2-source .google-logo {

    width: 16px;

    height: 16px;

    flex-shrink: 0;

}

.btn-testimonials-google {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 30px;

    border-radius: 50px;

    background: #FFFFFF;

    color: #243447;

    font-weight: 600;

    text-decoration: none;

    border: 2px solid rgba(66, 133, 244, .25);

    box-shadow: 0 10px 28px rgba(66, 133, 244, .12);

    transition: all .3s ease;

}

.btn-testimonials-google .google-logo {

    width: 20px;

    height: 20px;

    flex-shrink: 0;

}

.btn-testimonials-google:hover {

    background: #4285F4;

    border-color: #4285F4;

    color: #FFFFFF;

    transform: translateY(-3px);

    box-shadow: 0 14px 32px rgba(66, 133, 244, .28);

}

@media (max-width: 991px) {

    .testimonials2 {

        padding: 90px 0;

    }

    .testimonials2-title {

        font-size: 38px;

    }

    .testimonials2-header {

        margin-bottom: 45px;

    }

}

@media (max-width: 575px) {

    .testimonials2 {

        padding: 70px 0;

    }

    .testimonials2-title {

        font-size: 32px;

    }

    .testimonials2-description {

        font-size: 16px;

    }

    .testimonial2-card {

        padding: 26px 22px 22px;

    }

}