/*
Theme Name: Swapno Chui
Theme URI: https://swapnochui.com
Author: Abu Shafiq
Author URI: https://www.facebook.com/abushafiqorg/
Description: স্বপ্ন ছুই সামাজিক উন্নয়ন সংস্থার অফিসিয়াল ওয়ার্ডপ্রেস থিম। রংপুর বিভাগের লালমনিরহাট জেলার পাটগ্রাম উপজেলায় কার্যরত এই সামাজিক সংস্থার জন্য বিশেষভাবে তৈরি।
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: swapnochui
Tags: bangla, social-organization, ngo, responsive, custom-menu, featured-images
*/

/* =============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================= */
:root {
    --primary-color: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #22c55e;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --accent-color: #06b6d4;
    --text-dark: #1f2937;
    --text-medium: #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-green-light: #f0fdf4;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --border-green: #bbf7d0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    --font-bangla: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-bangla);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-bangla);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

button, input, textarea, select {
    font-family: var(--font-bangla);
    font-size: inherit;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-green-light);
    color: var(--primary-color);
    border: 1px solid var(--border-green);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(26px, 4vw, 38px);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22,163,74,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--bg-green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: white;
    transform: translateY(-2px);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: var(--text-dark);
    color: #d1d5db;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar a {
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar a:hover { color: var(--primary-light); }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-green);
}

.logo-text-wrap .logo-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    display: block;
}

.logo-text-wrap .logo-tagline {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 500;
    display: block;
}

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 8px 14px;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 14.5px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.current-menu-item > a {
    color: var(--primary-color);
    background: var(--bg-green-light);
}

/* Dropdown */
.main-nav .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    z-index: 100;
}

.main-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--text-medium);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.main-nav .sub-menu li:last-child a { border-bottom: none; }

.main-nav .sub-menu li a:hover {
    color: var(--primary-color);
    background: var(--bg-green-light);
    padding-left: 24px;
}

.header-donate-btn {
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mobile-nav.open { display: block; }

.mobile-nav ul { list-style: none; }

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--text-medium);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.mobile-nav ul li:last-child a { border-bottom: none; }

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

.mobile-donate-btn {
    display: block;
    text-align: center;
    margin-top: 16px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 30%, #047857 60%, #059669 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C300,0 900,0 1200,60 L1200,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(28px, 4.5vw, 50px);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-title span {
    color: #6ee7b7;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #6ee7b7;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    display: block;
    margin-top: 4px;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.2);
}

.hero-img-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,78,59,0.6) 0%, transparent 60%);
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-img-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hero-img-badge .badge-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
}

.hero-img-badge .badge-text span {
    color: var(--primary-color);
    font-size: 12px;
}

.hero-decorative {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    animation: float 6s ease-in-out infinite;
}

.hero-decorative.d1 { width: 200px; height: 200px; top: 10%; right: -60px; animation-delay: 0s; }
.hero-decorative.d2 { width: 120px; height: 120px; bottom: 20%; left: -30px; animation-delay: 2s; }
.hero-decorative.d3 { width: 80px; height: 80px; top: 50%; right: 10%; animation-delay: 4s; }

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

/* =============================================
   GOALS & OBJECTIVES SECTION
   ============================================= */
.goals-section {
    background: var(--bg-white);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.goal-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.goal-card:hover::before { transform: scaleX(1); }

.goal-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: var(--border-green);
}

.goal-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-green-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: var(--transition);
}

.goal-card:hover .goal-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.goal-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.goal-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   NOTICE BOARD SECTION
   ============================================= */
.notice-section {
    background: var(--bg-light);
}

.notice-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.notice-board-wrap {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.notice-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-header h2 {
    font-size: 20px;
    color: white;
    margin: 0;
}

.notice-body {
    max-height: 400px;
    overflow-y: auto;
}

.notice-body::-webkit-scrollbar { width: 6px; }
.notice-body::-webkit-scrollbar-track { background: var(--bg-light); }
.notice-body::-webkit-scrollbar-thumb { background: var(--border-green); border-radius: 3px; }

.notice-item {
    padding: 18px 28px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--bg-green-light); }

.notice-date-badge {
    flex-shrink: 0;
    background: var(--bg-green-light);
    border: 1px solid var(--border-green);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.notice-text h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.notice-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.notice-new-badge {
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Info Cards beside Notice */
.info-cards-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.info-card-header {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card-header.green { background: var(--primary-color); color: white; }
.info-card-header.red { background: #ef4444; color: white; }
.info-card-header.blue { background: var(--accent-color); color: white; }

.info-card-body {
    padding: 16px 20px;
}

.schedule-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-medium);
}

.schedule-list li:last-child { border-bottom: none; }
.schedule-list li::before {
    content: '🕐';
    font-size: 14px;
}

.blood-call {
    text-align: center;
    padding: 8px 0;
}

.blood-number {
    font-size: 22px;
    font-weight: 800;
    color: #ef4444;
    display: block;
    margin: 8px 0;
}

.blood-call p {
    font-size: 13px;
    color: var(--text-light);
}

.upcoming-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.upcoming-list li:last-child { border-bottom: none; }

.upcoming-date {
    flex-shrink: 0;
    background: var(--bg-green-light);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

/* =============================================
   SUPPORT / DONATE SECTION
   ============================================= */
.support-section {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.support-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.support-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.support-header h2 {
    font-size: clamp(26px, 4vw, 38px);
    color: white;
    margin-bottom: 14px;
}

.support-header p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin: 0 auto;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.support-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.support-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.support-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.support-card:hover .support-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.support-card h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
}

.support-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.support-card .btn-white {
    font-size: 14px;
    padding: 10px 24px;
}

/* =============================================
   FOUNDERS SECTION
   ============================================= */
.founders-section {
    background: var(--bg-light);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.founder-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.founder-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.founder-img-wrap {
    position: relative;
    padding-top: 28px;
    background: linear-gradient(135deg, var(--bg-green-light), var(--bg-white));
}

.founder-img-wrap img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.founder-img-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.founder-info {
    padding: 20px 20px 24px;
}

.founder-info h3 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.founder-role {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.founder-bio {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.founder-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.founder-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    color: var(--text-medium);
}

.founder-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.founder-social-btn.fb:hover { background: #1877f2; color: white; border-color: #1877f2; }
.founder-social-btn.wa:hover { background: #25d366; color: white; border-color: #25d366; }

/* =============================================
   MANAGEMENT COMMITTEE SECTION
   ============================================= */
.committee-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.committee-section .section-title { margin-bottom: 40px; }

.committee-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.committee-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid;
    cursor: pointer;
}

.committee-btn.advisory {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}
.committee-btn.advisory:hover {
    background: #1d4ed8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29,78,216,0.3);
}

.committee-btn.board {
    background: var(--bg-green-light);
    color: var(--primary-dark);
    border-color: var(--border-green);
}
.committee-btn.board:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(22,163,74,0.3);
}

.committee-btn.central {
    background: #fff7ed;
    color: #c2410c;
    border-color: #fed7aa;
}
.committee-btn.central:hover {
    background: #c2410c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(194,65,12,0.3);
}

/* =============================================
   PARTNER ORGANIZATIONS SECTION
   ============================================= */
.partners-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.partner-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.partner-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--border-green);
}

.partner-logo-wrap {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-green);
}

.partner-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-logo-placeholder {
    font-size: 36px;
}

.partner-info h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.partner-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   RECENT POSTS SECTION
   ============================================= */
.posts-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.post-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.post-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.08);
}

.post-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.post-thumb-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-green-light), var(--bg-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.post-body {
    padding: 20px 22px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-body h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-body h3 a {
    color: var(--text-dark);
}

.post-body h3 a:hover { color: var(--primary-color); }

.post-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.post-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.post-read-more:hover { gap: 10px; }

/* =============================================
   REGISTRATION FORM SECTION
   ============================================= */
.register-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.register-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.register-info h2 {
    font-size: clamp(24px, 3.5vw, 34px);
    margin-bottom: 16px;
}

.register-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
}

.register-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-medium);
}

.register-features li::before {
    content: '✅';
    font-size: 16px;
    flex-shrink: 0;
}

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
}

.form-label span.required {
    color: #ef4444;
    margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-bangla);
    color: var(--text-dark);
    background: white;
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.form-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22,163,74,0.35);
}

/* Contact Form */
.contact-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-block {
    background: linear-gradient(135deg, #064e3b, #047857);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    color: white;
    position: sticky;
    top: 100px;
}

.contact-info-block h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
}

.contact-info-block > p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-text strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-detail-text span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: linear-gradient(160deg, #0f2027 0%, #064e3b 50%, #1a1a2e 100%);
    color: rgba(255,255,255,0.8);
}

.footer-main {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-logo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.footer-logo-text .name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.footer-logo-text .tagline {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.footer-brand > p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    color: white;
}

.footer-social:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

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

.footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.footer-contact-text a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-text a:hover { color: var(--primary-light); }

/* Footer Bar */
.footer-bar {
    background: rgba(0,0,0,0.3);
    padding: 16px 0;
}

.footer-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bar-left, .footer-bar-right {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.footer-bar-left a, .footer-bar-right a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-bar-left a:hover, .footer-bar-right a:hover {
    color: var(--primary-light);
}

.footer-bar-links {
    display: flex;
    gap: 16px;
    margin-bottom: 4px;
}

.developer-credit {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
}

.developer-credit a {
    color: var(--primary-light);
    font-weight: 600;
}

/* =============================================
   VOLUNTEERS PAGE
   ============================================= */
.volunteers-page {
    padding: 80px 0;
    background: var(--bg-light);
}

.page-hero {
    background: linear-gradient(135deg, #064e3b, #047857);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    color: white;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
}

.volunteers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.volunteer-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.volunteer-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.volunteer-img-wrap {
    height: 180px;
    overflow: hidden;
    background: var(--bg-green-light);
    position: relative;
}

.volunteer-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.volunteer-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: linear-gradient(135deg, var(--bg-green-light), var(--bg-gray));
}

.volunteer-info {
    padding: 16px;
}

.volunteer-info h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.volunteer-blood {
    display: inline-block;
    background: #fee2e2;
    color: #ef4444;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.volunteer-district {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* =============================================
   DONATE PAGE
   ============================================= */
.donate-page {
    padding: 80px 0;
}

.donate-hero {
    background: linear-gradient(135deg, #064e3b, #047857);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0;
}

.donate-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.donate-method-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.donate-method-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--border-green);
}

.donate-method-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.donate-method-logo.bkash { background: #e2136e; }
.donate-method-logo.rocket { background: #8b2be2; }
.donate-method-logo.nagad { background: #f0721a; }
.donate-method-logo.bank { background: var(--primary-color); }

.donate-method-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.donate-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    margin: 10px 0;
    letter-spacing: 1px;
}

.donate-type {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

/* =============================================
   SINGLE POST / AUTHOR BOX
   ============================================= */
.single-post-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 20px;
}

.post-header-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-light);
}

.post-featured-img {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-lg);
}

.post-featured-img img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.post-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-medium);
}

.post-content h2, .post-content h3 { color: var(--text-dark); margin: 28px 0 12px; }
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 18px 0 18px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: var(--bg-green-light);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-medium);
}

.author-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 50px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid var(--border-color);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--border-green);
}

.author-details h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.author-details .author-role {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.author-details p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Comments Section */
.comments-section {
    margin-top: 50px;
    border-top: 2px solid var(--border-color);
    padding-top: 40px;
}

.comments-section h3 {
    font-size: 22px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.comment-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}

.comment-item:last-child { border-bottom: none; }

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.comment-author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.comment-date {
    font-size: 13px;
    color: var(--text-muted);
}

.comment-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   PAGE TEMPLATES
   ============================================= */
.page-template-default .entry-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-medium);
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,78,59,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    font-size: 36px;
    color: white;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =============================================
   SUCCESS / ERROR MESSAGES
   ============================================= */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
    background: var(--bg-light);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
}

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

.breadcrumb-sep {
    margin: 0 8px;
    opacity: 0.5;
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(22,163,74,0.4);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    color: white;
}

/* =============================================
   ADMIN MESSAGE
   ============================================= */
.wpcf7-response-output {
    padding: 12px 16px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 14px !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .notice-section .container { grid-template-columns: 1fr; }
    .info-cards-side { flex-direction: row; flex-wrap: wrap; }
    .info-card { flex: 1; min-width: 200px; }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrap { order: -1; }
    .hero-img-frame img { height: 300px; }
    .support-cards { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .register-wrap { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .contact-info-block { position: static; }
    .donate-methods { grid-template-columns: repeat(2, 1fr); }
    .committee-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
    .main-nav, .header-donate-btn { display: none; }
    .hamburger { display: flex; }
    .section-padding { padding: 60px 0; }
    .form-grid { grid-template-columns: 1fr; }
    .goals-grid { grid-template-columns: 1fr 1fr; }
    .founders-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .top-bar { display: none; }
    .hero-stats { gap: 20px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: fit-content; }
    .footer-bar .container { flex-direction: column; text-align: center; gap: 8px; }
    .form-card { padding: 24px 20px; }
    .notice-section .container { gap: 20px; }
}

@media (max-width: 480px) {
    .goals-grid { grid-template-columns: 1fr; }
    .founders-grid { grid-template-columns: 1fr; }
    .volunteers-grid { grid-template-columns: repeat(2, 1fr); }
    .donate-methods { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    .info-cards-side { flex-direction: column; }
    .partners-grid { grid-template-columns: 1fr; }
    .partner-card { flex-direction: column; align-items: center; text-align: center; }
    .author-box { flex-direction: column; align-items: center; text-align: center; }
}

/* =============================================
   GOOGLE FONTS IMPORT
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Sans+Bengali:wght@300;400;500;600;700;800&display=swap');
