* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    padding-top: 80px;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    display: flex;
    left: 0;
    height: 90px;
    justify-content: space-between;
    text-align: left;
    align-items: center;
    background: white;
    position: fixed;
    padding: 0 50px;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

header h1 {
    color: #1809f5;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 120px;
    display: flex;
    height: 120px;
    align-items: center;
    gap: 20px;
}

nav {
    color: black;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    text-transform: uppercase;
    position: relative;
    font-weight: bold;
}

nav a:hover {
    color: #00aaff;
    transition: 0.3s;
}

.intro {
    background-image: url("images/1000516342.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 120vh;
    font-size: 30px;
    font-weight: bolder;
    text-align: center;
    color: white;
    justify-content: center;
    align-items: center;
    display: flex;
    text-transform: uppercase;
}

.cards {
    gap: 30px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.card {
    width: 280px;
    padding: 30px;
    height: auto;
    overflow: hidden;
    background: white;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.card:hover {
    transform: translateY(-10px);
}

.card h2 {
    font-size: 30px;
    color: black;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: bolder;
}

.card p {
    font-size: 17px;
    line-height: 1.8;
    word-wrap: break-word;
    margin-top: 20px;
    color: #070707;
}

.about {
    padding-top: 120px;
}

.about h1 {
    height: 80vh;
    min-height: 400px;
    width: 100%;
    background-repeat: no-repeat;
    margin: 0;
    background-image: url(images/1000516352.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 80px;
    font-weight: 900;
    color: white;
}

.about h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /*dark layer*/
    z-index: 2;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px;
    background-color: beige;
}

.about-images {
    flex: 1;
}

.about-images img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
}

.about-text h3 {
    font-size: 20px;
}

.about-text h4 {
    color: #001f3f;
    margin-top: 10px;
    font-weight: lighter;
}

@media(max-width:768px) {
    .about-container {
        flex-direction: column;
    }
}

.icon i {
    background-color: #0066ff;
    color: white;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.icon:hover i {
    transform: scale(1.15);
}

/* ===== FOOTER ===== */
footer {
    background-color: #39393a;
    color: white;
    padding: 50px 8% 20px;
}

.footer-container {
    display: flex;
    gap: 50px;
    text-align: left;
}

.footer-container div {
    flex: 1;
    text-align: center;
}

.footer-about h2,
.footer-contacts h3,
.footer-links h3 {
    margin-bottom: 20px;
    color: #ff7a00;
}

/* Quick links*/
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff7a00;
}

/* contact*/
.footer-contacts p {
    color: #00aaff;
    margin: 12px 0;
    font-weight: bolder;
}

/*Bottom part*/
.footer-bottom {
    text-align: center;
    border-top: 1px solid gray;
    margin-top: 40px;
    padding-top: 20px;
}

@media(max-width:768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== PROGRAMS ===== */
.program h1 {
    height: 140vh;
    min-height: 400px;
    width: 100%;
    background-repeat: no-repeat;
    margin: 0;
    background-image: url(images/1000518853.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 80px;
    font-weight: 900;
    color: white;
}

.programs-box {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: auto;
    background-color: antiquewhite;
    padding: 30px 0;
}

.programs-box img {
    width: 45%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.programs-text {
    width: 55%;
}

.programs-text h2 {
    font-size: 30px;
    color: #1d3b75;
}

.programs-text p {
    font-size: 18px;
    line-height: 1.6;
}

/*second one changes sides*/
.reverse {
    flex-direction: row-reverse;
}

/*for responsive*/
@media(max-width:768px) {

    .programs-box,
    .reverse {
        flex-direction: column;
    }

    .programs-box img,
    .programs-text {
        width: 100%;
    }
}

.btn {
    display: inline-block;
    background-color: #0057b8;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #003f85;
    transform: scale(1.05);
}

.key-programs {
    text-align: center;
    padding: 60px 10%;
}

.key-programs h1,
.key-programs h5 {
    font-size: 40px;
    color: #1d3b75;
    text-align: center;
    margin-bottom: 20px;
}

.key-programs p {
    font-size: 20px;
    text-align: center;
    margin: 0 auto;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 80px 8%;
    text-align: center;
    background: #f8f9fa;
}

.team h1 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #333;
}

/*cards container*/
.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    width: 250px;
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    margin-top: 15px;
    font-size: 24px;
    color: #222;
}

.team-card p {
    margin-top: 5px;
    color: #666;
    font-size: 18px;
}

/*phone*/
@media(max-width:768px) {
    .team {
        padding: 60px 20px;
    }

    .team h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-card img {
        height: 320px;
    }
}

/* ===== CONTACT ===== */
.contact-hero {
    background: url(images/1000516356.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /*dark layer*/
    z-index: 2;
}

.contact-hero h1 {
    color: #e6e1e1;
    font-size: 60px;
    font-weight: 700;
}

/*contact section*/
.contact-section {
    padding: 80px 8%;
    background: #dddada;
}

.contact-container {
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 35px;
}

.contact-container form {
    display: flex;
    flex-direction: column;
}

.contact-container input,
.contact-container textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    width: 100%;
}

.contact-container input:focus,
.contact-container textarea:focus {
    border-color: #066C22;
}

.contact-container button {
    background: #0a66c2;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-container button:hover {
    background: #084f96;
}

@media(max-width:768px) {
    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-container {
        padding: 30px 20px;
    }

    .contact-container h2 {
        font-size: 28px;
    }
}

/* ===== DONATION ===== */
.donate-section {
    background: #f4f6f8;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.donation-box {
    width: 100%;
    max-width: 650px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.donation-box h1 {
    text-align: center;
    color: #0a66c2;
    margin-bottom: 15px;
}

.donation-box p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.donation-box h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.amount-buttons,
.frequency,
.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.amount-buttons button,
.frequency button,
.payment-methods button {
    flex: 1;
    padding: 15px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 8px;
    font-size: 17px;
    transition: .3s;
}

.amount-buttons button:hover,
.frequency button:hover,
.payment-methods button:hover {
    background: #0a66c2;
    color: white;
}

.amount-buttons button.selected,
.frequency button.selected,
.payment-methods button.selected {
    background: #0a66c2;
    color: white;
}

.donation-box input {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.donate-btn {
    width: 100%;
    margin-top: 35px;
    padding: 18px;
    border: none;
    background: #0a66c2;
    color: white;
    font-size: 20px;
    border-radius: 50px;
    cursor: pointer;
}

.donate-btn:hover {
    background: #084f96;
}

@media(max-width:768px) {

    .amount-buttons,
    .frequency,
    .payment-methods {
        flex-direction: column;
    }

    .donation-box {
        padding: 25px;
    }

    .donation-box h1 {
        font-size: 30px;
    }
}

/* ===== BOARD SECTION ===== */
.board {
    padding: 80px 8%;
    text-align: center;
    background: #f8f9fa;
}

.board h1 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #333;
}

/*cards container*/
.board-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.board-card {
    width: 250px;
    text-align: center;
}

.board-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.board-card h3 {
    margin-top: 15px;
    font-size: 24px;
    color: #222;
}

.board-card p {
    margin-top: 5px;
    color: #666;
    font-size: 18px;
}

/*phone*/
@media(max-width:768px) {
    .board {
        padding: 60px 20px;
    }

    .board h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .board-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .board-card img {
        height: 320px;
    }
}