/* Variables */
:root {
    --primary-teal: #005d6e;
    --primary-teal-dark: #004653;
    --accent-gold: #d0923f;
    --bg-cream: #f9f8f4;
    --text-dark: #2c3e50;
    --border-color: #e5e5e5;
}

/* Global Rules */
body {
    overflow-y: hidden;
}

/* Typography Custom Classes */
.font-montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

.font-serif {
    font-family: 'Times New Roman', Times, serif !important;
}

.font-opensans {
    font-family: 'Open Sans', sans-serif !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

h1,
.h1 {
    font-size: 42px !important;
}

h2,
.h2 {
    font-size: 34px !important;
}

h3,
.h3 {
    font-size: 28px !important;
}

h4,
.h4 {
    font-size: 24px !important;
}

h5,
.h5 {
    font-size: 20px !important;
}

h6,
.h6 {
    font-size: 17px !important;
}

p {
    font-size: 16px !important;
    line-height: 1.5;
}

.fs-4 {
    font-size: 26px !important;
}

.fs-5 {
    font-size: 22px !important;
}

.fs-6 {
    font-size: 18px !important;
}

.fs-7 {
    font-size: 16px !important;
}

.fs-8 {
    font-size: 14px !important;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
}

/* Colors */
.text-teal {
    color: var(--primary-teal) !important;
}

.bg-teal {
    background-color: var(--primary-teal) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.icon-bottom {
    font-size: 20px;
}

.bg-gold {
    background-color: var(--accent-gold) !important;
}

.bg-light-cream {
    background-color: var(--bg-cream) !important;
}

.btn-teal {
    background-color: var(--primary-teal);
    color: white;
    border: 1px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: var(--primary-teal-dark);
    color: white;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #b87d32;
    color: white;
}

/* Header & Nav */

.custom-nav .nav-link {
    color: var(--primary-teal);
    font-weight: 700 !important;
    padding: 8px 16px !important;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif !important;
}

.custom-nav .nav-link:hover,
.custom-nav .nav-link.active {
    color: var(--primary-teal);
    border-bottom: 2px solid var(--primary-teal);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
}

/* Core Values in Hero */
.value-item img {
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.value-item:hover img {
    transform: translateY(-5px);
}

/* Fundraiser Section */
.section-title-line::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.donor-card {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
}

.w-45 {
    width: 47%;
}

/* Timeline */
.timeline-item {
    z-index: 2;
}

.icon-circle {
    transition: all 0.3s ease;
}

.timeline-item:hover .icon-circle {
    transform: scale(1.1);
    background-color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
}

/* Programmes Cards */
.programme-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color) !important;
}

.programme-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-teal) !important;
}

.programme-card img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.programme-card:hover img {
    transform: scale(1.05);
}

.img-wrapper {
    overflow: hidden;
}

.programme-card h6 {
    font-size: 17px !important;
    font-weight: 700 !important;
}

/* Social Links */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-teal) !important;
    color: white !important;
    border-color: var(--primary-teal) !important;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .donor-card {
        margin-top: 0 !important;
    }

    .timeline-wrapper {
        padding-bottom: 20px;
    }

    .navbar {
        position: static !important;
    }

    .navbar-collapse {
        background-color: white;
        padding: 16px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        width: auto;
        z-index: 1000;
        border: 1px solid var(--border-color);
        margin-top: 10px;
    }
}

/* Hover dropdowns for desktop */
@media (min-width: 1200px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Extracted Semantic Classes */
.logo-img {
    max-height: 100px;
    object-fit: contain;
}

.custom-dropdown-menu {
    border-top-color: #dee2e600 !important;
}

.custom-dropdown-menu .dropdown-item {
    font-size: 15px;
    font-weight: 700 !important;
}

.custom-dropdown-menu .dropdown-item:hover,
.custom-dropdown-menu .dropdown-item.active {
    color: var(--primary-teal) !important;
    background-color: #f0f7f8 !important;
    border-left: 3px solid var(--primary-teal) !important;
}

.hero-bg {
    background: url('../images/banner.png') right center/cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0) 62%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fundraiser-card-left {
    background-color: #fcfbf7;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.fundraiser-title {
    font-weight: 800 !important;
    letter-spacing: 0.5px;
}

.stat-label {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.progress-track {
    height: 14px;
    background-color: #eadecd;
}

/* General utility replacements */
.text-dark {
    color: var(--text-dark) !important;
}

.text-teal {
    color: var(--primary-teal) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.text-teal-dark {
    color: var(--primary-teal-dark) !important;
}

/* Component Typography */

.hero-content p {
    font-size: 22px !important;
    font-weight: 500 !important;
}

.hero-content h1 {
    font-weight: 800 !important;
    font-size: 65px !important;
}

@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 50px !important;
    }
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 44px !important;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 36px !important;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 30px !important;
    }
}

.stat-box h2 {
    font-weight: 600 !important;
}

.fundraiser-card-left p {
    font-weight: 500 !important;
}

.timeline-item p,
.programme-card p {
    font-size: 16px !important;
}

.text-teal-dark {
    color: var(--primary-teal-dark) !important;
}

.text-dark-gray {
    color: #333 !important;
}

.donor-subtitle {
    letter-spacing: 0.5px;
    font-size: 16px;
    font-weight: 500;
}

.donor-title {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700 !important;
    font-size: 40px;
}

.donor-text {
    font-size: 17px;
    color: #f0f0f0 !important;
}

.donor-divider {
    border-top: 1px solid var(--accent-gold);
    opacity: 0.6;
    margin: 24px 0;
}

.donor-payment-text {
    font-size: 16px;
}

.pledge-box-outline {
    border: 1px solid var(--accent-gold);
    flex: 1;
    min-width: 140px;
}

.pledge-period {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.donor-footer-text {
    font-size: 16px;
    color: #f0f0f0 !important;
    font-weight: 500;
}

.timeline-card {
    background: radial-gradient(circle, #fdfcf9 0%, #f4efe6 100%);
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.timeline-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.timeline-title-line {
    height: 2px;
    width: 70px;
    background-color: var(--accent-gold);
}

.timeline-line {
    top: 45px;
    left: 10%;
    width: 80% !important;
    z-index: 0;
    border-top: 3px dashed var(--accent-gold);
    opacity: 0.8;
}

.timeline-line::before,
.timeline-line::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 50px;
    border-top: 3px solid var(--accent-gold);
}

.timeline-line::before {
    right: 100%;
    margin-right: 70px;
}

.timeline-line::after {
    left: 100%;
    margin-left: 55px;
}

.icon-circle {
    width: 90px;
    height: 90px;
    border: none !important;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 38px;
}

.volunteer-icon-wrapper {
    margin-bottom: -1px;
}

.bg-banner-cream {
    background-color: #fcfbf7;
}

.donate-banner-card {
    background: url('../images/donate-bg.png') center/cover no-repeat, #fdfcf9;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.donate-divider {
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    border-right: 1px solid var(--accent-gold);
    opacity: 0.4;
}

.fonate-title {
    font-size: 35px !important;
    font-weight: 800 !important;
}

.bank-text .text-uppercase {
    font-weight: 700 !important;
}

.reference-text .text-uppercase {
    font-weight: 700 !important;
}

.bank-text h5 {
    font-weight: 700 !important;
}

.reference-text h5 {
    font-weight: 700 !important;
}

.footer-left-text h6 {
    font-family: "Times New Roman", Times, serif !important;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 800;
}

.footer-gradient {
    background: linear-gradient(135deg, #fcfbf7 0%, #f3eee3 100%);
}

.icon-lg {
    width: 80px;
    height: 80px;
}

.banner-heart-icon {
    top: 0px;
    margin-top: -5px;
}

.social-icon-btn {
    width: 25px;
    height: 25px;
}

.footer-calligraphy {
    object-fit: contain;
    max-width: 250px;
}

.contact-link-text {
    font-size: 16px !important;
}

@media (min-width: 1200px) and (max-width: 1640px) {
    .custom-nav .nav-link {
        padding: 8px 10px !important;
        font-size: 10px;
    }

    .logo-img {
        max-height: 80px;
    }

    .btn-teal {
        font-size: 13px;
    }
}

/* Responsive Stat Box Borders */
@media (min-width: 768px) {
    .middle-stat-box {
        border-left: 1px solid rgba(108, 117, 125, 0.25);
        border-right: 1px solid rgba(108, 117, 125, 0.25);
    }
}

@media (max-width: 767px) {
    .middle-stat-box {
        border-top: 1px solid rgba(108, 117, 125, 0.25);
        border-bottom: 1px solid rgba(108, 117, 125, 0.25);
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .icon-bottom {
        font-size: 18px;
    }

    .hero-bg {
        background-position: 83% center;
    }

    .hero-overlay {
        /* background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 63%, rgba(255, 255, 255, 0) 100%); */
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 20%, rgba(255, 255, 255, 0) 100%);

    }

    .hero-content p {
        font-size: 17px !important;
    }

    .pledge-box {
        flex-direction: column;
        text-align: center;
    }

    .core-values .value-item {
        flex: 0 0 calc(50% - 0.75rem) !important;
        max-width: calc(50% - 0.75rem);
    }

    .core-values .value-item:nth-child(3) {
        border-left: 0 !important;
    }
}


/* Facilities Page Styles */
.facilities-hero-bg {
    background: url('../images/banner.png') right center/cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.facilities-hero-overlay {
    background: linear-gradient(to right, rgba(253, 252, 249, 1) 0%, rgba(253, 252, 249, 0.95) 25%, rgba(253, 252, 249, 0) 50%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.border-bottom-decoration {
    object-fit: contain;
    height: 40px;
}

.our-facilities-title {
    font-size: 40px !important;
    font-family: "Times New Roman", Times, serif;
    font-weight: 700 !important;
    color: var(--primary-teal-dark) !important;
}

.facility-bottom-heading {
    font-size: 25px !important;
    font-family: "Times New Roman", Times, serif;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    color: var(--primary-teal-dark) !important;
}

.facility-bottom-text {
    font-size: 18px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px;
    color: var(--dark-gray) !important;
}

.facility-card {
    border-radius: 12px;
    position: relative;
    border: 1px solid #eadecd;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.facility-img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 11px 11px 0 0;
}

.facility-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-teal-dark);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.facility-icon-wrapper i {
    color: white;
    font-size: 26px;
}

.facility-card-line {
    width: 50px;
    height: 2px;
    background-color: var(--accent-gold);
}

.bottom-banner-mosque {
    background-color: var(--primary-teal-dark);
    color: white;
}


.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.section-title-wrapper .line {
    height: 2px;
    width: 40px;
    background-color: var(--primary-teal);
    opacity: 0.5;
}

.section-title-wrapper .line-gold {
    background-color: var(--accent-gold);
    opacity: 0.8;
}

.border-right-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    .border-right-divider {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

/* Typography Utility Classes extracted from inline styles */
.facilities-title {
    font-size: 55px !important;
    letter-spacing: 1px;
}

.facilities-subtitle {
    font-weight: 500;
}

.letter-spacing-sm {
    letter-spacing: 0.5px;
}

.banner-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.activity-title {
    font-size: 0.95rem;
}

.footer-text-bold {
    font-size: 20px;
    font-weight: 800;
}

.footer-text-gold {
    color: var(--accent-gold);
    font-size: 20px;
    font-weight: 800;
}

/* Features Banner */
.features-banner {
    background-color: #fdfaf6;
    border: 1px solid #eadecd;
    border-radius: 12px;
}

.feature-item {
    position: relative;
}

.feature-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: var(--accent-gold);
    opacity: 0.6;
}

.feature-item:last-child::after {
    display: none;
}

@media (max-width: 991px) {
    .feature-item::after {
        right: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(50%);
        width: 60%;
        height: 1px;
    }

    .feature-item:last-child::after {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .feature-item:nth-child(odd)::after {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
    }

    .feature-item:nth-child(even)::after {
        display: none;
    }

    .feature-item:nth-child(1)::before,
    .feature-item:nth-child(2)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background-color: var(--accent-gold);
        opacity: 0.6;
    }
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-teal-dark);
}

.feature-title {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-teal-dark);
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Bottom Action Banner Gold Variations */
.text-gold {
    color: var(--accent-gold) !important;
}

.border-right-divider-gold {
    border-right: 1px solid var(--accent-gold);
}

@media (max-width: 767px) {
    .border-right-divider-gold {
        border-right: none;
        border-bottom: 1px solid var(--accent-gold);
        padding-bottom: 2rem !important;
        margin-bottom: 1rem;
    }
}

.btn-gold {
    background-color: var(--accent-gold);
    color: white;
    border: 1px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

/* Activities & About Us Page Styles */
.activities-hero,
.about-hero {
    background: url('../images/banner.png') no-repeat center center;
    background-size: cover;
    min-height: 80vh;
}

.activities-hero-overlay,
.about-hero-overlay {
    background: linear-gradient(to right, rgba(253, 252, 249, 1) 0%, rgba(253, 252, 249, 0.95) 25%, rgba(253, 252, 249, 0) 50%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.activity-card {
    border-radius: 12px;
    position: relative;
    border: 1px solid #eadecd;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.activity-img-new {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 11px 11px 0 0;
}

.activity-icon-top {
    width: 70px;
    height: 70px;
    background: var(--primary-teal-dark);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.activity-icon-top i {
    color: white;
    font-size: 26px;
}

.activity-card-title {
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--primary-teal-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.activity-card-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-gray);
    line-height: 1.5;
}

.cta-pattern-banner {
    background-color: #fdfaf6;
    border: 1px solid #eadecd;
    border-radius: 12px;
    position: relative;
}

.cta-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #eadecd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.border-start-md {
    border-left: 2px solid var(--accent-gold);
}

@media (max-width: 767px) {
    .border-start-md {
        border-left: none !important;
        border-top: 2px solid var(--accent-gold);
        padding-top: 1.5rem;
        margin-top: 0.5rem;
    }
}

.hero-main-title {
    font-size: 55px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 40px;
    }
}

.section-overlap-icon {
    width: 90px;
    height: 90px;
    background-color: white;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.section-overlap-icon img {
    height: 40px;
    object-fit: contain;
}

/* Our Vision Page Styles */
.vision-hero {
    background: url('../images/facilities-banner.png') no-repeat center center;
    background-size: cover;
    min-height: 80vh;
}

.vision-hero-overlay {
    background: linear-gradient(to right, rgba(253, 252, 249, 1) 0%, rgba(253, 252, 249, 0.95) 25%, rgba(253, 252, 249, 0) 50%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vision-overlap-container {
    margin-top: -60px;
    z-index: 10;
}

.vision-statement-banner {
    background: url('../images/vision-statement-banner-bg.png') no-repeat center center;
    background-size: cover;
    background-color: var(--primary-teal-dark);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    max-width: 1300px;
}

.vision-icon-wrapper {
    width: 70px;
    height: 70px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-icon-wrapper i {
    font-size: 24px;
    color: var(--accent-gold);
}

.vision-banner-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 100%;
    background: url('../images/mosque-silhouette.png') no-repeat right bottom;
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
}

.border-gold {
    border-color: var(--accent-gold) !important;
}

.border-gold-opacity {
    border-right: 1px solid rgba(193, 154, 107, 0.3) !important;
}

@media (max-width: 767px) {
    .border-gold-opacity {
        border-right: none !important;
        border-bottom: 1px solid rgba(193, 154, 107, 0.3) !important;
        padding-bottom: 1.5rem !important;
    }

    .vision-overlap-container {
        margin-top: -30px;
    }
}

.envision-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.envision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.envision-icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary-teal-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.envision-icon-circle i {
    color: white;
    font-size: 32px;
}

.bg-light-cream {
    background-color: #fdfaf6;
}

.border-subtle {
    border: 1px solid #eadecd !important;
}

/* Quote Box */
.quote-overlay-box {
    background-color: var(--primary-teal-dark);
    bottom: 20px;
    left: 20px;
    right: 20px;
    border: 1px solid rgba(193, 154, 107, 0.3);
}

.dark-teal-banner {
    background-color: var(--primary-teal-dark);
}

.cta-icon-wrapper-outline {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Our Vision Page Inline Replacements */
.vision-subtitle {
    font-size: 28px;
    line-height: 1.3;
}

.z-index-2 {
    z-index: 2;
}

.vision-statement-text-inner {
    font-weight: 300;
    max-width: 600px;
}

.mt-custom-60 {
    margin-top: 60px;
}

.border-bottom-decoration-sm {
    height: 25px;
    object-fit: contain;
}

.commitment-icon-wrapper {
    width: 50px;
}

.fs-24 {
    font-size: 24px;
}

.shield-gold-outline {
    -webkit-text-stroke: 2px var(--accent-gold);
}

.shield-check-align {
    padding-top: 2px;
}

.lh-16 {
    line-height: 1.6;
}

.fs-40 {
    font-size: 40px;
}

.commitment-img {
    min-height: 500px;
}

.custom-quote-overlay {
    bottom: -2px;
    left: 25px;
    right: 25px;
    background-color: var(--primary-teal-dark);
    border: 2px solid var(--accent-gold);
}

.quote-mark-left {
    font-size: 80px;
    line-height: 1;
    margin-top: 25px;
}

.quote-mark-right {
    font-size: 80px;
    line-height: 1;
    transform: translateY(25px);
}

.cta-pattern-banner {
    background: url('../images/cta-pattern-banner-bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 12px;
}

.quote-main-text {
    font-size: 26px !important;
    font-weight: 400 !important;
}

.quote-author-text {
    font-size: 18px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.envision-card {
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.envision-card:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.renovation-slider.owl-carousel .owl-stage-outer,
.renovation-slider.owl-carousel .owl-stage,
.renovation-slider.owl-carousel .owl-item,
.renovation-slider .owl-item>div {
    height: 100%;
}

/* About Us Hero */
.about-subtitle {
    font-size: 2.2rem;
    line-height: 1.3;
}

/* Our Commitment Section */
.commitment-subtitle {
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.commitment-line {
    width: 40px;
    height: 1.5px;
}

.commitment-title {
    font-size: 2.5rem;
}

.commitment-card {
    border: 1px solid rgba(178, 138, 80, 0.25);
    border-radius: 10px;
    box-shadow: none;
}

.commitment-icon-circle {
    width: 85px;
    height: 85px;
    font-size: 2.2rem;
}

.commitment-card-title {
    font-size: 0.95rem;
}

/* Community-Driven Section */
.community-driven-card {
    border: 2px solid rgba(178, 138, 80, 0.2) !important;
    background-color: #fcfcfc;
}

.community-driven-bg {
    background: url('../images/bg texture.png') center/cover;
    opacity: 0.1;
}

.community-driven-img {
    height: 380px;
}

.community-driven-text {
    font-size: 1.05rem;
}

/* Our Goal Section */
.our-goal-container {
    background: url('../images/ourgoal-bg.png') center/cover;
    padding: 4rem 3rem;
}

.our-goal-icon-wrapper {
    width: 140px;
    height: 140px;
    border: 2px solid var(--accent-gold);
}

.our-goal-icon {
    background-color: var(--primary-teal-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.envision-icon-circle i {
    color: white;
    font-size: 32px;
}

.bg-light-cream {
    background-color: #fdfaf6;
}

.border-subtle {
    border: 1px solid #eadecd !important;
}

/* Quote Box */
.quote-overlay-box {
    background-color: var(--primary-teal-dark);
    bottom: 20px;
    left: 20px;
    right: 20px;
    border: 1px solid rgba(193, 154, 107, 0.3);
}

.dark-teal-banner {
    background-color: var(--primary-teal-dark);
}

.cta-icon-wrapper-outline {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Our Vision Page Inline Replacements */
.vision-subtitle {
    font-size: 28px;
    line-height: 1.3;
}

.z-index-2 {
    z-index: 2;
}

.vision-statement-text-inner {
    font-weight: 300;
    max-width: 600px;
}

.mt-custom-60 {
    margin-top: 60px;
}

.border-bottom-decoration-sm {
    height: 25px;
    object-fit: contain;
}

.commitment-icon-wrapper {
    width: 50px;
}

.fs-24 {
    font-size: 24px;
}

.shield-gold-outline {
    -webkit-text-stroke: 2px var(--accent-gold);
}

.shield-check-align {
    padding-top: 2px;
}

.lh-16 {
    line-height: 1.6;
}

.fs-40 {
    font-size: 40px;
}

.commitment-img {
    min-height: 500px;
}

.custom-quote-overlay {
    bottom: -2px;
    left: 25px;
    right: 25px;
    background-color: var(--primary-teal-dark);
    border: 2px solid var(--accent-gold);
}

.quote-mark-left {
    font-size: 80px;
    line-height: 1;
    margin-top: 25px;
}

.quote-mark-right {
    font-size: 80px;
    line-height: 1;
    transform: translateY(25px);
}

.cta-pattern-banner {
    background: url('../images/cta-pattern-banner-bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 12px;
}

.quote-main-text {
    font-size: 26px !important;
    font-weight: 400 !important;
}

.quote-author-text {
    font-size: 18px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.envision-card {
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.envision-card:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.renovation-slider.owl-carousel .owl-stage-outer,
.renovation-slider.owl-carousel .owl-stage,
.renovation-slider.owl-carousel .owl-item,
.renovation-slider .owl-item>div {
    height: 100%;
}

/* About Us Hero */
.about-subtitle {
    font-size: 2.2rem;
    line-height: 1.3;
}

/* Our Commitment Section */
.commitment-subtitle {
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.commitment-line {
    width: 40px;
    height: 1.5px;
}

.commitment-title {
    font-size: 2.5rem;
}

.commitment-card {
    border: 1px solid rgba(178, 138, 80, 0.25);
    border-radius: 10px;
    box-shadow: none;
}

.commitment-icon-circle {
    width: 85px;
    height: 85px;
    font-size: 2.2rem;
}

.commitment-card-title {
    font-size: 0.95rem;
}

/* Community-Driven Section */
.community-driven-card {
    border: 2px solid rgba(178, 138, 80, 0.2) !important;
    background-color: #fcfcfc;
}

.community-driven-bg {
    background: url('../images/bg texture.png') center/cover;
    opacity: 0.1;
}

.community-driven-img {
    height: 380px;
}

.community-driven-text {
    font-size: 1.05rem;
}

/* Our Goal Section */
.our-goal-container {
    background: url('../images/ourgoal-bg.png') center/cover;
    padding: 4rem 3rem;
}

.our-goal-icon-wrapper {
    width: 140px;
    height: 140px;
    border: 2px solid var(--accent-gold);
}

.our-goal-icon {
    font-size: 4rem;
}

.our-goal-title {
    font-size: 2.5rem;
}

.our-goal-text {
    font-size: 1.15rem;
    max-width: 800px;
    line-height: 1.7;
}

/* Bottom Banner / Dua Section */
.bottom-dua-card {
    border: 1px solid rgba(178, 138, 80, 0.15) !important;
    background: url('../images/donate-bg.png') center/cover;
}

.dua-text {
    line-height: 1.7;
    font-weight: 500;
}

/* About The Mosque Page */
/* .mosque-intro-img {
    max-width: 130px;
} */

.future-plans-bg {
    background: url('../images/donate-bg.png') repeat center center;
}

.quote-card-gradient {
    background: linear-gradient(to right, rgba(178, 138, 80, 0.05), rgba(255, 255, 255, 1), rgba(178, 138, 80, 0.05));
}

.intro-feature-container {
    background-color: #fffcf8;
    border: 1px solid rgba(178, 138, 80, 0.2);
}

.intro-feature-divider {
    border-left: 2px solid rgba(178, 138, 80, 0.3);
}

.bg-gold-custom {
    background-color: var(--accent-gold);
}

.vision-grid-card {
    border: 1px solid rgba(178, 138, 80, 0.15);
    border-radius: 10px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.vision-grid-card:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vision-icon-circle {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

/* .future-plans-bg {
    background: url('../images/bg texture.png') center/cover;
    opacity: 0.05;
} */

.investment-banner-bg {
    background: url('../images/ourgoal-bg.png') center/cover;
}

.help-build-banner {
    background-color: #fdfaf6;
    border: 1px solid #eadecd !important;
}

.help-build-bg {
    background: url('../images/bg texture.png') center/cover;
    opacity: 0.03;
}

.max-w-250 {
    max-width: 250px;
}

/* About The Mosque Custom Styles */
.about-mosque-hero-bg {
    background: url('../images/mosque-hero-bg.jpg') center/cover;
}

.about-mosque-hero-gradient {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0) 100%);
}

.future-plans-img {
    height: 420px;
}

.future-plans-text {
    font-size: 0.95rem;
}

.w-30px {
    width: 30px;
}

.investment-icon-circle {
    width: 130px;
    height: 130px;
}

.fs-3-5rem {
    font-size: 3.5rem;
}

.investment-text {
    max-width: 800px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.lantern-left {
    left: 10%;
    top: 0;
    width: 140px;
}

.lantern-right {
    right: 10%;
    top: 0;
    width: 140px;
}

.fs-3rem {
    font-size: 3rem;
}

.quote-title {
    font-size: 2.2rem;
    line-height: 1.4;
}

.efforts-img {
    min-height: 250px;
}

.efforts-img-rounded {
    border-top-left-radius: var(--bs-border-radius-xl);
    border-top-right-radius: var(--bs-border-radius-xl);
}

.location-badge-link {
    transition: all 0.3s ease;
}

.location-badge-link:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px);
    border-color: var(--primary-teal) !important;
}

@media (min-width: 992px) {
    .efforts-img-rounded {
        border-top-right-radius: 0;
        border-bottom-left-radius: var(--bs-border-radius-xl);
    }
}

.dua-icon-lg {
    width: 150px;
}

.efforts-text {
    max-width: 500px;
}

.border-bottom-xs {
    width: 30px;
}

.bank-label {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

/* Footer Global Classes */
.footer-logo-img {
    width: 120px;
}

.footer-divider {
    border-width: 1px !important;
    opacity: 0.5;
}

.social-icon-btn {
    border-color: var(--primary-teal-dark) !important;
}




/* Contact Us Page & Utilities */
.bg-teal-dark {
    background-color: var(--primary-teal-dark) !important;
}
 
.opacity-90 {
    opacity: 0.9 !important;
}
 
.contact-banner-decoration {
    height: 15px;
    background: url('../images/border-pattern.png') repeat-x bottom;
    opacity: 0.1;
}
 
.w-50px {
    width: 50px !important;
}
 
.contact-map-iframe {
    border: 0;
    min-height: 400px;
}
 
.max-w-1000 {
    max-width: 1000px !important;
}
 
 
.border-teal-dark {
    border-color: var(--primary-teal-dark) !important;
}







/* =========================
   NCIYC PRAYER TIMES
========================= */
 
.entry-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}
 
.entry-title {
    text-align: center !important;
    color: var(--primary-teal-dark) !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 40px !important;
    position: relative !important;
    font-family: 'Times New Roman', Times, serif !important;
    margin-top: 40px !important;
}
 
.entry-title:after {
    content: '' !important;
    display: block !important;
    width: 70px !important;
    height: 3px !important;
    margin: 15px auto 0 !important;
    background: var(--accent-gold) !important;
}
 
.st_table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    overflow: hidden !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 93, 110, 0.1) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 30px !important;
}
 
.st_table tr:first-child td {
    background: var(--primary-teal-dark) !important;
    color: var(--accent-gold) !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    padding: 35px 20px !important;
    border: none !important;
}
 
.st_table th {
    background: var(--primary-teal) !important;
    color: #ffffff !important;
    padding: 22px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
}
 
.st_table td {
    background: transparent !important;
    color: var(--text-dark) !important;
    padding: 22px !important;
    border-top: 1px solid rgba(0, 93, 110, 0.08) !important;
    font-size: 17px !important;
    font-family: 'Open Sans', sans-serif !important;
}
 
.st_table tr:nth-child(3) td,
.st_table tr:nth-child(5) td,
.st_table tr:nth-child(7) td {
    background: #ffffff !important;
}
 
.st_table tr:nth-child(4) td,
.st_table tr:nth-child(6) td,
.st_table tr:nth-child(8) td {
    background: var(--bg-cream) !important;
}
 
.st_table td:first-child {
    color: var(--primary-teal-dark) !important;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif !important;
}
 
.st_table td:last-child {
    color: var(--text-dark) !important;
    font-weight: 600 !important;
}
 
.st_table tr:not(:first-child):hover td {
    background: #f0f7f8 !important;
    transition: .3s ease !important;
}
 
.st_table tr:first-child td:first-child {
    border-radius: 24px 24px 0 0 !important;
}
 
.st_table tr:last-child td:first-child {
    border-radius: 0 0 0 24px !important;
}
 
.st_table tr:last-child td:last-child {
    border-radius: 0 0 24px 0 !important;
}
 
/* Mobile */
@media(max-width: 767px) {
    .entry-title {
        font-size: 32px !important;
    }
 
    .st_table tr:first-child td {
        font-size: 22px !important;
        padding: 25px 15px !important;
    }
 
    .st_table th,
    .st_table td {
        font-size: 15px !important;
        padding: 14px 10px !important;
    }
}






/* Mosque Build Progress Section */
.mosque-build-card {
    border-color: rgba(0, 0, 0, 0.08) !important;
}
 
.mosque-build-bottom-box {
    border-color: rgba(0, 0, 0, 0.08) !important;
    background-color: #fcfbf7 !important;
}
 
@media (min-width: 576px) {
    .border-sm-end {
        border-right: 1px solid rgba(0,0,0,0.1) !important;
    }
}














/* Dashboard Section */
.dashboard-section {
    background-color: #fcfbf7 !important;
}

.dashboard-card {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.dashboard-chart-container {
    margin-bottom: 30px;
}

.dashboard-required-box {
    background-color: #f7f9f8;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.dashboard-callout-box {
    background-color: #f7f9f8;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
}

/* Dashboard Timeline */
.dashboard-timeline {
    position: relative;
    padding-left: 25px;
    margin-left: 15px;
    margin-top: 60px !important;
}

.dashboard-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 10px;
    left: 5px;
    width: 2px;
    background-color: var(--primary-teal-dark);
}

.dashboard-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 15px;
}

.dashboard-timeline-item:last-child {
    margin-bottom: 0;
}

.dashboard-timeline-icon {
    position: absolute;
    left: -42px;
    top: -4px;
    width: 46px;
    height: 46px;
    background-color: var(--primary-teal-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 2;
    box-shadow: 0 0 0 1px var(--primary-teal-dark);
}

.dashboard-timeline-icon i {
    font-size: 22px;
}

.dashboard-timeline-item.gold .dashboard-timeline-icon {
    background-color: white;
    color: var(--accent-gold);
    border: 3px solid var(--accent-gold);
    width: 46px;
    height: 46px;
    left: -42px;
    top: -4px;
    box-shadow: none;
}

.dashboard-timeline-item.gold .dashboard-timeline-icon i {
    font-size: 20px;
}

.dashboard-timeline-item.gold::before {
    content: '';
    position: absolute;
    top: -22px;
    bottom: 15px;
    left: -20px;
    width: 2px;
    background-color: var(--accent-gold);
    z-index: 1;
}

.dashboard-timeline-item p {
    font-size: 13px !important;
}

/* Responsive Dashboard */
@media (max-width: 1199px) {
    .dashboard-chart-svg {
        max-width: 240px;
    }
}

@media (max-width: 991px) {
    .dashboard-timeline {
        max-width: 400px;
        margin: 0 auto;
        padding-left: 30px;
    }

    .dashboard-timeline::before {
        left: 10px;
    }

    .dashboard-timeline-icon {
        left: -42px;
    }

    .dashboard-timeline-item.gold .dashboard-timeline-icon {
        left: -44px;
    }

    .dashboard-timeline-item.gold::before {
        left: -20px;
    }
}

@media (max-width: 575px) {
    .dashboard-card {
        padding: 1.5rem !important;
    }

    .dashboard-timeline {
        padding-left: 30px;
        margin-left: 5px;
    }
}

/* Roots Section */
.roots-section {
    background-color: #fff;
}

.roots-info-box {
    border-color: var(--primary-teal-dark) !important;
}


.roots-privacy-box {
    background-color: var(--primary-teal-dark);
}

.privacy-icon-wrapper {
    width: 45px;
    height: 45px;
}

.roots-tree-box {
    border-color: var(--primary-teal-dark) !important;
    border-width: 4px !important;
}

.roots-line {
    height: 2px;
    flex: 1;
    max-width: 150px;
    background-color: var(--primary-teal-dark) !important;
}

.roots-info-text {
    font-size: 20px !important;
    line-height: 1.6;
    color: #004653 !important;
}

.roots-text-heading {
    font-size: 25px !important;
}

.roots-text-desc {
    font-size: 20px !important;
    line-height: 2.1;
}

.roots-privacy-divider {
    border-color: rgba(208, 146, 63, 0.5) !important;
}

.privacy-icon-border {
    border-color: var(--accent-gold) !important;
}

.roots-privacy-text {
    font-size: 20px !important;
    line-height: 1.5;
}

.roots-calligraphy {
    max-height: 45px;
    opacity: 0.85;
}

.roots-heading {
    letter-spacing: 1.5px;
}

.roots-divider-container {
    max-width: 400px;
}

.roots-divider-text {
    font-size: 14px;
}

.roots-tree-img {
    max-width: 580px;
    z-index: 1;
}

.roots-icon-wrapper {
    width: 155px !important;
    height: 155px !important;
}

.tree-overlay-texts {
    bottom: 40%;
    z-index: 2;
    padding: 0 2%;
    max-width: 800px;
}

.tree-overlay-col {
    max-width: 250px;
}

.tree-quote-heading {
    font-size: 13px !important;
}

.tree-quote-text {
    font-size: 12px !important;
    line-height: 1.6;
}

.tree-hadith-text {
    font-size: 13px !important;
    line-height: 1.6;
}

.tree-hadith-source {
    font-size: 12px !important;
}

.tree-bottom-container {
    z-index: 2;
}

.tree-bottom-text {
    font-size: 15px !important;
    font-weight: 600;
}

@media (max-width: 767px) {
    .roots-info-box {
        flex-direction: column;
        text-align: center;
    }

    .roots-text {
        text-align: center;
    }

    .roots-privacy-box {
        text-align: center;
    }

    .roots-privacy-box .d-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .tree-overlay-texts {
        bottom: 5% !important;
    }
}

/* Payment Options Section */
.payment-card-wrapper {
    border-color: rgba(0, 0, 0, 0.08) !important;
    /* max-width: 950px; */
}

.payment-top-label {
    font-size: 16px;
    letter-spacing: 0.5px;
    z-index: 5;
    background-color: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 2;
    box-shadow: 0 0 0 1px var(--primary-teal);
    top: 0;
}

.payment-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 2;
    box-shadow: 0 0 0 1px var(--primary-teal);
}

.payment-amount {
    font-size: 42px;
}

.payment-period {
    font-size: 16px;
}

.payment-duration-pill {
    font-size: 15px;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.payment-total-text {
    font-size: 16px;
}

.payment-or-badge {
    width: 55px;
    height: 55px;
    font-size: 18px;
    box-shadow: 0 0 0 4px #fff, 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-teal);
}

.payment-divider-desktop {
    width: 2px;
    height: 75px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 35px;
}

.payment-divider-mobile {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.payment-goal-text {
    font-size: 18px;
    line-height: 1.5;
}

.payment-goal-highlight {
    font-size: 20px;
}

.payment-bottom-banner {
    /* max-width: 950px; */
    background-color: var(--primary-teal);
}

.payment-banner-text {
    font-size: 16px;
    opacity: 0.95;
}

@media (max-width: 767px) {
    .payment-card-wrapper {
        padding-top: 2.5rem !important;
    }
}

/* Ways to Give / Donation Section */
.donation-section {
    padding-bottom: 3rem;
    background-color: #fff;
}

.donation-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.donation-top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    align-items: stretch;
}

.donation-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.donation-card-header {
    background-color: var(--primary-teal);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    font-size: 18px;
}

.donation-card-body {
    padding: 15px;
    flex: 1;
}

.ways-card {
    flex: 1.5;
    min-width: 300px;
}

.ways-body-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.way-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 5px;
}

.way-icon {
    font-size: 36px;
    color: var(--primary-teal-dark);
    margin-bottom: 8px;
}

.way-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-teal-dark);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.way-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.1);
}

.bank-card {
    flex: 1;
    min-width: 280px;
}

.bank-body-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bank-title {
    font-weight: 600;
    color: var(--dark-gray);
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 5px;
    font-size: 18px;
}

.bank-detail-row {
    font-size: 15px;
    color: var(--dark-gray);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    display: flex;
    gap: 8px;
}

.bank-label {
    font-weight: 700;
}

.mosque-illustration {
    flex: 0.5;
    min-width: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
}

.mosque-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.donation-bottom-banner {
    background-color: var(--primary-teal-dark);
    border-radius: 30px 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    color: #fff;
    flex-wrap: wrap;
    gap: 30px;
}

.banner-logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-logo {
    max-height: 70px;
}

.banner-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.banner-divider {
    width: 1px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
}

.banner-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-align: center;
}

.banner-arabic-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--accent-gold);
}

.banner-arabic-text {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.banner-arabic-trans {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    margin-top: 2px;
}

.banner-duas-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-heart {
    color: var(--accent-gold);
    font-size: 40px;
}

.banner-duas-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .ways-body-inner {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .way-divider {
        display: none;
    }

    .way-item {
        min-width: 40%;
    }

    .donation-bottom-banner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .banner-divider {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }

    .banner-logo-area,
    .banner-duas-area {
        flex-direction: column;
        text-align: center;
    }
}

/* Dashboard Grid Overrides */
.dashboard-custom-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1199px) {
    .dashboard-custom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-grid-col:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .dashboard-custom-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid-col:nth-child(3) {
        grid-column: auto;
    }
}

/* Roots Grid Overrides */
.roots-custom-grid {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1199px) {
    .roots-custom-grid {
        grid-template-columns: 5fr 7fr;
    }
}

@media (max-width: 991px) {
    .roots-custom-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) and (max-width: 1400px) {

    .roots-info-text {
        font-size: 16px !important;
    }

    .roots-text-desc {
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    .roots-privacy-text {
        font-size: 16px !important;
    }
}


.bank-detail-row{
align-items: center;
}