* {
    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;
}

/* Nav-Menu */
.header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo img {
    width: 165px;
    display: block;
}

/* DESKTOP NAV */

.desktop-nav {
    flex: 1;
    margin-left: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a,
.dropdown-toggle {
    text-decoration: none;
    color: #2563eb;
    font-size: 15px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.nav-links a:hover,
.dropdown-toggle:hover {
    color: #2563eb;
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 55px;
    left: 0;
    background: #fff;
    width: 260px;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f7f7f7;
}

/* BUTTON */

.donate-btn {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.donate-btn:hover {
    background: #fff;
    border: 2px solid #2563eb;
    color: #2563eb;
}

/* MOBILE TOGGLE */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #2563eb;
    border-radius: 5px;
}

/* MOBILE MENU */

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #2563eb;
}


.mobile-submenu {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
}

.mobile-submenu li {
    margin-bottom: 10px;
}

.mobile-donate-btn {
    display: block;
    text-align: center;
    background: #2563eb;
    color: #fff !important;
    padding: 14px;
    border-radius: 50px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .desktop-nav,
    .donate-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

}


/* =========================
   DONATE BANNER SECTION
========================= */

.donate-banner-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.donate-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="30" r="1" fill="rgba(255,255,255,0.08)"/></svg>');
    opacity: 0.3;
}

/* BANNER */

.donate-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* TAG */

.donate-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 40px;

    /* border-radius: 100px; */

    background: #fff;

    color: #062c43;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);

    transition: 0.35s ease;
}

.donate-tag:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25);
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .donate-banner-section {
        padding: 70px 20px;
    }

    .donate-tag {
        font-size: 18px;
        padding: 16px 34px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .donate-banner-section {
        padding: 60px 16px;
    }

    .donate-tag {
        width: 100%;

        text-align: center;

        font-size: 16px;
        line-height: 1.4;

        padding: 16px 20px;
    }

}

/* =========================
   DONATION FORM
========================= */

.donation-form-section {
    padding: 100px 20px;
    background: #f7f7f7;
}

.donation-form-wrapper {
    width: 100%;
    max-width: 900px;

    margin: auto;

    background: #ffffff;

    padding: 50px;

    border-radius: 32px;

    box-shadow:
        0 15px 60px rgba(0, 0, 0, 0.08);
}

/* LABEL */

.donation-label,
.form-group label {
    display: block;

    font-size: 15px;
    font-weight: 700;

    color: #062c43;

    margin-bottom: 12px;
}

/* AMOUNT */

.donation-input-wrap {
    position: relative;
}

.currency-symbol {
    position: absolute;

    left: 24px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 24px;
    font-weight: 700;

    color: #062c43;
}

#donationAmount {
    width: 100%;
    height: 75px;

    border: 2px solid #e5e5e5;
    border-radius: 18px;

    padding: 0 24px 0 55px;

    font-size: 28px;
    font-weight: 700;

    outline: none;

    transition: 0.3s ease;
}

#donationAmount:focus {
    border-color: #2563eb;
}

/* BUTTONS */

.donation-levels {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin-top: 30px;
}

.amount-btn {
    height: 60px;

    border: 2px solid #d9d9d9;
    border-radius: 16px;

    background: #fff;

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

/* OPTIONS */

.donation-options {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 16px;
    color: #444;
}

.checkbox-wrap input {
    width: 18px;
    height: 18px;
}

/* FORM */

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.form-group {
    margin-top: 28px;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 62px;

    border: 2px solid #e4e4e4;
    border-radius: 16px;

    padding: 0 20px;

    font-size: 16px;

    outline: none;

    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2563eb;
}

/* TOTAL */

.donation-total-box {
    margin-top: 40px;

    padding: 28px;

    border-radius: 24px;

    background: #f9f9f9;
}

.total-row {
    display: flex;
    justify-content: space-between;

    margin-bottom: 14px;

    font-size: 17px;
}

.fee-row {
    color: #777;
}

.grand-total {
    margin-top: 20px;
    padding-top: 20px;

    border-top: 2px solid #e6e6e6;

    font-size: 22px;
    font-weight: 700;

    color: #2563eb;
}

/* OTHER AMOUNT BUTTON */

.other-amount-btn {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* CARD INPUT */

.card-input-wrap {
    position: relative;
}

.card-input-wrap input {
    padding-right: 70px;
}

.card-logo {
    position: absolute;

    top: 50%;
    right: 20px;

    transform: translateY(-50%);

    font-size: 28px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* BUTTON */

.donation-submit-btn {
    width: 100%;
    height: 70px;

    margin-top: 35px;

    border: none;
    border-radius: 20px;

    background: #2563eb;
    color: #fff;

    font-size: 20px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.donation-submit-btn :hover {
    background: #2563eb;
}

.payment-note {
    font-size: 20px;
    font-weight: 500;
    padding: 20px;
    text-align: center;
}

/* SECURE PAYMENT BOX */

.secure-payment-box {
    display: flex;
    align-items: center;

    gap: 12px;

    background: #eef8ff;

    border: 2px solid #d6ecff;

    padding: 18px 22px;

    border-radius: 18px;

    margin-top: 35px;
    margin-bottom: 25px;
}

.secure-icon {
    font-size: 22px;
}

.secure-text {
    font-size: 15px;
    font-weight: 600;

    color: #062c43;
}

/* =========================
   CARD LOGO
========================= */

.card-input-wrap {
    position: relative;
}

.card-input-wrap input {
    padding-right: 90px;
}

.card-logo-image {
    position: absolute;

    top: 50%;
    right: 18px;

    transform: translateY(-50%);

    width: 52px;
    height: auto;

    object-fit: contain;
}

/* =========================
   CARD EXTRA GRID
========================= */

.card-extra-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .secure-payment-box {
        padding: 16px 18px;
        border-radius: 16px;
    }

    .secure-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .card-extra-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .card-logo-image {
        width: 45px;
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .donation-form-wrapper {
        padding: 40px;
    }

    .donation-levels {
        grid-template-columns:
            repeat(3, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .donation-form-section {
        padding: 80px 15px;
    }

    .donation-form-wrapper {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .donation-levels {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #donationAmount {
        height: 65px;
        font-size: 24px;
    }

    .amount-btn {
        height: 55px;
        font-size: 16px;
    }

    .donate-btn {
        height: 62px;
        font-size: 18px;
    }

}

.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

.donation-submit-btn.loading .btn-text {
    display: none;
}

.donation-submit-btn.loading .btn-loader {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.toast-message {
    position: fixed;
    right: 20px;
    top: 10px;

    background: #d9534f;
    color: #fff;

    padding: 14px 18px;
    border-radius: 8px;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
    z-index: 9999;
}

.toast-message.show {
    opacity: 1;
    visibility: visible;
}

/* =========================
   CRYPTO SECTION
========================= */

.crypto-payment-section {
    margin-top: 60px;
    padding: 70px 40px;
    background: #071c2f;
    border-radius: 30px;
    overflow: hidden;
}

.crypto-header {
    text-align: center;
    margin-bottom: 50px;
}

.crypto-tag {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.crypto-header h3 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
}

.crypto-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}


/* TOGGLE BUTTON */

.crypto-toggle-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.crypto-toggle-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.crypto-toggle-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* GRID */

.crypto-grid {
    display: none;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    animation: fadeDown 0.4s ease;
}

/* ACTIVE */

.crypto-grid.active {
    display: grid;
}

/* CARD */

.crypto-wallet {
    background: #0d2740;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.crypto-wallet:hover {
    transform: translateY(-8px);
}

/* ICON */

.crypto-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
}

.crypto-icon.btc {
    background: #f7931a;
}

.crypto-icon.eth {
    background: #627eea;
}

.crypto-icon.usdc {
    background: #2775ca;
}

.crypto-icon.usdt {
    background: #26a17b;
}

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* TITLE */

.crypto-wallet h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
}

/* ADDRESS */

.wallet-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    background: rgba(255, 255, 255, 0.05);

    border-radius: 14px;

    padding: 14px;
    margin-bottom: 30px;
}

.wallet-address code {
    color: #fff;
    font-size: 12px;
    word-break: break-all;
    text-align: left;
    flex: 1;
}

.wallet-address button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

.wallet-address button:hover {
    background: #0b5ed7;
}

/* QR */

.qr-code img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    background: #fff;
    padding: 10px;
}

.qr-code p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-size: 14px;
}

/* TABLET */

@media(max-width:991px) {

    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .crypto-payment-section {
        padding: 50px 20px;
    }

    .crypto-grid {
        grid-template-columns: 1fr;
    }

    .crypto-header h3 {
        font-size: 30px;
    }

}

/* Build Alafasy Academy */


/* ACADEMY HERO SECTION */

.academy-hero {
    position: relative;
    padding: 190px 0 150px;
    overflow: hidden;
    background: linear-gradient(rgba(2, 12, 24, 0.84), rgba(2, 12, 24, 0.75)), url('../images/academy-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.academy-hero-overlay {
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.2), transparent 40%);
}

.academy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.academy-tag {
    display: inline-block;
    background: rgba(13, 110, 253, 0.12);
    border: 1px solid rgba(13, 110, 253, 0.3);
    color: #61adff;

    padding: 12px 24px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 28px;
}

.academy-hero-content h1 {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 35px;
}

/* QUOTE */

.academy-quote {
    border-left: 4px solid #0d6efd;
    padding-left: 25px;
    margin-bottom: 35px;
}

.academy-quote p {
    font-size: 26px;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    margin-bottom: 10px;
}

.academy-quote span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.academy-hero-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* BUTTONS */

.academy-hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 45px;
    margin-bottom: 70px;
}

.academy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;

    padding: 18px 32px;

    border-radius: 14px;

    text-decoration: none;
    font-weight: 700;

    transition: 0.35s ease;
}

.academy-btn.primary {
    background: #0d6efd;
    color: #fff;
}

.academy-btn.primary:hover {
    background: #0b5ed7;
    transform: translateY(-3px);
}

.academy-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.academy-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* IMPACT */

.academy-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    padding: 32px;
    border-radius: 24px;
}

.impact-card h3 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 10px;
}

.impact-card p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* =========================
   BUILD ACADEMY SECTION
========================= */

.academy-build-section {
    padding: 110px 0;
    background: #f7fbff;
}

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;

    padding: 10px 22px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 56px;
    line-height: 1.2;
    color: #071c2f;
}

.academy-vision-wrapper {
    max-width: 1200px;
    margin: auto;
}

.academy-vision-text {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 70px;
}

.academy-vision-text p {
    font-size: 19px;
    line-height: 1.9;
    color: #5c6673;
    margin-bottom: 20px;
}

.highlight-line {
    font-size: 34px !important;
    font-weight: 800;
    color: #071c2f !important;
}

/* COUNTRIES */

.academy-country-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;

    margin: 40px 0;
}

.country-box {
    background: #fff;
    border: 1px solid rgba(13, 110, 253, 0.08);

    padding: 14px 24px;
    border-radius: 14px;

    font-weight: 700;
    color: #071c2f;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

/* BUILD GRID */

.academy-build-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.academy-build-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 28px;

    text-align: center;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);

    transition: 0.35s ease;
}

.academy-build-card:hover {
    transform: translateY(-8px);
}

.build-icon {
    width: 85px;
    height: 85px;

    margin: 0 auto 25px;

    border-radius: 24px;

    background: #0d6efd;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
}

.academy-build-card h3 {
    font-size: 24px;
    color: #071c2f;
    margin-bottom: 15px;
}

.academy-build-card p {
    color: #5b6572;
    line-height: 1.8;
}

/* HADITH */

.academy-hadith-box {
    margin-top: 90px;

    background: #071c2f;
    color: #fff;

    padding: 70px 50px;
    border-radius: 32px;

    text-align: center;
}

.arabic-text {
    font-size: 34px;
    line-height: 2;
    margin-bottom: 35px;
}

.hadith-translation {
    font-size: 22px;
    line-height: 1.9;
    max-width: 900px;
    margin: auto auto 20px;
}

.academy-hadith-box span {
    color: rgba(255, 255, 255, 0.7);
}

/* FINAL MESSAGE */

.academy-final-message {
    max-width: 950px;
    margin: 80px auto 0;
    text-align: center;
}

.academy-final-message p {
    font-size: 19px;
    line-height: 1.9;
    color: #5b6572;
    margin-bottom: 20px;
}

.academy-final-message h3 {
    font-size: 42px;
    line-height: 1.4;
    color: #071c2f;
    margin: 45px 0 25px;
}

/* TABLET */

@media(max-width:991px) {

    .academy-hero-content h1 {
        font-size: 52px;
    }

    .academy-impact-grid,
    .academy-build-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 42px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .academy-hero {
        padding: 150px 0 110px;
    }

    .academy-hero-content h1 {
        font-size: 38px;
    }

    .academy-quote p {
        font-size: 22px;
    }

    .academy-hero-text,
    .academy-vision-text p,
    .academy-final-message p {
        font-size: 16px;
    }

    .academy-impact-grid,
    .academy-build-grid {
        grid-template-columns: 1fr;
    }

    .academy-btn {
        width: 100%;
    }

    .section-header h2,
    .academy-final-message h3 {
        font-size: 34px;
    }

    .highlight-line {
        font-size: 28px !important;
    }

    .arabic-text {
        font-size: 24px;
        line-height: 1.8;
    }

    .hadith-translation {
        font-size: 18px;
    }

    .academy-hadith-box {
        padding: 50px 25px;
    }

}

/* ==========================
   ACADEMY MAP
========================== */

.academy-map-section {
    margin: 40px 0;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, .05);
}

.academy-map-header {
    text-align: center;
    margin-bottom: 35px;
}

.academy-map-header span {
    display: block;
    color: #c8a45d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.academy-map-header h3 {
    color: #123c35;
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.academy-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.academy-world-map {
    width: 100%;
    display: block;
    opacity: .55;
    /* filter: grayscale(100%); */
}

.academy-map-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.academy-marker circle {
    fill: #0f5b4f;
    stroke: #fff;
    stroke-width: 3;

    filter: drop-shadow(0 0 10px rgba(15, 91, 79, .35));
}

.academy-marker text {
    fill: #0f5b4f;
    font-size: 15px;
    font-weight: 700;
    text-anchor: middle;
}

.academy-marker:hover circle {
    fill: #c8a45d;
}

/* REGION CARDS */

.academy-regions-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.academy-region-card {
    background: #fff;
    border-radius: 18px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: .3s;
    overflow: hidden;
}


.academy-region-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12), 0 8px 20px rgba(0, 0, 0, .08);
}

.academy-region-image {
    width: 100%;
    height: 130px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.academy-region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-fit: cover;

    transition: transform .6s ease;
}

.academy-region-card:hover .academy-region-image img {
    transform: scale(1.08);
}

.academy-region-card h4 {
    padding: 18px 15px;
    margin: 0;

    text-align: center;

    color: #123c35;
    font-size: 18px;
    font-weight: 700;
}

/* TABLET */

@media(max-width:991px) {

    .academy-regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .academy-map-header h3 {
        font-size: 34px;
    }
}

/* MOBILE */

@media(max-width:768px) {

    .academy-map-section {
        padding: 20px 15px;
    }

    .academy-map-wrapper {
        width: 100%;
    }

    .academy-world-map {
        width: 100%;
    }

    .academy-regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .academy-map-header h3 {
        font-size: 28px;
    }

    .academy-marker text {
        font-size: 10px;
        font-weight: 700;
    }

    .academy-marker circle {
        r: 10;
    }
}



/* Spread The Message Page */

/* =========================
   HERO SECTION
========================= */

.mobile-hero-card {
    display: none;
}

.message-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #06131d 0%, #081c2a 45%, #0b2233 100%);
    padding: 120px 0 40px;
    color: #fff;
    z-index: 1;
}

/* OVERLAY */

.message-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 255, 170, 0.08), transparent 35%), radial-gradient(circle at bottom right, rgba(0, 170, 255, 0.08), transparent 35%);
    z-index: -1;
}


/* GLOW */

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    z-index: -1;
}

.glow-one {
    width: 350px;
    height: 350px;
    background: #00d9a6;
    top: -120px;
    left: -100px;
}

.glow-two {
    width: 280px;
    height: 280px;
    background: #2c9fff;
    right: -80px;
    bottom: -100px;
}

/* GRID */

.message-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.1fr 1fr;

    gap: 60px;
    align-items: center;

}

/* LEFT */

.message-left {
    position: relative;
    /* max-width: 620px; */
    z-index: 2;
}

/* TAG */

.message-tag {
    display: inline-flex;
    align-items: center;

    padding: 10px 18px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);

    color: #9df7d9;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 25px;
}

/* TITLE */

.message-left h1 {
    color: #fff;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -2px;

}

.message-left h1 span {
    color: #f8c44f;
    display: block;
    /* padding: 20px; */
}

/* SUBTITLE */

.hero-subtitle {
    color: #d7f5ec;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* DESCRIPTION */

.hero-description {
    color: rgba(255, 255, 255, 0.74);

    font-size: 17px;
    line-height: 1.9;
    text-align: left;

    max-width: 420px;

    margin-bottom: 35px;
}

/* BUTTONS */

.message-buttons {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    gap: 16px;

    margin-bottom: 35px;
}

.message-btn {
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.35s ease;
    font-weight: 600;
    border-radius: 16px;
}

/* PRIMARY */

.message-btn.primary {
    background: linear-gradient(135deg, #00d9a6, #00b1ff);
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0, 217, 166, 0.25);
}

.message-btn.primary:hover {
    transform: translateY(-4px);
}

/* SECONDARY */

.message-btn.secondary {
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #fff;

    backdrop-filter: blur(10px);
}

.message-btn.secondary:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.08);
}

.audio-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 16px 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.audio-btn i {
    margin-right: 10px;
}

/* SADAQAH */

.sadaqah-box {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    margin-bottom: 40px;
    backdrop-filter: blur(14px);
}

.sadaqah-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #00d9a6, #00b1ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sadaqah-text {
    color: rgba(255, 255, 255, 0.82);

    line-height: 1.8;

    font-size: 15px;
}

/* STATS */

.message-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.message-stat {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.message-stat i {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 166, 0.15);
    color: #f8c44f;
    font-size: 20px;
}

.message-stat strong {
    display: block;
    color: #fff;
    font-size: 17px;
}

.message-stat span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;

}

/* RIGHT */

.message-right {
    position: relative;
    min-height: 760px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: visible;
}

/* SCHOLAR */

.scholar-image {
    position: absolute;
    right: -220px;
    bottom: 20px;
    z-index: 2;
}

.scholar-image::after {
    content: "";
    position: absolute;
    right: 80px;
    top: 120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 255, 200, 0.38) 0%, rgba(0, 180, 255, 0.22) 40%, rgba(0, 0, 0, 0) 75%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.95);
}

/* MIRROR REFLECTION */

.scholar-image::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 520px;
    left: -120px;
    top: 40px;
    background-image: url("images/alafasy-nbg.png");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.13;
    transform: scaleX(-1);
    filter: blur(1px) saturate(0) brightness(1.4);
    z-index: -2;
}

.scholar-image img {
    width: 620px;
    max-width: unset;
    display: block;
    position: relative;
    z-index: 2;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 255, 200, 0.18)) drop-shadow(0 25px 55px rgba(0, 0, 0, 0.45));
}

/* PHONES */

.phone-stack {
    position: absolute;

    /* right: 245px;
    bottom: -35px; */

    display: flex;
    gap: 28px;

    z-index: 4;
}

.phone-stack::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    left: 30px;
    top: 30px;
    background: radial-gradient(circle, rgba(0, 255, 200, 0.55) 0%, rgba(0, 217, 255, 0.25) 38%, rgba(0, 0, 0, 0) 72%);
    filter: blur(25px);
    z-index: -1;
}

.phone-stack::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 200, 0.45);
    left: 50px;
    top: 50px;
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.5), inset 0 0 25px rgba(0, 255, 200, 0.2);
    z-index: -1;
}

.hero-phone-mockup {
    position: absolute;
    width: 640px;
    height: auto;
    right: 170px;
    bottom: 230px;
    z-index: 3;
    filter: drop-shadow(0 0 25px rgba(0, 255, 200, 0.35)) drop-shadow(0 35px 45px rgba(0, 0, 0, 0.45));
    transition: 0.4s ease;
}

/* LEFT PHONE */

.phone-one {
    transform: rotate(18deg);

    margin-bottom: 90px;
}

/* RIGHT PHONE */

.phone-two {
    transform: rotate(18deg);

    margin-bottom: 20px;
}

/* =========================================
   MOBILE ISLAMIC SCROLL BAR
========================================= */

.mobile-dua-scroll {
    display: none;
}

@media (max-width: 1100px) {

    .message-hero-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .message-right {

        width: 100%;
        min-height: auto;

        display: flex;
        justify-content: center;
        align-items: flex-end;

        position: relative;

        margin-top: -50px;
        margin-bottom: 140px;
    }


    .message-left {
        margin-top: 0;
    }



    .mobile-dua-scroll {
        display: block;
        width: 100%;
        margin-top: -10px;
        margin-bottom: 12px;
        overflow: hidden;
        border-radius: 20px;
        padding: 16px 0;
        background: linear-gradient(135deg, rgba(0, 217, 166, 0.10), rgba(0, 177, 255, 0.10));
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(14px);
        box-shadow: 0 0 30px rgba(0, 217, 166, 0.12), 0 0 60px rgba(0, 177, 255, 0.08);
    }

    /* TOP + BOTTOM GLOW LINE */

    .mobile-dua-scroll::before,
    .mobile-dua-scroll::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        background: linear-gradient(to right, transparent, rgba(0, 255, 170, 0.6), rgba(255, 196, 79, 0.7), transparent);
    }

    .mobile-dua-scroll::before {
        top: 0;
    }

    .mobile-dua-scroll::after {
        bottom: 0;
    }

    /* SCROLL TRACK */

    .mobile-dua-track {
        display: flex;
        align-items: center;

        gap: 90px;

        width: max-content;

        animation: islamicScroll 28s linear infinite;
    }

    /* EACH ITEM */

    .dua-item {
        display: flex;
        align-items: center;
        gap: 22px;
        white-space: nowrap;
        padding-right: 70px;
    }

    /* ARABIC */

    .dua-arabic {
        font-size: 24px;
        font-weight: 700;
        color: #fff;
        direction: rtl;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 0 25px rgba(0, 255, 170, 0.18);
    }

    /* ENGLISH */

    .dua-english {
        font-size: 15px;
        font-weight: 500;
        color: #f8c44f;
        letter-spacing: 0.3px;
    }

    /* SCROLL ANIMATION */

    @keyframes islamicScroll {

        0% {
            transform: translateX(100%);
        }

        10% {
            transform: translateX(0%);
        }

        20% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .mobile-dua-scroll {
        padding: 15px 0;

        border-radius: 20px;

        margin-top: 0;
        margin-bottom: 28px;
    }

    .mobile-dua-track {
        gap: 70px;
    }

    .dua-item {
        gap: 18px;
    }

    .dua-arabic {
        font-size: 19px;
    }

    .dua-english {
        font-size: 13px;
    }
}

/* =========================
   BOTTOM BOX
========================= */

.hero-bottom-box {
    position: relative;
    z-index: 3;

    margin-top: 40px;

    background: rgba(4, 20, 38, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 34px;

    padding: 35px;

    display: grid;
    grid-template-columns: 1.5fr 0.9fr;

    gap: 40px;

    align-items: center;

    backdrop-filter: blur(16px);
}

.bottom-left-content h3 {
    color: #fff;

    font-size: 38px;
    font-weight: 700;

    margin-bottom: 35px;

    text-align: center;
}


/* FEATURES */

.bottom-features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.bottom-feature {
    text-align: center;
}

.bottom-feature i {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.22), rgba(0, 255, 200, 0.12));
    color: #f8c44f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 18px rgba(255, 196, 79, 0.35), 0 0 40px rgba(0, 255, 200, 0.18), inset 0 0 18px rgba(255, 255, 255, 0.05);
}

.bottom-feature h4 {
    color: #fff;

    font-size: 18px;

    margin-bottom: 10px;
}

.bottom-feature p {
    color: rgba(255, 255, 255, 0.68);

    line-height: 1.7;

    font-size: 13px;
}

/* AYAH BOX */

.hero-ayah-box {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(255, 193, 7, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-arabic {
    color: #fff;

    font-size: 30px;
    line-height: 2;

    margin-bottom: 24px;
}

.hero-translation {
    color: rgba(255, 255, 255, 0.78);

    line-height: 1.9;

    font-size: 17px;

    margin-bottom: 18px;
}

.hero-source {
    color: #f8c44f;

    font-weight: 700;
}

/* =========================================
   TABLET + MOBILE RESPONSIVE
========================================= */

@media (max-width: 1100px) {



    .mobile-hero-card {
        display: flex;

        align-items: center;
        justify-content: space-between;

        gap: 16px;

        width: 100%;
        max-width: 430px;

        margin: 0 auto 30px;

        padding: 16px 18px;

        border-radius: 22px;

        background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));

        border: 1px solid rgba(255, 255, 255, 0.10);

        backdrop-filter: blur(14px);

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

        position: relative;
        overflow: hidden;
    }

    /* SOFT GLOW */

    .mobile-hero-card::before {
        content: "";
        position: absolute;
        width: 140px;
        height: 140px;
        background: rgba(0, 217, 166, 0.18);
        border-radius: 50%;
        top: -70px;
        right: -40px;
        filter: blur(30px);
    }

    /* ICON */

    .mobile-hero-icon {
        width: 58px;
        height: 58px;

        flex-shrink: 0;

        border-radius: 18px;

        background: linear-gradient(135deg, #00d9a6, #00b1ff);

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 22px;
        color: #fff;

        box-shadow:
            0 10px 25px rgba(0, 217, 166, 0.30);
    }

    /* TEXT */

    .mobile-hero-content {
        flex: 1;
    }

    .mobile-hero-content strong {
        display: block;

        color: #fff;

        font-size: 16px;
        font-weight: 700;

        margin-bottom: 5px;
    }

    .mobile-hero-content span {
        color: rgba(255, 255, 255, 0.72);

        font-size: 13px;
        line-height: 1.6;
    }

    /* LIVE DOT */

    .mobile-live-dot {
        width: 12px;
        height: 12px;

        border-radius: 50%;

        background: #00d9a6;

        box-shadow: 0 0 0 8px rgba(0, 217, 166, 0.10), 0 0 18px rgba(0, 217, 166, 0.50);

        animation: livePulse 2s infinite;
    }

    /* ANIMATION */

    @keyframes livePulse {

        0% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.15);
            opacity: 0.7;
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* STACK MAIN LAYOUT */
    .message-hero-grid {
        display: flex;
        flex-direction: column;
    }

    /* PHONE + SCHOLAR FIRST */
    .message-right {
        order: 1;

        width: 100%;
        min-height: auto;

        display: flex;
        flex-direction: row;

        justify-content: center;
        align-items: flex-end;

        gap: 0;

        margin-top: 50px;
        margin-bottom: 30px;

        position: relative;
        overflow: visible;
    }

    /* TEXT CONTENT SECOND */
    .message-left {
        order: 2;
        text-align: center;
    }

    /* IMPORTANT */
    /* REMOVE ALL ABSOLUTE POSITIONING */
    .phone-stack,
    .hero-phone-mockup,
    .scholar-image {
        position: relative !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;

        transform: none !important;
    }

    /* PHONE CONTAINER */
    .phone-stack {
        display: flex;
        align-items: center;

        margin-right: -150px;
        margin-bottom: 100px;

        z-index: 3;
    }

    /* PHONE IMAGE */
    .hero-phone-mockup {
        width: 430px;
        max-width: unset;

        display: block;
    }

    /* SCHOLAR */
    .scholar-image {
        z-index: 2;
        margin-right: 20px;
    }

    .scholar-image img {
        width: 360px;
        max-width: unset;

        display: block;
    }

    /* REMOVE DESKTOP GLOW OFFSET */
    .scholar-image::after {
        width: 220px;
        height: 220px;
        right: 20px;
        top: 70px;
    }

    .phone-stack::before {
        width: 250px;
        height: 250px;
        left: 40px;
        top: 40px;
    }

    .scholar-image::before {
        width: 180px;
        height: 280px;
        left: -70px;
        top: 20px;
        opacity: 0.12;
    }

    .phone-stack::after {
        width: 220px;
        height: 220px;
        left: 55px;
        top: 55px;
    }

    /* TEXT */
    .message-left h1 {
        font-size: 58px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .message-buttons {
        justify-content: center;
    }

    .message-stats {
        grid-template-columns: 1fr;
    }

    .hero-bottom-box {
        grid-template-columns: 1fr;
    }

    .bottom-features {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

.mobile-hero-card {
    max-width: 100%;

    padding: 14px 16px;

    margin-bottom: 20px;
}

.mobile-hero-icon {
    width: 52px;
    height: 52px;

    font-size: 20px;
}

.mobile-hero-content strong {
    font-size: 15px;
}

.mobile-hero-content span {
    font-size: 12px;
}

@media (max-width: 480px) {

    .message-right {
        margin-top: 45px;
        margin-bottom: 20px;
    }

    /* PHONE */
    .phone-stack {
        margin-right: -130px;
        margin-top: -45px;
    }

    .hero-phone-mockup {
        width: 350px;
    }

    .scholar-image {
        margin-right: 18px;
    }

    /* SCHOLAR */
    .scholar-image img {
        width: 320px;
    }

    .phone-stack::before {
        width: 190px;
        height: 190px;
        left: 38px;
        top: 38px;
    }

    .phone-stack::after {
        width: 165px;
        height: 165px;
        left: 50px;
        top: 50px;
    }

    .scholar-image::after {
        width: 170px;
        height: 170px;
        right: 5px;
        top: 55px;
    }

    .scholar-image::before {
        width: 140px;
        height: 220px;
        left: -55px;
    }

    /* HEADER */

    .hero-visual-header span {
        font-size: 13px;

        padding: 10px 18px;
    }

    /* TEXT */
    .message-left h1 {
        font-size: 36px;
    }

    .message-tag {
        font-size: 12px;
    }

    .message-btn.primary,
    .audio-btn {
        width: 100%;
        justify-content: center;
    }

    .bottom-left-content h3 {
        font-size: 24px;
    }
}

/* BUILD A MOSQUE HERO */

.mosque-hero {
    position: relative;
    padding: 190px 0 140px;
    overflow: hidden;
    background: linear-gradient(rgba(3, 15, 28, 0.84), rgba(3, 15, 28, 0.72)), url('/images/mosque.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* OVERLAY */

.mosque-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.18), transparent 40%);
}

/* CONTENT */

.mosque-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* TAG */

.mosque-tag {
    display: inline-block;

    background: rgba(13, 110, 253, 0.14);

    border: 1px solid rgba(13, 110, 253, 0.35);

    color: #4da3ff;

    padding: 12px 24px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 30px;
}

/* TITLE */

.mosque-hero-content h1 {
    color: #fff;

    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;

    margin-bottom: 30px;
}

/* INTRO */

.mosque-intro {
    color: rgba(255, 255, 255, 0.78);

    font-size: 20px;
    line-height: 1.9;

    max-width: 760px;

    margin-bottom: 45px;
}

/* BUTTONS */

.mosque-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;

    margin-bottom: 70px;
}

.mosque-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;

    padding: 18px 30px;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.35s ease;
}

/* PRIMARY */

.mosque-btn.primary {
    background: #0d6efd;
    color: #fff;
}

.mosque-btn.primary:hover {
    background: #0b5ed7;
    transform: translateY(-3px);
}

/* SECONDARY */

.mosque-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);

    background: rgba(255, 255, 255, 0.04);

    color: #fff;

    backdrop-filter: blur(8px);
}

.mosque-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-3px);
}

/* IMPACT GRID */

.mosque-impact-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

/* CARD */

.mosque-impact-card {
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    border-radius: 24px;

    padding: 32px;
}

.mosque-impact-card h3 {
    color: #fff;

    font-size: 28px;

    margin-bottom: 15px;
}

.mosque-impact-card p {
    color: rgba(255, 255, 255, 0.74);

    line-height: 1.8;

    font-size: 15px;
}

/* =========================
   CONTENT SECTION
========================= */

.mosque-content-section {
    padding: 110px 0;

    background: #f8fbff;
}

/* WRAPPER */

.mosque-content-wrapper {
    max-width: 1050px;
    margin: auto;
}

/* HEADER */

.mosque-section-header {
    text-align: center;

    margin-bottom: 70px;
}

.mosque-section-tag {
    display: inline-block;

    background: rgba(13, 110, 253, 0.1);

    color: #0d6efd;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 20px;
}

.mosque-section-header h2 {
    font-size: 56px;
    line-height: 1.2;

    color: #071c2f;
}

/* CONTENT BOX */

.mosque-content {
    background: #fff;

    padding: 75px;

    border-radius: 36px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* QUOTE */

.mosque-content blockquote {
    font-size: 34px;
    line-height: 1.7;

    color: #071c2f;

    font-weight: 700;

    margin-bottom: 25px;
}

/* ARABIC */

.arabic-quote {
    font-size: 38px;
    line-height: 2;

    color: #0d6efd;

    margin-bottom: 25px;
}

.quote-source {
    color: #0d6efd;

    font-size: 18px;
    font-weight: 700;

    margin-bottom: 40px;
}

/* TEXT */

.mosque-content p {
    color: #4f5d6b;

    font-size: 18px;

    line-height: 2;

    margin-bottom: 28px;
}

/* LINES */

.mosque-lines,
.reward-lines {
    display: flex;
    flex-direction: column;

    gap: 18px;

    margin: 40px 0;
}

.mosque-lines span,
.reward-lines span {
    background: rgba(13, 110, 253, 0.08);

    border-left: 5px solid #0d6efd;

    color: #071c2f;

    padding: 22px 26px;

    border-radius: 18px;

    font-size: 20px;
    font-weight: 700;
}

/* GRID */

.mosque-content h3 {
    font-size: 34px;

    color: #071c2f;

    margin-bottom: 35px;
}

.mosque-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    margin-bottom: 60px;
}

/* CARD */

.mosque-card {
    background: #f8fbff;

    border: 1px solid rgba(13, 110, 253, 0.08);

    border-radius: 24px;

    padding: 30px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.mosque-card i {
    width: 60px;
    height: 60px;

    border-radius: 18px;

    background: #0d6efd;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    flex-shrink: 0;
}

.mosque-card span {
    color: #071c2f;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.7;
}

/* AYAH BOX */

.ayah-box {
    background: #071c2f;

    border-radius: 32px;

    padding: 55px;

    text-align: center;

    margin: 70px 0 50px;
}

.arabic-ayah {
    color: #fff;

    font-size: 40px;
    line-height: 2.1;

    margin-bottom: 30px;
}

.ayah-translation {
    color: rgba(255, 255, 255, 0.82);

    font-size: 20px;
    line-height: 1.9;

    margin-bottom: 20px;
}

.ayah-source {
    color: #4da3ff;

    font-weight: 700;
}

/* HADITH */

.hadith-box {
    background: rgba(13, 110, 253, 0.06);

    border-radius: 28px;

    padding: 45px;

    margin-bottom: 50px;
}

.hadith-box blockquote {
    margin-bottom: 20px;
}

/* FINAL */

.final-call {
    background: #071c2f;

    color: #fff;

    padding: 35px;

    border-radius: 24px;

    font-size: 28px;
    font-weight: 700;

    text-align: center;

    margin: 50px 0 35px;
}

.final-text {
    font-size: 22px !important;

    color: #071c2f !important;

    font-weight: 700;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .mosque-hero-content h1 {
        font-size: 54px;
    }

    .mosque-impact-grid {
        grid-template-columns: 1fr;
    }

    .mosque-grid {
        grid-template-columns: 1fr;
    }

    .mosque-section-header h2 {
        font-size: 44px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .mosque-hero {
        padding: 150px 0 100px;
    }

    .mosque-hero-content h1 {
        font-size: 38px;
    }

    .mosque-intro {
        font-size: 17px;
    }

    .mosque-buttons {
        flex-direction: column;
    }

    .mosque-btn {
        width: 100%;
    }

    .mosque-content-section {
        padding: 80px 0;
    }

    .mosque-content {
        padding: 35px 25px;
    }

    .mosque-section-header h2 {
        font-size: 34px;
    }

    .mosque-content blockquote {
        font-size: 26px;
    }

    .arabic-quote,
    .arabic-ayah {
        font-size: 28px;
    }

    .ayah-box,
    .hadith-box {
        padding: 35px 25px;
    }

    .final-call {
        font-size: 22px;
        padding: 28px;
    }

}



/* =========================
   FOOTER
========================= */

.main-footer {
    background: #2563eb;

    color: #fff;

    overflow: hidden;
}

/* TOP */

.footer-top {
    padding: 100px 20px 70px;
}

/* GRID */

.footer-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: start;
}

/* LOGO */

.footer-logo img {
    height: 70px;

    display: block;

    margin-bottom: 30px;
}

/* COMPANY */

.footer-company h3 {
    font-size: 24px;

    margin-bottom: 10px;

    font-weight: 700;
}

.company-number {
    display: block;

    color: #cfcfcf;

    font-size: 13px;

    margin-bottom: 20px;
}

.footer-company p {
    line-height: 1.9;

    color: #f1f1f1;

    font-size: 15px;
}

/* CONTACT */

.footer-contact {
    list-style: none;

    margin-top: 30px;
}

.footer-contact li {
    margin-bottom: 12px;
}

.footer-contact a {
    color: #fff;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

/* SOCIALS */

.footer-socials {
    display: flex;

    gap: 14px;

    margin-top: 35px;
}

.footer-socials a {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 18px;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: #F7941E;

    transform: translateY(-5px);
}

/* RIGHT */

.footer-download-title {
    font-size: 26px;

    line-height: 1.5;

    margin-bottom: 30px;
}

/* STORE BUTTONS */

.store-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 40px;
}

.store-buttons img {
    width: 130px;

    display: block;

    transition: 0.3s ease;
}

.store-buttons img:hover {
    transform: translateY(-4px);
}

/* VERSE */

.footer-verse {
    background: rgba(255, 255, 255, 0.05);

    padding: 30px;

    border-radius: 24px;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-verse p {
    line-height: 2;

    color: #f5f5f5;

    margin-bottom: 20px;
}

.footer-verse span {
    color: #F7941E;

    font-weight: 700;
}

/* BOTTOM */

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    padding: 25px 20px;
}

.footer-bottom-inner {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

/* COPYRIGHT */

.copyright-text {
    color: #d9d9d9;

    font-size: 14px;
}

/* LINKS */

.footer-links {
    display: flex;

    gap: 25px;
}

.footer-links a {
    color: #fff;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #F7941E;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .footer-top {
        padding: 80px 20px 60px;
    }

    .footer-company h3 {
        font-size: 20px;
    }

    .footer-download-title {
        font-size: 22px;
    }

    .footer-bottom-inner {
        flex-direction: column;

        text-align: center;
    }

    .footer-links {
        justify-content: center;

        flex-wrap: wrap;
    }

    .store-buttons {
        gap: 12px;
    }

    .store-buttons img {
        width: 115px;
    }

}

/* SCROLL TO TOP BUTTON */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #f7931a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

/* Visible State */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover */
.scroll-to-top:hover {
    background: #11C3E8;
}

/* Icon */
.scroll-to-top i {
    font-size: 1.2rem;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px;
        /* avoids mobile browser bar */
        right: 15px;
        width: 50px;
        height: 50px;
    }
}