/* ===================== Reset ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}
img, .home-container, .about-container, .dq-container {
    max-width: 100%;
    width: 100%;
}

/* ================= CAROUSEL INDICATORS (BLACK CIRCLE) ================= */ 

#carouselExampleCaptions .carousel-indicators {
    bottom: 14px;
    gap: 10px;
}

#carouselExampleCaptions .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff !important;
    opacity: 0.85;
    border: none;
    box-shadow:
    0 0 0 6px rgba(0,0,0,0.65),
    0 0 6px rgba(255,255,255,0.9);
    transition: all 0.25s ease;
}

/* Active bullet */
#carouselExampleCaptions .carousel-indicators .active {
    width: 9px;
    height: 9px;
    opacity: 1;
    box-shadow:
        0 0 0 7px rgba(0,0,0,0.8),
        0 0 10px rgba(255,255,255,1);
}

/* ================= CAROUSEL ARROWS (BLACK CIRCLE) ================= */

#carouselExampleCaptions .carousel-control-prev,
#carouselExampleCaptions .carousel-control-next {
    width: 9%;
    opacity: 1;
    z-index: 10;
}

/* Arrow icon + black circle */
#carouselExampleCaptions .carousel-control-prev-icon,
#carouselExampleCaptions .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    background-size: 55% 55%;
    box-shadow:
        0 0 10px rgba(0,0,0,0.9),
        0 0 6px rgba(255,255,255,0.6);
}

/* Hover effect */
#carouselExampleCaptions .carousel-control-prev-icon:hover,
#carouselExampleCaptions .carousel-control-next-icon:hover {
    background-color: rgba(0,0,0,0.9);
}





/* ===================== Reset ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}
/* ===================== Navbar ===================== */
.navbar {
    width: 100%;
    background: #1e4620;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 12px 20px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

.logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f4d35e;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover {
    color: #f4d35e;
    transform: scale(1.05);
}

.button_btn {
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.donate-btn {
    background: #f4d35e;
    color: #1e4620;
}

.donate-btn:hover {
    background: #e0b440;
    color: #1e4620;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================== Home Section ===================== */
.home-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 60px;
    background: linear-gradient(to right, #e6f2e6, #ffffff);
    color: #1e4620;
    width: 100%;
}

.home-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    /*padding: 20px;*/
    padding-left: 60px;
    flex-wrap: wrap;
    /*gap: 15px;*/
    
}

.home-text {
    flex: 1 1 48%;
    padding: 10px;
    min-width: 280px;
}

.home-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e4620;
}

.home-text p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #4b7744;
}

.home-content {
    margin-top: 15px;
}

.home-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e4620;
    margin-bottom: 15px;
    margin-top: 20px;
}

.home-content ul {
    margin: 15px 0;
    padding-left: 25px;
    color: #4b7744;
}

.home-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.home-buttons .button_btn {
    margin-right: 15px;
    font-size: 0.95rem;
    padding: 10px 20px;
}

.home-buttons .join-btn {
    background: #1e4620;
    color: #f4d35e;
}

.home-buttons .join-btn:hover {
    background: #145214;
}

.home-image {
    flex: 1 1 50%;
     padding: 0 10px;
    text-align: center;
    min-width: 280px;
}

.home-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 20px;
    max-height: 330px;
    object-fit: cover;
}

.home-additional-images {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.home-additional-images img {
    flex: 1 1 calc(50% - 7.5px);
    min-width: 150px;
    max-width: 230px;
    height: auto;
    border-radius: 15px;
    max-height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.home-additional-images img:hover {
    transform: scale(1.05);
}

/* ===================== Responsive Navbar & Home ===================== */
@media (max-width: 991px) {
    /* Hamburger visible */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        z-index: 1100; /* above nav links */
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0; /* was 20px, change to 0 */
        left: auto;
        background: #1e4620;
        padding: 10px 15px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        width: auto;
        min-width: 120px; /* cute size */
        max-width: calc(100% - 20px); /* prevent overflow */
        z-index: 1050;
        transition: all 0.3s ease;
    }
    .nav-links.active {
        display: flex; /* show menu on click */
    }

    /* Home section responsiveness */
    .home-container {
        flex-direction: column;
        text-align: center;
        gap: 15px:
    padding-left: 0px;
    padding: 20px;
}

    .home-image img {
        margin-top: 20px;
        max-width: 500px;
        width: 100%;
    }
}


/* ===================== Responsive Font Sizes ===================== */
@media (max-width: 900px) {
    .logo span { font-size: 1.2rem; }
    .btn { font-size: 0.85rem; padding: 7px 15px; }
    .hamburger span { width: 22px; height: 2.8px; }
}

@media (max-width: 800px) {
    .logo span { font-size: 1.1rem; }
    .btn { font-size: 0.8rem; padding: 6px 14px; }
    .hamburger span { width: 20px; height: 2.5px; }
}

@media (max-width: 700px) {
    .logo span { font-size: 1rem; }
    .btn { font-size: 0.75rem; padding: 5px 12px; }
    .hamburger span { width: 18px; height: 2.3px; }
}

@media (max-width: 600px) {
    .logo span { font-size: 0.95rem; }
    .btn { font-size: 0.7rem; padding: 4px 10px; }
    .hamburger span { width: 16px; height: 2px; }
}

@media (max-width: 550px) {
    .logo span { font-size: 0.9rem; }
    .button_btn { font-size: 0.65rem; padding: 5px 8px; }
    .hamburger span { width: 14px; height: 2px; }
}

@media (max-width: 420px) {
    .home-buttons { gap: 5px; }
    .home-buttons .button_btn { font-size: 0.75rem; }
}

@media (max-width: 362px) {
    .home-buttons { gap: 2px; }
    .home-buttons .button_btn { font-size: 0.6rem; padding: 10px; }
    .logo span { font-size: 0.7rem; font-weight: 500; }
    .button_btn { font-size: 0.6rem; padding: 5px 8px; }
}

/* ===================== Prevent Horizontal Scroll ===================== */
body, .container, .home-container, .home-text, .home-image {
    max-width: 100%;
}

/* ===================== Prayer Times ===================== */
.prayer-times {
    padding: 0 20px 60px 20px;
    background: #f7faf7;
    margin-top: 0;
}

.pt-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.pt-header i {
    font-size: 3rem;
    color: #1e4620;
}

.pt-header h2 {
    font-size: 2rem;
    margin-top: 10px;
    color: #1e4620;
    font-weight: 700;
}

.pt-header p {
    margin-top: 5px;
    font-size: 1rem;
    color: #4b7744;
}

.pt-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.pt-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #1e4620;
    transition: 0.3s;
}

.pt-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pt-box h3 {
    font-size: 1.4rem;
    color: #1e4620;
    margin-bottom: 10px;
}

.pt-box p {
    font-size: 1rem;
    color: #4b7744;
    margin: 3px 0;
}

/* ===================== Jumma Timing ===================== */
.jumma-timing {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 15px;
    margin: 20px 0;
    background: linear-gradient(90deg, #e6f9e6, #c8f2c8); 
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.jumma-timing h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #145214; /* dark green */
    margin: 0;
    white-space: nowrap;
}

.jt-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.jt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* spacing between span and p */
    background: #1e4620;
    color: #d4f7d4;
    padding: 6px 14px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: 0.3s;
}

.jt-btn p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.jt-btn:hover {
    background: #145214;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jumma-timing {
        flex-direction: column;
        text-align: center;
    }

    .jt-buttons {
        justify-content: center;
    }
}
/* Responsive font adjustments */
@media (max-width: 1024px) {
    .jumma-timing h3 {
        font-size: 1.1rem;
    }
    .jt-btn, .jt-btn p {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
}

@media (max-width: 768px) {
    .jumma-timing {
        flex-direction: column;
        text-align: center;
    }

    .jt-buttons {
        justify-content: center;
    }

    .jumma-timing h3 {
        font-size: 1rem;
    }
    .jt-btn, .jt-btn p {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .jumma-timing h3 {
        font-size: 0.95rem;
    }
    .jt-btn, .jt-btn p {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}






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

@media (max-width: 500px) {
    .pt-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== Footer ===================== */
.site-footer {
    background: #1e4620;
    color: #f4d35e;
    padding: 50px 20px 30px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.footer-col {
    flex: 1 1 250px;
    min-width: 220px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid #f4d35e;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 5px 0;
}

.footer-col p i {
    margin-right: 8px;
    color: #f4d35e;
}

.footer-col .arabic {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-col a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    background: #f4d35e;
    color: #1e4620;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-col a:hover {
    background: #e0b440;
}

.footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #f4d35e;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 5px 0;
}

.footer-bottom a {
    color: #f4d35e;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        min-width: 80%;
    }
}



/*info===================*/
.mosque-info {
    background: linear-gradient(135deg, #e6f9e6, #c8f2c8); /* light green gradient */
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    margin: 30px 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.mosque-info h2 {
    font-size: 2rem;
    color: #145214;
    margin-bottom: 15px;
    font-weight: 700;
}

.mosque-info .description {
    font-size: 1.1rem;
    color: #1e4620;
    margin-bottom: 25px;
}

.mosque-info .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mosque-info .location,
.mosque-info .phones {
    font-size: 1rem;
    color: #145214;
}

.mosque-info .phones ul {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.mosque-info .phones ul li {
    margin: 3px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mosque-info h2 {
        font-size: 1.6rem;
    }
    .mosque-info .description {
        font-size: 1rem;
    }
    .mosque-info .location,
    .mosque-info .phones {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .mosque-info h2 {
        font-size: 1.4rem;
    }
    .mosque-info .description {
        font-size: 0.95rem;
    }
    .mosque-info .location,
    .mosque-info .phones {
        font-size: 0.9rem;
    }
}


/* ===================== Community Info Section ===================== */
.community-info-section {
    position: relative;
    background: linear-gradient(135deg, #e6f2e6, #ffffff);
    padding: 60px 20px;
    overflow: hidden;
}

.section-overlay {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section-content {
    text-align: center;
    color: #1e4620;
}

.section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-content p {
    font-size: 1.1rem;
    color: #4b7744;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

.section-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 3rem;
    color: #1e4620;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    color: #4b7744;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .section-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .section-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .section-features {
        grid-template-columns: 1fr;
    }

    .section-content h2 {
        font-size: 2rem;
    }

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

/* ===================== About Section ===================== */
.about-section {
    background: linear-gradient(135deg, #e6f2e6, #ffffff);
    padding: 60px 20px;
    color: #1e4620;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 30px;
}

.about-text {
    flex: 1 1 50%;
    min-width: 280px;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4b7744;
    margin-bottom: 25px;
}

.about-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e4620;
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-text ul {
    margin: 15px 0;
    padding-left: 25px;
    color: #4b7744;
}

.about-text ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.about-buttons .btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 15px;
    transition: 0.3s;
    font-size: 0.95rem;
}

.about-btn {
    background: #1e4620;
    color: #f4d35e;
}

.about-btn:hover {
    background: #145214;
}

.map-btn {
    background: #f4d35e;
    color: #1e4620;
}

.map-btn:hover {
    background: #e0b440;
}

.about-image {
    flex: 1 1 45%;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: 300px;   ✅
    object-fit: cover;
}


/* Tablet / small laptops */
@media (max-width: 991px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;       
        padding: 0 10px; 
        max-width: 100%; 
    }

    .about-text {
        flex: 1 1 100%;
        box-sizing: border-box;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-buttons .btn {
        margin: 8px 5px;
    }
  .about-image {
  width: 100%; 
  max-width: 600px; 
  margin: auto;
}
   

    .about-image img {
        width: 100%;
        max-width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }
}

/* Mobile devices */
@media (max-width: 550px) {
    .about-container {
        gap: 15px;
        padding: 0 10px;
    }

    .about-text h2 {
        font-size: 1.7rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-buttons .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .about-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%;
    }
}


/* ===================== Donate & Quran Section ===================== */
.donate-quran-section {
    background: linear-gradient(135deg, #f7faf7, #e6f2e6);
    padding: 60px 20px;
    color: #1e4620;
}

.dq-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 40px;
}

.donate-info {
    flex: 0 0 50%;
    min-width: 280px;
}

.donate-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.donate-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #4b7744;
}

.donate-info blockquote {
    background: #f4f4f4;
    padding: 15px 20px;
    border-left: 5px solid #1e4620;
    font-style: italic;
    margin-bottom: 20px;
    color: #3a5932;
}

.account-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.account-details p {
    margin: 3px 0;
    font-size: 0.95rem;
}

.quran-info {
    flex: 0 0 45%;
    min-width: 280px;
    text-align: center;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.quran-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.quran-info i {
    font-size: 3rem;
    color: #1e4620;
    margin-bottom: 15px;
    display: block;
}

.quran-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1e4620;
}

.quran-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b7744;
    margin-bottom: 15px;
}

.join-quran-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #1e4620;
    color: #f4d35e;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.join-quran-btn:hover {
    background: #145214;
}

/* ===================== Executive Committee Section ===================== */
.executive-committee-section {
    background: linear-gradient(135deg, #ffffff, #e6f2e6);
    padding: 60px 20px;
    color: #1e4620;
}

.committee-header {
    text-align: center;
    margin-bottom: 40px;
}

.committee-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e4620;
    margin-bottom: 10px;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.committee-member {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    margin-bottom: 15px;
}

.member-image img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f4d35e;
    margin: 0 auto;
    display: block;
}

.member-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #e6f2e6;
    border: 4px solid #f4d35e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.member-placeholder i {
    font-size: 4rem;
    color: #4b7744;
}

.member-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e4620;
    margin-bottom: 8px;
}

.member-info p {
    font-size: 0.95rem;
    color: #4b7744;
    font-style: italic;
}

/* Responsive */
@media (max-width: 991px) {
    .committee-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .member-image img,
    .member-placeholder {
        max-width: 150px;
        height: 150px;
    }

    .member-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .committee-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .member-image img,
    .member-placeholder {
        max-width: 120px;
        height: 120px;
    }

    .member-placeholder i {
        font-size: 2.5rem;
    }

    .member-info h3 {
        font-size: 1rem;
    }

    .member-info p {
        font-size: 0.85rem;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .dq-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .donate-info,
    .quran-info {
        flex: 1 1 100%;
    }

    .quran-info {
        margin-top: 30px;
    }
}

@media (max-width: 550px) {

    .donate-info h2,
    .quran-info h2 {
        font-size: 1.6rem;
    }

    .donate-info p,
    .quran-info p,
    .account-details p {
        font-size: 0.95rem;
    }

    .quran-info i {
        font-size: 2.5rem;
    }
}