* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    overflow-x: hidden; /* ডানে যেন স্ক্রলবার না আসে */
}

/* Hero Section Design */
.page-hero {
    position: relative;
    background: linear-gradient(rgba(0, 77, 64, 0.8), rgba(0, 77, 64, 0.8)), url('assets/images/hero-bg.jpg');
    background-size: 100%;
    background-position: center;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Category Filter Buttons */
/* বাটনগুলোর কন্টেইনার */
.board-icons {
    display: grid; /* Flex এর বদলে Grid ব্যবহার করা হয়েছে */
    grid-template-columns: repeat(2, 1fr); /* এক লাইনে ২টি করে সমান কলাম */
    gap: 10px; /* বাটনগুলোর মাঝখানের গ্যাপ */
    padding: 15px;
    width: 100%;
}

/* প্রতিটি বাটন */
.icon-btn {
    background: white;
    padding: 12px 8px; /* প্যাডিং কমানো হয়েছে */
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* আইকন আরও ছোট করা */
.icon-btn i { 
    font-size: 18px; /* আইকন সাইজ ১৮ পিক্সেল */
    color: #006400; 
    margin-bottom: 5px; 
}

/* বাটনের টেক্সট ছোট করা */
.icon-btn p { 
    font-weight: bold; 
    font-size: 12px; /* টেক্সট সাইজ ১২ পিক্সেল */
    margin: 0; 
    color: #333; 
}

/* ল্যাপটপ বা বড় স্ক্রিনের জন্য (বড় স্ক্রিনে ৫টিই এক লাইনে থাকবে) */
@media (min-width: 768px) {
    .board-icons {
        display: flex;
        justify-content: center;
        grid-template-columns: none;
    }
    .icon-btn {
        min-width: 130px;
    }
}

/* Member Grid Layout */
.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 8%;
    background-color: #f9f9f9;
}

/* Member Card Styling */
.member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    text-align: center;
    border: 1px solid #eee;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.id-header {
    background: #006400;
    color: white;
    padding: 10px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.card-body { padding: 30px 20px; position: relative; }

.blood-group-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d32f2f;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #9ACD32;
    margin-bottom: 15px;
}

.member-card h3 { color: #222; font-size: 1.3rem; margin-bottom: 5px; }
.designation { color: #006400; font-weight: 700; font-size: 15px; margin-bottom: 5px; }
.location { color: #666; font-size: 13px; margin: 10px 0; }

.social-links-card a {
    font-size: 24px;
    color: #1877F2;
    transition: 0.3s;
}
.social-links-card a:hover { color: #006400; transform: scale(1.1); }
