/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a7f64;
    --secondary-color: #2c5f2d;
    --accent-color: #d4af37;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Sans Bengali', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.mosque-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

/* Logo Image Styles */
.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    animation: float 3s ease-in-out infinite;
}

/* Optional: Circular logo style */
.logo-img.circular {
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(26, 127, 100, 0.2);
}

/* Optional: Logo with background */
.logo-img.with-bg {
    background: white;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo-text p {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* Button Styles */
.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-title-en {
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}

.section-subtitle-en {
    text-align: center;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #888;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-subtitle-en {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-description-en {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    opacity: 0.85;
}

.about-bilingual {
    background: #f0f8f5;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid var(--accent-color);
}

.about-bilingual h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.about-bilingual p {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.official-info {
    background: linear-gradient(135deg, rgba(26, 127, 100, 0.05), rgba(212, 175, 55, 0.05));
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border: 2px solid var(--primary-color);
}

.official-info h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.official-info ul {
    list-style: none;
    padding: 0;
}

.official-info ul li {
    padding: 12px;
    margin-bottom: 10px;
    background: var(--white);
    border-radius: 8px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.official-info ul li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.official-info strong {
    color: var(--dark-color);
    font-weight: 700;
}

.english-text {
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
    font-style: italic;
    color: #555;
    margin-top: 10px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    gap: 50px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Prayer Times Section */
.prayer-times {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.prayer-times .section-title,
.prayer-times .section-subtitle {
    color: var(--white);
}

.prayer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.prayer-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.prayer-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.prayer-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.prayer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.prayer-time {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.prayer-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.jumma-time {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.jumma-time h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.jumma-time p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.english-text {
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
}

.hero-notice {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    padding: 20px 30px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 700px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    }
}

.hero-notice .notice-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-notice .notice-text {
    text-align: left;
    flex: 1;
}

.hero-notice strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

/* Committee Section */
.committee {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.committee-content {
    max-width: 1000px;
    margin: 0 auto;
}

.committee-notice {
    background: linear-gradient(135deg, rgba(26, 127, 100, 0.1), rgba(212, 175, 55, 0.1));
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-left: 5px solid var(--accent-color);
}

.committee-notice .notice-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
}

.committee-notice .notice-text p {
    margin-bottom: 10px;
}

.committee-notice strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.committee-structure {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.committee-structure h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.committee-structure > p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #666;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.structure-item {
    background: var(--light-color);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.structure-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, rgba(26, 127, 100, 0.05), rgba(212, 175, 55, 0.05));
}

.position-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 15px;
}

.structure-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.advisory-note {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 127, 100, 0.05));
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed var(--accent-color);
}

.advisory-note h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.advisory-note p {
    margin-bottom: 5px;
}

.committee-contact {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.committee-contact h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.committee-contact h4 {
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-methods {
    display: grid;
    gap: 25px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.method-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.contact-method h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-method p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.election-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px 40px;
    border-radius: 15px;
    color: var(--white);
}

.election-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.election-info h4 {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-card p.english-text {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.info-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 0;
}

/* Responsive for Committee */
@media (max-width: 768px) {
    .committee-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .structure-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .info-value {
        font-size: 1.5rem;
    }
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.committee-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.committee-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.committee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: grayscale(20%);
}

.committee-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.committee-card .name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.committee-card .position {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-style: italic;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-color);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.service-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    line-height: 1.8;
}

/* Donations Section */
.donations {
    background: linear-gradient(135deg, #1e3a8a, #3b0764);
    color: var(--white);
}

.donations .section-title,
.donations .section-subtitle {
    color: var(--white);
}

.donations-content {
    max-width: 900px;
    margin: 0 auto;
}

.donation-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.donation-info > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.donation-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.donation-type {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.donation-type:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.donation-type h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.payment-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.payment-info h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.payment-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Events Section */
.events {
    background: var(--light-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.event-date .month {
    font-size: 1rem;
}

.event-details {
    padding: 30px;
    flex: 1;
}

.event-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Noto Sans Bengali', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
    cursor: pointer;
    border: none;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .prayer-grid {
        grid-template-columns: 1fr;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.8rem;
    }

    .mosque-icon {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Construction Section Styles */
.construction {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.construction-content {
    max-width: 1000px;
    margin: 0 auto;
}

.construction-intro {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.construction-intro h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.construction-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.construction-intro strong {
    color: var(--accent-color);
}

/* Status Grid */
.construction-status {
    margin-bottom: 40px;
}

.construction-status h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 40px;
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.status-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.status-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    transition: width 1s ease;
    min-width: 60px;
    padding: 0 10px;
    white-space: nowrap;
}

.status-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 10px 0;
}

/* Needs Grid */
.construction-needs {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.construction-needs h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.needs-grid {
    display: grid;
    gap: 20px;
}

.need-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.need-item.active {
    background: linear-gradient(135deg, rgba(26, 127, 100, 0.1), rgba(212, 175, 55, 0.1));
    border-left: 5px solid var(--accent-color);
}

.need-item:hover {
    transform: translateX(10px);
}

.need-check {
    font-size: 2rem;
    min-width: 40px;
}

.need-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.need-item p {
    color: #666;
}

/* Impact Grid */
.construction-impact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    color: var(--white);
}

.construction-impact h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.impact-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.impact-card p {
    font-size: 1.1rem;
}

/* Transparency Section */
.construction-transparency {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.construction-transparency h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.transparency-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.transparency-list {
    list-style: none;
    padding: 0;
}

.transparency-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: var(--light-color);
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.transparency-list li:hover {
    background: rgba(26, 127, 100, 0.1);
    transform: translateX(10px);
}

/* Hadith Section */
.hadith-section {
    margin-bottom: 40px;
}

.hadith-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b0764 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.hadith-icon {
    font-size: 4rem;
    min-width: 80px;
    text-align: center;
}

.hadith-text {
    flex: 1;
}

.hadith-arabic {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    direction: rtl;
    text-align: right;
}

.hadith-bengali {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.hadith-reference {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

/* Construction CTA */
.construction-cta {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.construction-cta h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.construction-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for Construction Section */
@media (max-width: 768px) {
    .construction-intro,
    .construction-needs,
    .construction-transparency,
    .construction-cta {
        padding: 25px;
    }
    
    .hero-notice {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .hero-notice .notice-text {
        text-align: center;
    }
    
    .hadith-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .hadith-arabic {
        text-align: center;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Donation Methods Section */
.donation-methods {
    margin-top: 50px;
    text-align: center;
}

.donation-methods h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.method-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.donation-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: 'Noto Sans Bengali', sans-serif;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.donation-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.donation-btn .btn-icon {
    font-size: 3rem;
    min-width: 60px;
}

.donation-btn .btn-text {
    text-align: left;
    flex: 1;
}

.donation-btn strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.donation-btn small {
    font-size: 0.9rem;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
}

.bkash-btn {
    background: linear-gradient(135deg, #E2136E, #c91060);
    color: white;
}

.bank-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover,
.close-btn:focus {
    color: #E2136E;
    transform: rotate(90deg);
}

.modal-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.modal-section h3 {
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Payment Details */
.payment-details {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.payment-card {
    background: linear-gradient(135deg, rgba(226, 19, 110, 0.1), rgba(201, 16, 96, 0.05));
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #E2136E;
}

.payment-card h4 {
    color: #E2136E;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.number-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border: 2px dashed #E2136E;
}

.payment-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: 'Inter', monospace;
}

.payment-type {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Instructions */
.instructions {
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.instructions h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.instructions ol {
    padding-left: 25px;
    line-height: 2;
}

.instructions li {
    margin-bottom: 10px;
}

/* Bank Details */
.bank-details {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    color: #666;
}

.detail-row .value {
    font-weight: 700;
    color: var(--dark-color);
    text-align: right;
}

.detail-row .value.highlight {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-family: 'Inter', monospace;
}

/* Notice Box */
.notice-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ffc107;
    margin-top: 20px;
}

.notice-box p {
    margin-bottom: 10px;
}

/* Contact Options */
.contact-options {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.contact-option {
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-option h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 10px 0;
}

.mosque-address {
    background: linear-gradient(135deg, rgba(26, 127, 100, 0.1), rgba(212, 175, 55, 0.05));
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.mosque-address h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.mosque-address p {
    line-height: 1.8;
}

/* Responsive for Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 25px 20px;
        margin: 10% auto;
    }
    
    .method-buttons {
        gap: 15px;
    }
    
    .donation-btn {
        padding: 20px;
    }
    
    .donation-btn .btn-icon {
        font-size: 2.5rem;
        min-width: 50px;
    }
    
    .donation-btn strong {
        font-size: 1.1rem;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-row .value {
        text-align: left;
    }
    
    .payment-number {
        font-size: 1.2rem;
    }
}

/* Mobile responsive for logo */
@media (max-width: 768px) {
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 45px;
        height: 45px;
    }
}

/* ==========================================
   DONATION TICKER (Scrolling Donor Names)
   ========================================== */

.donation-ticker {
    background: linear-gradient(135deg, #1a7f64 0%, #148a6c 100%);
    color: white;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.ticker-content {
    display: flex;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.ticker-item {
    display: inline-block;
    padding: 0 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.donation-ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* ==========================================
   DONATION STATISTICS
   ========================================== */

.donation-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.donation-stats h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-card.highlight {
    background: linear-gradient(135deg, #1a7f64 0%, #148a6c 100%);
    color: white;
}

.stat-card.highlight .stat-icon,
.stat-card.highlight .stat-value,
.stat-card.highlight .stat-label {
    color: white;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Progress Bar */
.progress-bar-container {
    background: #e0e0e0;
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    margin: 30px 0 20px 0;
    position: relative;
}

.progress-bar {
    height: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a7f64 0%, #26a67a 50%, #1a7f64 100%);
    background-size: 200% 100%;
    animation: progressShine 2s ease-in-out infinite;
    border-radius: 15px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    animation: progressGlow 1.5s ease-in-out infinite;
}

@keyframes progressShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes progressGlow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.stats-note {
    text-align: center;
    color: #666;
    margin: 20px 0;
    font-size: 0.95rem;
}

.view-details-btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: #148a6c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 127, 100, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ticker-item {
        font-size: 0.95rem;
        padding: 0 40px;
    }
    
    .donation-stats {
        padding: 25px 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .progress-bar-container {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .ticker-item {
        font-size: 0.85rem;
        padding: 0 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .donation-stats h3 {
        font-size: 1.4rem;
    }
}

/* Ticker visibility fix - ensure content shows */
.ticker-content {
    min-width: 100%;
}

/* Make sure ticker items are visible */
.donation-ticker .ticker-item:last-child::after {
    content: '';
    padding-right: 50px;
}

/* Additional fixes for construction section overlap */
@media (max-width: 768px) {
    .construction-status h3 {
        margin-bottom: 30px;
        margin-top: 25px;
        font-size: 1.5rem;
    }
    
    .status-card {
        padding: 25px 20px;
    }
    
    .status-card h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .status-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .construction-status h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .status-card h4 {
        font-size: 1.1rem;
    }
}

/* Construction Status Wrapper - Fix Overlap */
.construction-status-wrapper {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.status-section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.status-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #666;
}

/* ==========================================
   HANDWRITTEN DONATION RECORDS GALLERY
   ========================================== */

.donation-records-gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
}

.donation-records-gallery h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.gallery-description {
    text-align: center;
    color: #666;
    margin-bottom: 10px;
    font-size: 1rem;
}

.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.record-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.record-image-placeholder {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.record-image-placeholder p {
    font-weight: 600;
    color: var(--primary-color);
    margin: 10px 0 5px 0;
    font-size: 1.1rem;
}

.record-image-placeholder small {
    color: #666;
    font-size: 0.9rem;
}

.record-caption {
    padding: 20px;
    background: white;
}

.record-caption p {
    margin: 0 0 5px 0;
    color: var(--text-color);
    font-size: 1rem;
}

.record-caption small {
    color: #666;
    font-size: 0.85rem;
}

.records-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.records-note p {
    margin: 5px 0;
    color: #856404;
    font-size: 0.95rem;
}

.records-note strong {
    color: #856404;
}

/* When actual images are added */
.record-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .donation-records-gallery {
        padding: 25px 15px;
    }
    
    .records-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .record-image-placeholder {
        padding: 40px 15px;
        min-height: 200px;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .records-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-records-gallery h3 {
        font-size: 1.4rem;
    }
}

/* ==========================================
   BKASH QR CODE & PAYMENT SYSTEM
   ========================================== */

/* QR Code Section */
.qr-code-section {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #E2136E 0%, #C1105D 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(226, 19, 110, 0.3);
}

.qr-code-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.qr-code-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qr-code-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.qr-note {
    color: white;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 500;
}

/* OR Divider */
.or-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.or-divider span {
    background: white;
    padding: 0 20px;
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

/* bKash Payment Card */
.bkash-card {
    background: linear-gradient(135deg, #E2136E 0%, #C1105D 100%);
    color: white;
    border: none !important;
}

.bkash-card h4 {
    color: white !important;
}

.bkash-card .payment-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.bkash-card .payment-number {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.payment-number.large {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 15px 0;
}

/* Payment Limit */
.payment-limit {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.payment-limit p {
    color: white;
    margin: 5px 0;
    font-size: 0.95rem;
}

.payment-limit strong {
    font-size: 1.2rem;
    color: #FFD700;
}

/* Copy Button */
.copy-btn {
    background: white;
    color: #E2136E;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.copy-btn:active {
    transform: translateY(0);
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    font-weight: 600;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.copy-notification.show {
    transform: translateX(0);
    opacity: 1;
}

/* Payment Link Button */
.payment-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: white;
    color: #E2136E;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.payment-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.payment-link-btn .btn-icon {
    font-size: 2rem;
}

.payment-link-btn .btn-text {
    text-align: left;
}

.payment-link-btn .btn-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.payment-link-btn .btn-text small {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Confirmation Form */
.confirmation-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border: 2px solid #e9ecef;
}

.confirmation-form h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.form-note {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Contact Methods in Form */
.contact-methods {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    word-break: break-all;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.email-link {
    font-size: 0.95rem;
}

/* Confirmation Note */
.confirmation-note {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
}

.confirmation-note ul {
    margin: 15px 0;
    padding-left: 25px;
}

.confirmation-note li {
    margin: 8px 0;
    color: #666;
}

.thank-you {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

/* Contact Popup Large Options */
.contact-option-large {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-option-large .option-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-option-large h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-number-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #E2136E;
    text-decoration: none;
    margin: 15px 0;
    letter-spacing: 1px;
}

.contact-number-large:hover {
    color: var(--accent-color);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.whatsapp-btn:hover {
    background: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 2rem;
}

.email-link-large {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    word-break: break-all;
    margin: 15px 0;
    font-weight: 600;
}

.email-link-large:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .qr-code-image {
        max-width: 220px;
    }
    
    .payment-number.large {
        font-size: 1.5rem;
    }
    
    .contact-number-large {
        font-size: 1.5rem;
    }
    
    .contact-option {
        flex-direction: column;
        text-align: center;
    }
    
    .confirmation-form {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .qr-code-image {
        max-width: 180px;
    }
    
    .copy-notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .copy-notification.show {
        transform: translateY(0);
    }
}

/* ==========================================
   COMMITTEE MEMBERS LIST
   ========================================== */

.committee-members-list {
    margin-bottom: 50px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.member-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

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

.member-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.member-info {
    flex: 1;
}

.member-name {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 3px;
}

.member-position-en {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .member-card {
        padding: 20px;
    }
    
    .member-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .member-name {
        font-size: 1rem;
    }
}

/* ==========================================
   FIX TICKER OVERLAP WITH HEADER
   ========================================== */

/* Add top margin to body to prevent ticker overlap */
body {
    margin-top: 45px; /* Space for fixed ticker */
}

/* Make ticker truly fixed at top */
.donation-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Above everything */
}

/* Push header down */
.header {
    margin-top: 0;
    position: relative;
    z-index: 1000;
}

/* ==========================================
   FUNDRAISING PROGRESS BANNER
   ========================================== */

.fundraising-banner {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 0;
}

.fundraising-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.fundraising-text {
    flex: 1;
    min-width: 250px;
}

.fundraising-text h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.fundraising-text p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 1rem;
}

.fundraising-stats {
    flex: 2;
    min-width: 300px;
}

.progress-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    height: 50px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.progress-bar {
    background: linear-gradient(90deg, #f39c12 0%, #e74c3c 100%);
    height: 100%;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: width 1s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.progress-details {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 1.1rem;
}

.progress-details .collected {
    font-weight: 700;
    color: #f1c40f;
}

.progress-details .target {
    font-weight: 700;
}

.fundraising-cta {
    text-align: center;
}

.donate-now-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.donate-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.donate-now-btn .btn-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

@media (max-width: 768px) {
    body {
        margin-top: 40px;
    }
    
    .fundraising-banner {
        padding: 15px 0;
    }
    
    .fundraising-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fundraising-text h3 {
        font-size: 1.2rem;
    }
    
    .progress-container {
        height: 40px;
    }
    
    .progress-bar {
        font-size: 0.9rem;
    }
    
    .progress-details {
        font-size: 0.95rem;
    }
    
    .donate-now-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ==========================================
   IMPROVED HEADER & LOGO STYLING
   ========================================== */

/* Make logo bigger and more prominent */
.logo-img {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px !important;
    min-height: 90px !important;
}

/* Improve header layout */
.header {
    background: linear-gradient(135deg, #1a5f3f 0%, #27ae60 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
}

.header-content {
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mosque-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover .mosque-icon {
    transform: scale(1.05);
}

/* Make logo text bigger and clearer */
.logo-text h1 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2 !important;
}

.logo-text p {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 5px 0 0 0 !important;
    font-weight: 500 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Navigation improvements */
.nav a {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    padding: 10px 18px !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-img {
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
        min-height: 70px !important;
    }
    
    .logo-text h1 {
        font-size: 1.3rem !important;
    }
    
    .logo-text p {
        font-size: 0.9rem !important;
    }
    
    .header {
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
    }
    
    .logo-text h1 {
        font-size: 1.1rem !important;
    }
    
    .logo-text p {
        font-size: 0.85rem !important;
    }
}

/* ==========================================
   REDESIGNED FUNDRAISING SECTION (ABOVE FOOTER)
   ========================================== */

.fundraising-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-top: 40px;
}

.fundraising-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #27ae60;
}

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

.fundraising-header h2 {
    font-size: 2.2rem;
    color: #27ae60;
    margin-bottom: 10px;
    font-weight: 700;
}

.fundraising-header .english-text {
    font-size: 1.3rem;
    color: #666;
}

.progress-section {
    margin-bottom: 30px;
}

.progress-info {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.amount-box {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.collected-box {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.target-box {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.amount-label {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.95;
    font-weight: 600;
}

.amount-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.amount-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.progress-visual {
    text-align: center;
}

.progress-bar-new {
    background: #e0e0e0;
    height: 50px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    background: linear-gradient(90deg, #f39c12 0%, #e74c3c 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 1s ease;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.4);
}

.progress-percent {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.progress-label {
    margin-top: 15px;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-btn {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    border: 3px solid white;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.6);
}

.cta-btn small {
    font-size: 1rem;
    opacity: 0.95;
}

.remaining-amount {
    text-align: center;
    background: #fff3cd;
    padding: 15px 30px;
    border-radius: 15px;
    border: 2px solid #ffc107;
}

.remaining-amount strong {
    font-size: 1.2rem;
    color: #856404;
}

.remaining-amount small {
    color: #856404;
    opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 968px) {
    .progress-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fundraising-card {
        padding: 30px 20px;
    }
    
    .fundraising-header h2 {
        font-size: 1.6rem;
    }
    
    .amount-value {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
}

/* ==========================================
   FIX CONSTRUCTION STATUS OVERLAP
   ========================================== */

.construction-status {
    background: rgba(255, 193, 7, 0.15) !important;
    border: 2px solid #ffc107 !important;
    padding: 15px !important;
    border-radius: 12px !important;
    margin: 20px 0 !important;
}

.construction-status h3 {
    font-size: 1.3rem !important;
    margin-bottom: 8px !important;
}

.construction-status p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 5px 0 !important;
}

.status-badge {
    display: inline-block !important;
    padding: 6px 15px !important;
    background: #ffc107 !important;
    color: #000 !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    margin: 8px 5px !important;
}

/* ==========================================
   REMOVE OLD FUNDRAISING BANNER STYLES
   ========================================== */

.fundraising-banner {
    display: none !important;
}

/* ==========================================
   FIX BODY TOP MARGIN (REMOVE SPACE FOR OLD BANNER)
   ========================================== */

body {
    margin-top: 45px !important; /* Only space for ticker */
}

/* ==========================================
   FIX BUTTON STYLING FOR PRIMARY CTA
   ========================================== */

.cta-btn.primary-cta {
    cursor: pointer !important;
    border: 3px solid white !important;
    outline: none !important;
}

.cta-btn.primary-cta:focus {
    outline: 2px solid white !important;
    outline-offset: 2px !important;
}

/* ==========================================
   FIX CURRENT STATUS - CLEAN & NO OVERLAP
   ========================================== */

.construction-status-wrapper {
    background: white !important;
    border: 3px solid #27ae60 !important;
    border-radius: 15px !important;
    padding: 25px 20px !important;
    margin: 30px 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.status-section-title {
    font-size: 1.6rem !important;
    color: #27ae60 !important;
    margin: 0 0 8px 0 !important;
    text-align: center !important;
    font-weight: 700 !important;
}

.status-subtitle {
    font-size: 1.1rem !important;
    color: #666 !important;
    margin: 0 0 25px 0 !important;
    text-align: center !important;
}

.status-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 20px !important;
    margin-bottom: 0 !important;
}

.status-card {
    background: #f8f9fa !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    text-align: center !important;
}

.status-icon {
    font-size: 2.5rem !important;
    margin-bottom: 12px !important;
}

.status-card h4 {
    font-size: 1.1rem !important;
    color: #333 !important;
    margin: 0 0 12px 0 !important;
    font-weight: 600 !important;
}

.status-card .progress-bar {
    background: #e0e0e0 !important;
    height: 30px !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    margin: 12px 0 !important;
}

.status-card .progress-fill {
    background: linear-gradient(90deg, #27ae60 0%, #229954 100%) !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
}

.status-card p {
    font-size: 0.95rem !important;
    color: #666 !important;
    margin: 8px 0 0 0 !important;
    line-height: 1.4 !important;
}

.status-time {
    font-size: 1.8rem !important;
    color: #27ae60 !important;
    font-weight: 700 !important;
    margin: 15px 0 !important;
}

.construction-needs {
    margin-top: 30px !important;
}

.construction-needs h3 {
    font-size: 1.4rem !important;
    color: #333 !important;
    margin-bottom: 20px !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .construction-status-wrapper {
        padding: 20px 15px !important;
    }
    
    .status-section-title {
        font-size: 1.3rem !important;
    }
    
    .status-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .status-card {
        padding: 15px !important;
    }
    
    .status-icon {
        font-size: 2rem !important;
    }
}

/* ==========================================
   FLOATING DONATE BUTTON
   ========================================== */

.floating-donate-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
}

.floating-donate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.7);
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
}

.floating-donate-btn .btn-icon {
    font-size: 1.5rem;
}

.floating-donate-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.floating-donate-btn small {
    font-size: 0.8rem;
    opacity: 0.95;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
    }
    50% {
        box-shadow: 0 8px 35px rgba(39, 174, 96, 0.8);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-donate-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .floating-donate-btn .btn-icon {
        font-size: 1.3rem;
    }
    
    .floating-donate-btn small {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .floating-donate-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .floating-donate-btn .btn-text {
        display: none;
    }
    
    .floating-donate-btn .btn-icon {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .floating-donate-btn {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
}

/* ==========================================
   PAYMENT METHODS SECTION
   ========================================== */

.payment-methods-section {
    background: white;
    border: 3px solid #27ae60;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.payment-methods-section h3 {
    font-size: 2rem;
    color: #27ae60;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.payment-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.donation-btn {
    background: white;
    border: 3px solid #ddd;
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.donation-btn .btn-icon {
    font-size: 3rem;
    min-width: 50px;
    text-align: center;
}

.donation-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.donation-btn .btn-text strong {
    font-size: 1.2rem;
    color: #333;
}

.donation-btn .btn-text small {
    font-size: 0.95rem;
    color: #666;
}

.donation-btn.bkash-btn {
    border-color: #e2136e;
}

.donation-btn.bkash-btn:hover {
    background: linear-gradient(135deg, #e2136e 0%, #c0104e 100%);
    border-color: #e2136e;
}

.donation-btn.bkash-btn:hover .btn-text strong,
.donation-btn.bkash-btn:hover .btn-text small {
    color: white;
}

.donation-btn.bank-btn {
    border-color: #3498db;
}

.donation-btn.bank-btn:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-color: #3498db;
}

.donation-btn.bank-btn:hover .btn-text strong,
.donation-btn.bank-btn:hover .btn-text small {
    color: white;
}

.donation-btn.contact-btn {
    border-color: #27ae60;
}

.donation-btn.contact-btn:hover {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-color: #27ae60;
}

.donation-btn.contact-btn:hover .btn-text strong,
.donation-btn.contact-btn:hover .btn-text small {
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .payment-methods-section {
        padding: 30px 20px;
    }
    
    .payment-methods-section h3 {
        font-size: 1.5rem;
    }
    
    .payment-buttons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .donation-btn {
        padding: 20px 15px;
    }
    
    .donation-btn .btn-icon {
        font-size: 2.5rem;
    }
    
    .donation-btn .btn-text strong {
        font-size: 1.1rem;
    }
}

/* ==========================================
   FIX BUTTON ELEMENTS TO WORK AS LINKS
   ========================================== */

button.btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
}

button.btn-primary,
button.btn-secondary {
    display: inline-block;
    cursor: pointer;
}

button.btn:hover {
    opacity: 0.9;
}

/* ==========================================
   SIMPLE MODAL - GUARANTEED TO WORK
   ========================================== */

#donationModal {
    display: none !important;
    position: fixed !important;
    z-index: 99999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    overflow-y: auto !important;
}

#donationModal.show {
    display: block !important;
}

.modal-content {
    background-color: white !important;
    margin: 3% auto !important;
    padding: 40px !important;
    border-radius: 20px !important;
    width: 90% !important;
    max-width: 700px !important;
    position: relative !important;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5) !important;
}

.close-btn {
    position: absolute !important;
    right: 25px !important;
    top: 25px !important;
    font-size: 45px !important;
    font-weight: bold !important;
    color: #999 !important;
    cursor: pointer !important;
    line-height: 1 !important;
    z-index: 10 !important;
}

.close-btn:hover {
    color: #333 !important;
}

.modal-section {
    display: none !important;
}

.modal-section h2 {
    color: #27ae60 !important;
    font-size: 2rem !important;
    margin-bottom: 10px !important;
}

.modal-section h3 {
    color: #666 !important;
    font-size: 1.2rem !important;
    margin-bottom: 30px !important;
}

/* QR Code Section */
.qr-code-container {
    text-align: center !important;
    margin: 30px 0 !important;
}

.qr-code-image {
    max-width: 300px !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Bank Details */
.bank-details {
    background: #f8f9fa !important;
    padding: 25px !important;
    border-radius: 15px !important;
    margin: 20px 0 !important;
}

.detail-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #ddd !important;
}

.detail-row:last-child {
    border-bottom: none !important;
}

.detail-row .label {
    font-weight: 600 !important;
    color: #333 !important;
    flex: 1 !important;
}

.detail-row .value {
    font-weight: 700 !important;
    color: #27ae60 !important;
    flex: 1 !important;
    text-align: right !important;
    font-size: 1.1rem !important;
}

.copy-btn {
    background: #27ae60 !important;
    color: white !important;
    border: none !important;
    padding: 8px 15px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
    margin-left: 10px !important;
}

.copy-btn:hover {
    background: #229954 !important;
}

.notice-box {
    background: #fff3cd !important;
    border: 2px solid #ffc107 !important;
    padding: 20px !important;
    border-radius: 10px !important;
    margin-top: 25px !important;
}

.notice-box p {
    margin: 10px 0 !important;
    color: #856404 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 95% !important;
        padding: 25px 20px !important;
        margin: 10% auto !important;
    }
    
    .close-btn {
        right: 15px !important;
        top: 15px !important;
        font-size: 35px !important;
    }
    
    .detail-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .detail-row .value {
        text-align: left !important;
    }
}

/* ==========================================
   STICKY HEADER - STAYS AT TOP
   ========================================== */

.header {
    position: sticky !important;
    top: 45px !important; /* Below ticker */
    z-index: 9998 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Adjust body for ticker + sticky header */
body {
    margin-top: 45px !important; /* Space for ticker only */
}

/* ==========================================
   SMALLER, NICER HEADER - FIXED
   ========================================== */

.header {
    position: sticky !important;
    top: 45px !important;
    background: linear-gradient(135deg, #1a5f3f 0%, #27ae60 100%) !important;
    padding: 12px 0 !important; /* Reduced from 20px */
    z-index: 9998 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
}

.header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

/* Logo - Smaller and compact */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important; /* Reduced gap */
}

.logo-img {
    width: 50px !important; /* Reduced from 90px */
    height: 50px !important;
    border-radius: 50% !important;
    background: white !important;
    padding: 3px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.logo-text h1 {
    font-size: 1.3rem !important; /* Reduced from 1.8rem */
    color: white !important;
    margin: 0 !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.logo-text p {
    font-size: 0.85rem !important; /* Reduced from 1.1rem */
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 2px 0 0 0 !important;
}

/* Navigation - More compact */
.nav {
    display: flex !important;
    gap: 15px !important; /* Reduced from 25px */
}

.nav a {
    color: white !important;
    text-decoration: none !important;
    font-size: 0.95rem !important; /* Reduced from 1.1rem */
    padding: 8px 12px !important; /* Reduced padding */
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
}

.menu-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: white !important;
    margin: 5px 0 !important;
    border-radius: 2px !important;
}

/* Mobile responsive */
@media (max-width: 968px) {
    .header {
        padding: 10px 0 !important;
    }
    
    .logo-img {
        width: 45px !important;
        height: 45px !important;
    }
    
    .logo-text h1 {
        font-size: 1.1rem !important;
    }
    
    .logo-text p {
        font-size: 0.75rem !important;
    }
    
    .nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #1a5f3f !important;
        flex-direction: column !important;
        gap: 0 !important;
        display: none !important;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) !important;
    }
    
    .nav.active {
        display: flex !important;
    }
    
    .nav a {
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 0 !important;
    }
    
    .menu-toggle {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .logo-text h1 {
        font-size: 1rem !important;
    }
    
    .logo-text p {
        font-size: 0.7rem !important;
    }
}

/* ==========================================
   PAYMENT SECTIONS - PROFESSIONAL & READABLE
   ========================================== */

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.payment-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.payment-card.bkash {
    border: 3px solid #e2136e;
}

.payment-card.bank {
    border: 3px solid #3498db;
}

.payment-card h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-card.bkash h3 {
    color: #e2136e;
}

.payment-card.bank h3 {
    color: #3498db;
}

/* QR Code Section */
.qr-section {
    text-align: center;
    margin: 20px 0;
}

.qr-section img {
    max-width: 220px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.qr-section p {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}

/* Number Display */
.number-display {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.number-display .label {
    font-size: 0.95rem;
    color: #856404;
    margin-bottom: 8px;
    font-weight: 600;
}

.number-display .number {
    font-size: 1.8rem;
    color: #e2136e;
    font-weight: 700;
    margin: 10px 0;
    letter-spacing: 2px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.action-btn {
    background: #27ae60;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.action-btn.bkash-btn {
    background: #e2136e;
}

.action-btn.bkash-btn:hover {
    background: #c0104e;
    box-shadow: 0 4px 12px rgba(226, 19, 110, 0.3);
}

.action-btn.copy-btn {
    background: #3498db;
}

.action-btn.copy-btn:hover {
    background: #2980b9;
}

/* Details Section */
details {
    margin-top: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 5px;
}

summary {
    cursor: pointer;
    padding: 12px 15px;
    font-weight: 600;
    color: #333;
    background: #e9ecef;
    border-radius: 6px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
}

details .details-content {
    padding: 15px;
    color: #333;
    line-height: 1.8;
}

details ol {
    padding-left: 25px;
}

details ol li {
    margin: 8px 0;
    color: #555;
}

/* Bank Details Section */
.bank-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.bank-detail-row {
    margin: 12px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-detail-row .label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
    font-weight: 600;
    display: block;
}

.bank-detail-row .value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.bank-detail-row .value.large {
    font-size: 1.3rem;
    color: #3498db;
    letter-spacing: 1px;
}

.bank-detail-row .inline-copy {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border: none;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-left: 8px;
}

.bank-detail-row .inline-copy:hover {
    background: #2980b9;
}

/* Contact Card */
.contact-card {
    background: white;
    border: 3px solid #27ae60;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto 40px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    color: #27ae60;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-option {
    text-align: center;
}

.contact-option .label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.contact-option .number {
    font-size: 1.3rem;
    color: #27ae60;
    font-weight: 700;
    margin: 8px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .payment-card {
        padding: 25px 20px;
    }
    
    .number-display .number {
        font-size: 1.5rem;
    }
    
    .action-buttons {
        gap: 8px;
    }
    
    .action-btn {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
}

/* ==========================================
   FLOATING DONATE BUTTON - COLORFUL & VISIBLE
   ========================================== */

.floating-donate-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9ff3 100%) !important;
    color: white !important;
    padding: 18px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 700 !important;
    animation: pulse-colorful 2s infinite !important;
}

@keyframes pulse-colorful {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.7);
    }
}

.floating-donate-btn:hover {
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.8) !important;
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 50%, #feca57 100%) !important;
}

.floating-donate-btn .btn-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    line-height: 1.3 !important;
}

.floating-donate-btn strong {
    font-size: 1.1rem !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.floating-donate-btn small {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
}

/* Mobile - Compact but still visible */
@media (max-width: 768px) {
    .floating-donate-btn {
        bottom: 20px !important;
        right: 20px !important;
        padding: 15px 25px !important;
    }
    
    .floating-donate-btn strong {
        font-size: 1rem !important;
    }
    
    .floating-donate-btn small {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .floating-donate-btn {
        bottom: 15px !important;
        right: 15px !important;
        padding: 12px 20px !important;
    }
    
    .floating-donate-btn strong {
        font-size: 0.95rem !important;
    }
}
