:root {
    --primary: #1e3a8a;
    --accent: #3b82f6;
    --highlight: #fb923c;
    --dark: #374151;
    --light: #f3f4f6;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}
.font-size-bigger{
    font-size: 22px;
}
.logo {
    position: absolute;
    top:3%;
    left: 37%;
    z-index: 1000;
    width: 25%;
}

/*.logo img {*/
/*   height: auto;*/
/*    width: 50%;*/
/*}*/

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider .slides {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
}

.hero-slider .slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 47, 75, 0.8), rgba(30, 58, 138, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 19%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;

}

.hero-content h1,
.hero-content p,
.hero-content a {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation-delay: 0s;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    animation-delay: 1.5s;
}

.hero-content .cta-button {
    animation-delay: 3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: #f5c600;
    color: #002F4B;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background:#8DD566;
    transform: scale(1.05);
}

section {
    padding: 40px 20px;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #002F4B;
    margin-bottom: 20px;
}

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

.image-section img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin: 20px 0;
}

.fact-boxes, .kit-boxes, .involve-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin-top: 10px;
}

.fact-card{
    background-color: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 280px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: left;
}

.kit-card{
    background-color: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 280px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: left;
}

.involve-card {
    background-color: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 280px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: left;
}

.fact-card:hover,
.kit-card:hover,
.involve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.fact-card p, .kit-card p, .involve-card p {
    font-size: 1rem;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.buttons a {
    background: #f5c600;
    color: #002F4B;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.buttons a:hover {
    background: #8DD566;
    transform: scale(1.05);
}


.partners-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.partners-buttons a {
    background: #002F4B;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partners-buttons a:hover {
    background: var(--primary);
    transform: scale(1.05);
}


.footer-highlight {
    background-color: #8DD566;
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    font-size: 1.1rem;
    margin-top: 2rem;
}

footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {

    .involve-card {
        max-width: 330px;
    }

    .font-size-bigger{
        font-size: 20px;
    }

    .logo {
        left: 10%;
        width: 80%;
    }

    .hero-content {
        padding-top:42%;
    }

    h2 {
        margin-bottom: 0px;
        font-size: 2rem;
    }

    section {
        padding: 20px 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: normal;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .buttons a {
        width: 100%;
        text-align: center;
    }

    .fact-boxes,
    .kit-boxes,
    .involve-boxes {
        flex-direction: column;
        align-items: center;
        gap: 13px;
    }
}

.why {
    background-color:#002F4B;
}

.our-mission-container {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 68%;
    margin: 0 auto;
}

.our-mission-image {
    flex: 1 1 300px;
    min-width: 300px;
}

.our-mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.our-mission-text {
    flex: 1 1 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-mission-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.corporate-partners{
    background-color:#8DD566;
    padding: 60px 20px;
}
.corporate-partners-desc{
    max-width: 900px; margin: 0 auto 40px; font-size: 1.15rem; color: #374151;
}
.corporate-partners-title{
    margin-bottom: 10px;
}
.campaign-partners{
    padding: 60px 20px;
    background: #f3f4f6;
}
.campaign-partners-title{
    text-align: center;
    color: #002F4B;
    margin-bottom: 10px;
}
.campaign-partners-desc{
    text-align: center; font-size: 1.1rem; max-width: 800px;
    margin: 0 auto 40px; color: #374151;
}
.partner-image{
    max-height: 80px; margin: auto;
}
.lsbu-partner-image{
    max-height: 55px; margin-left: 2%;
}
.Corporates{
    width: 100%; margin-bottom: 10px;
}
.Volunteers{
    width: 100%; margin-bottom: 10px;
}
.school-and-ngos{
    width: 100%; margin-bottom: 10px;
}
.Corporates-heading{
    font-size: 1.2rem; font-weight: 600; color: #002F4B; margin-bottom: 10px;
}
.involve-boxes{
    gap:30px
}
.our-goal{
    margin-top: 30px; font-size: 1.1rem; max-width: 800px; margin-left: auto;
    margin-right: auto;
}
.partner-slider{
    display: block;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .partner-slider{
        display: none;
    }
    .lsbu-partner-image {
        max-height: 50px;
        margin-left: 0px;
        margin-top: 1%;
    }
    .footer-highlight {
        margin-top: 1rem;
    }
    .involve-boxes{
        gap:15px
    }
    .Corporates-heading{
        margin-bottom: 0px;
    }
    .partner-image{
        max-height: 70px;
    }
    .campaign-partners{
        padding: 20px 20px;
    }
    .corporate-partners-desc{
        font-size: 1rem;
    }
    .corporate-partners-title{
        font-size: 1.8rem;
    }
    .corporate-partners{
        padding: 20px 20px;
    }
    .our-mission-container {
        flex-direction: column;
        max-width: 100%;
    }
    .our-mission-text {
        padding: 15px;
    }
    .our-mission-text {
        flex: none;
        justify-content: flex-start;
    }

    .our-mission-text p {
        font-size: 1rem;
    }
}

.partner-slider img {
    transition: filter 0.3s ease;
}
