@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Noto+Sans&family=Roboto:wght@300&display=swap');

:root {
    --primary: #e00000;
    /* --secondary: #ffbf00; */
    --secondary: #fe5800;
    --dark: #111;
    --light: #f9f9f9;
    --whitecolor: white;
}

body {}

.title {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin-top: 9.5rem !important;
    margin-left: 10px;
    margin-right: 10px;
}

.mission {
    margin-top: 5px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 20px;
}

.vision {
    margin-top: 5px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 20px;
}

.underline-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.underline {
    bottom: 0;
    height: 4px;
    background-color: var(--secondary);
    animation: slide 3s infinite;
}

.abt h1,
.abt h2,
.abt h3 {
    color: var(--primary);
    margin-bottom: 16px;
}

.abt h2 {
    font-size: 2rem;
    border-left: 5px solid var(--secondary);
    padding-left: 12px;
}

.quote {
    font-style: italic;
    font-weight: 600;
    color: var(--dark);
    border-left: 4px solid var(--primary);
    padding-left: 16px;
    margin: 30px 0;
}

.abt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 9rem;
    height: 90vh;
}


.abt h1 {
    font-size: 3rem;
    color: var(--secondary);
}

.abt p {
    font-size: 1.1rem;
    margin-top: 20px;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-box {
    background: var(--whitecolor);
    padding: 30px;
    border-radius: 8px;
    border-top: 5px solid var(--secondary);
}

.about {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whitecolor);
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.about-content {
    position: relative;
    z-index: 3;
    margin-top: -3rem;
    /* max-width: 900px; */
    /* padding: 0 20px; */
}

.about-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
}

.about {
    position: relative;
    margin-top: 9rem;
    height: 100vh;
    /* height: 91vh; */
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}


.about .container {
    transform: translateY(0);
    transition: transform 0.1s linear;
    position: relative;
    z-index: 2;
}

.value-box h3 {
    margin-bottom: 12px;
}

.movement p {
    color: var(--whitecolor);
}

.movement-section {
    margin-top: 9rem;
    background: #ffc180;
    padding: 2rem 0rem;

    img {
        width: 100%;
        max-width: 500px;
    }
}

.movement-section h2 {
    color: var(--secondary);
    border-color: var(--secondary);
    font-size: 2.5rem;
    border-left: 6px solid var(--primary);
    padding-left: 2rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.movement-call {
    border-left: 4px solid var(--primary);
    padding-left: 2rem;
}

.movement-call ul {
    margin-top: 10px;
    list-style: none;
    padding-left: 0;
}

.movement-call li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

.movement-call li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--secondary);
}

blockquote {
    border-left: 5px solid var(--primary);
    font-style: italic;
    font-weight: 600;
    padding-left: 2rem;
}

.leader-card {
    display: flex;
    gap: 2rem;
    margin-top: 30px;


}

.leader-content {
    color: rgb(0, 0, 0);
}

.leader-img {
    color: rgb(0, 0, 0);
    margin-top: 4rem;

    h3 {
        margin-top: 0.5rem;
    }

    img {
        max-width: 400px;
        border-radius: 1rem;
    }
}

.leaders {
    background: #eef4ff;
    padding: 1rem 0rem;
}

@media (min-width: 768px) {
    .custom-reverse-columns .row {
        display: flex;
        flex-direction: row-reverse;
    }
}

@media (max-width:992px) {
    .leader-card {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .leader-img {
        margin-top: 0rem;
    }

    .leaders .container .leader-card:last-child {
        flex-direction: column-reverse;
    }
}

@media (max-width: 576px) {
    .leader-img {
        img {
            padding-inline: 1rem;
            max-width: max-content;
            width: 100%;
        }
    }
}