* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}




/* WHAT WE DO SECTION */

.hwhat-we-do-section {
    position: relative;
}

/* TOP */

.hwhat-we-do-top {
    background: #f8f7f4;

    padding: 90px 0 70px;
}

/* HEADER */

.hwhat-we-do-header {
    text-align: center;
    margin-bottom: 55px;
}

.hwhat-we-do-tag {
    display: inline-block;
    color: #b58a32;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hwhat-we-do-header h2 {
    font-size: 52px;
    line-height: 1.1;
    color: #101010;
    font-weight: 700;
}

.hcontainer {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* GRID */

.hmission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */

.hmission-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}

.hmission-card:hover {
    transform: translateY(-8px);
}

/* ICON */

.hmission-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 22px;
}

.green {
    background: #0d7a4e;
}

.blue {
    background: #244db7;
}

.orange {
    background: #d57b2d;
}

.purple {
    background: #5c2ea8;
}

/* TEXT */

.hmission-card h3 {
    font-size: 24px;

    color: #111;

    margin-bottom: 15px;
}

.hmission-card p {
    font-size: 15px;
    line-height: 1.8;

    color: #555;

    margin-bottom: 24px;
}

/* LINK */

.hmission-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #0d1d35;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    margin-bottom: 28px;
}

/* IMAGE */

.hmission-image {
    margin: 28px -26px -26px;
    line-height: 0;

}

.hmission-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;

}

/* =========================================
   IMPACT SECTION
========================================= */

.impact-section {
    background: linear-gradient(135deg, #021529 0%, #041f39 50%, #031527 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.impact-tag {
    display: inline-block;

    color: #d9b45b;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.impact-section h2 {
    font-size: 48px;
    line-height: 1.2;

    max-width: 900px;

    margin: 0 auto 55px;
}

/* GRID */

.impact-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 24px;

    margin-bottom: 50px;
}

/* ITEM */

.impact-item {
    display: flex;
    align-items: center;
    gap: 14px;

    justify-content: center;
}

/* ICON */

.impact-icon {
    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d9b45b;

    font-size: 20px;
}

/* TEXT */

.impact-item h3 {
    font-size: 28px;

    margin-bottom: 4px;
}

.impact-item p {
    font-size: 14px;

    color: rgba(255, 255, 255, 0.7);
}

/* BUTTON */

.impact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    border-radius: 12px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.impact-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .hmission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 35px;
    }

    .hwhat-we-do-header h2,
    .impact-section h2 {
        font-size: 40px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hwhat-we-do-top {
        padding: 70px 0 50px;
    }

    .hcontainer,
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hmission-image img {
        height: 320px;
        object-fit: contain;
        background: #f7f7f7;
    }

    .hmission-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .hwhat-we-do-header {
        margin-bottom: 40px;
    }

    .hwhat-we-do-header h2 {
        font-size: 34px;
    }

    .hmission-card {
        padding: 22px 22px 0;
    }

    .hmission-card h3 {
        font-size: 22px;
    }

    .impact-section {
        padding: 60px 0;
    }

    .impact-section h2 {
        font-size: 32px;

        margin-bottom: 40px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px 20px;
    }

    .impact-item {
        flex-direction: column;
        text-align: center;
        padding: 18px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
    }

    .impact-item h3 {
        font-size: 24px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hwhat-we-do-header h2,
    .impact-section h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hmission-image img {
        height: 230px;
    }
}

/* =========================
   GLOBAL
========================= */

.section-tag {
    display: inline-block;

    background: rgba(248, 196, 79, 0.1);

    color: #f8c44f;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 820px;

    margin: auto auto 70px;
}

.section-header h2 {
    font-size: 56px;
    line-height: 1.2;

    color: #071c2f;

    margin-bottom: 20px;
}

.section-header p {
    color: #5f6c78;

    font-size: 18px;
}

/* =========================
   ABOUT INTRO
========================= */

.about-intro-section {
    padding: 120px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 34px;
    object-fit: cover;
}

.about-intro-content h2 {
    font-size: 52px;
    line-height: 1.2;

    color: #071c2f;

    margin-bottom: 30px;
}

.about-intro-content p {
    color: #5b6572;

    font-size: 18px;
    line-height: 2;

    margin-bottom: 24px;
}

/* =========================
   MISSION
========================= */

.mission-section {
    padding: 120px 0;

    background: #f8fbff;
}

.mission-ayah-box {
    background: #071c2f;

    padding: 50px;

    border-radius: 34px;

    text-align: center;

    margin-bottom: 70px;
}

.mission-ayah-text {
    color: #fff;

    font-size: 34px;
    line-height: 1.7;

    margin-bottom: 20px;
}

.mission-ayah-source {
    color: #f8c44f;

    font-weight: 700;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}

.mission-card {
    background: #fff;

    padding: 40px 32px;

    border-radius: 30px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.mission-card i {
    width: 80px;
    height: 80px;

    border-radius: 22px;

    background: #071c2f;
    color: #f8c44f;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    margin-bottom: 28px;
}

.mission-card p {
    color: #5b6572;

    line-height: 1.9;

    font-size: 16px;
}

/* =========================
   DONATION IMPACT
========================= */

.donation-impact-section {
    padding: 120px 0;
}

.impact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
    align-items: center;
}

.impact-left h2 {
    font-size: 54px;
    line-height: 1.2;

    color: #071c2f;

    margin-bottom: 30px;
}

.impact-left p {
    color: #5b6572;

    font-size: 18px;
    line-height: 2;

    margin-bottom: 24px;
}

.hadith-box {
    background: #071c2f !important;

    padding: 40px;

    border-radius: 30px;

    margin-top: 40px;
}

.hadith-text {
    color: #fff;

    font-size: 30px;
    line-height: 1.7;

    margin-bottom: 20px;
}

.hadith-source {
    color: #f8c44f;

    font-weight: 700;
}

.impact-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.impact-stat-card {
    background: #071c2f;

    padding: 40px 30px;

    border-radius: 28px;
}

.impact-stat-card h3 {
    font-size: 28px;

    color: #fff;

    margin-bottom: 18px;
}

.impact-stat-card p {
    color: #fff;

    line-height: 1.8;
}

/* JOIN */

.join-section {
    padding: 120px 0;
    background: #f8f7f4;
}

.join-box {
    max-width: 900px;
    margin: auto;

    text-align: center;
}

.join-box h2 {
    font-size: 58px;
    line-height: 1.2;

    color: #071c2f;

    margin-bottom: 30px;
}

.join-box p {
    color: #5b6572;

    font-size: 19px;
    line-height: 2;

    margin-bottom: 28px;
}

.jazakallah-box {
    background: #071c2f;

    color: #fff;

    padding: 35px;

    border-radius: 26px;

    font-size: 26px;
    font-weight: 700;

    margin: 45px 0;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 240px;

    padding: 20px 38px;

    border-radius: 50px;

    background: #f8c44f;
    color: #071c2f;

    text-decoration: none;

    font-weight: 700;

    transition: 0.35s ease;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .about-hero-content h1,
    .about-intro-content h2,
    .section-header h2,
    .impact-left h2,
    .vision-box h2,
    .join-box h2 {
        font-size: 44px;
    }

    .about-intro-grid,
    .impact-wrapper {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .about-hero {
        padding: 160px 0 120px;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-hero-content p {
        font-size: 17px;
    }

    .about-hero-buttons {
        flex-direction: column;
    }

    .about-btn {
        width: 100%;
    }

    .about-intro-section,
    .mission-section,
    .donation-impact-section,
    .vision-section,
    .join-section {
        padding: 80px 0;
    }

    .about-intro-content h2,
    .section-header h2,
    .impact-left h2,
    .vision-box h2,
    .join-box h2 {
        font-size: 34px;
    }

    .mission-grid,
    .impact-right {
        grid-template-columns: 1fr;
    }

    .mission-ayah-text,
    .hadith-text {
        font-size: 24px;
    }

    .vision-box p,
    .join-box p,
    .about-intro-content p,
    .impact-left p {
        font-size: 16px;
    }

}