﻿/*==========================================
SCHEMES
==========================================*/

.scheme-section {
    background: #f8fafc;
    padding: 80px 0;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: auto;
}

.scheme-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    height: 100%;
}

.scheme-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.scheme-content {
    padding: 35px;
}

.scheme-badge {
    display: inline-block;
    background: #fde68a;
    color: #92400e;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

    .scheme-badge.blue {
        background: #dbeafe;
        color: #1d4ed8;
    }

.scheme-content h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.scheme-content p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.scheme-highlight {
    background: #c1121f;
    color: white;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    margin-top: 25px;
}

/*==========================================
GROWTH
==========================================*/

.growth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .growth-card:hover {
        transform: translateY(-6px);
    }

    .growth-card.active {
        background: #c1121f;
        color: white;
    }

    .growth-card h1 {
        font-size: 50px;
        font-weight: 700;
    }

    .growth-card p {
        margin: 0;
        color: inherit;
    }



/*==========================================
BENEFICIARY STORIES
==========================================*/

.stories-section {
    padding: 90px 0;
    background: white;
}

.story-card {
    display: flex;
    gap: 25px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
    transition: .3s;
}

    .story-card:hover {
        transform: translateY(-6px);
    }

.story-photo {
    width: 140px;
    height: 140px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.story-content h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.story-content span {
    color: #c1121f;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.story-content p {
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0;
}

@media(max-width:768px) {

    .story-card {
        flex-direction: column;
        text-align: center;
    }

    .story-photo {
        width: 180px;
        height: 180px;
        margin: auto;
    }
}


/*==========================================
RECOGNITION
==========================================*/

.recognition-section {
    padding: 90px 0;
    background: #f8fafc;
}

.recognition-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

    .recognition-card:hover {
        transform: translateY(-8px);
    }

.recognition-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.recognition-card h5 {
    font-weight: 700;
}

.recognition-card p {
    color: #777;
    margin-bottom: 0;
}

/*==========================================
CLOSING
==========================================*/

.closing-section {
    padding: 90px 0;
    background: linear-gradient(135deg,#7f1d1d,#b91c1c);
}

.closing-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: white;
}

    .closing-box h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .closing-box p {
        font-size: 18px;
        line-height: 2;
        opacity: .95;
    }

    .closing-box blockquote {
        margin-top: 40px;
        font-size: 24px;
        font-style: italic;
        border-left: 5px solid rgba(255,255,255,.5);
        padding-left: 25px;
        text-align: left;
    }

/*==========================================
OFFICIAL ANNOUNCEMENT
==========================================*/

.announcement-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.announcement-header {
    background: linear-gradient(135deg,#8B0000,#C1121F);
    color: white;
    padding: 45px;
    text-align: center;
}

.announcement-badge {
    background: rgba(255,255,255,.18);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.event-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .event-strip span {
        background: white;
        color: #8B0000;
        padding: 10px 18px;
        border-radius: 30px;
        font-weight: 600;
    }

.announcement-body {
    padding: 40px;
}

    .announcement-body p {
        line-height: 1.9;
        color: #555;
        text-align: justify;
    }

/*==========================================
PRIZES
==========================================*/

.prize-card {
    background: white;
    border-radius: 20px;
    text-align: center;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .prize-card:hover {
        transform: translateY(-8px);
    }

.prize-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.prize-card h1 {
    color: #C1121F;
    font-size: 42px;
    font-weight: 700;
}

.gold {
    border-top: 6px solid #F4B400;
}

.silver {
    border-top: 6px solid #9CA3AF;
}

.bronze {
    border-top: 6px solid #B87333;
}

/*==========================================
SUMMARY
==========================================*/

.summary-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
}

    .summary-box h2 {
        font-size: 48px;
        color: #C1121F;
        font-weight: 700;
    }


/*=========================================
AAMA 2026 QUICK LINKS
=========================================*/

.updates-section {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    margin-bottom: 40px;
}

.updates-badge {
    display: inline-block;
    background: #e8f1ff;
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: .5px;
}

.update-card {
    display: block;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 30px;
    text-decoration: none;
    color: #212529;
    text-align: center;
    height: 100%;
    transition: .3s;
}

    .update-card:hover {
        background: #fff;
        color: #212529;
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0,0,0,.10);
        border-color: #c1121f;
    }

.update-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.update-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.update-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}


/*=========================================
BENEFICIARY TESTIMONIALS
=========================================*/

.quote-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    border-left: 6px solid #C1121F;
    min-height: 240px;
}

.quote-photo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.quote-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.quote-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
}

#testimonialCarousel {
    padding: 0 70px;
}

    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        width: 50px;
        opacity: 1;
    }

    #testimonialCarousel .carousel-control-prev-icon,
    #testimonialCarousel .carousel-control-next-icon {
        background-color: #C1121F;
        border-radius: 50%;
        padding: 18px;
        background-size: 55%;
    }

    #testimonialCarousel .carousel-control-prev {
        left: 0;
    }

    #testimonialCarousel .carousel-control-next {
        right: 0;
    }

    #testimonialCarousel .carousel-indicators {
        position: relative;
        margin-top: 25px;
    }

        #testimonialCarousel .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #C1121F;
            margin: 0 6px;
        }

@media(max-width:768px) {

    .quote-card {
        padding: 25px;
        text-align: center;
        min-height: auto;
    }

    .quote-photo {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .quote-card h5 {
        font-size: 20px;
    }

    .quote-card p {
        font-size: 16px;
    }

    #testimonialCarousel {
        padding: 0 15px;
    }
}