/* =======================
    1. General Reset & Base
======================= */
* {
    box-sizing: border-box; /* এটি নিশ্চিত করবে প্যাডিং যেন উইথ না কমায় */
}

body {
    font-family: 'kalpurush', sans-serif;
    /* background-color: #f4f4f4; */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    width: 100%;
    min-width: 100vw;
    overflow-x: hidden;
}

/* কন্টেন্টকে ১৯৫০ পিক্সেল পর্যন্ত বড় করার জন্য */
.container-wide {
    width: 100% !important;
    max-width: 1550px !important; 
    margin: 0 auto !important;
    display: block;
}

.slider-container img {
    width: 100% !important;
    height: auto;
}
/* =======================
    3. Navigation Menu (Full Width)
======================= */


/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1b5e20; /* ড্রপডাউন ব্যাকগ্রাউন্ড আরও গাঢ় করা হয়েছে */
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 0 0 6px 6px;
    z-index: 10;
}
/* =======================
    Slider Section (Enlarged)
======================= */
.slider-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%; /* পুরো স্ক্রিন জুড়ে থাকবে */
}

.slider-container {
    position: relative;
    /* আপনার ১৯৫০px কন্টেইনারের সাথে মিল রাখতে max-width আপডেট করা হলো */
    max-width: 1650px; 
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slide {
    display: none;
    animation: fade 0.8s ease-in-out; /* অ্যানিমেশন কিছুটা স্মুথ করা হয়েছে */
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 550px; /* বড় স্ক্রিনের জন্য হাইট ৪২০px থেকে বাড়িয়ে ৫৫০px করা হয়েছে */
    object-fit: cover; /* ইমেজটি যেন স্ট্রেচ (Stretch) না হয়ে কন্টেইনারে ফিট হয় */
    display: block;
    transition: transform 0.6s ease;
}

/* হোভার ইফেক্ট */
.slider-container:hover img {
    transform: scale(1.03); /* জুম কিছুটা কমানো হয়েছে যাতে দেখতে ন্যাচারাল লাগে */
}

/* নেভিগেশন বাটন অ্যাডজাস্টমেন্ট */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    border: none;
    font-size: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev:hover, .next:hover {
    background: #1b5e20; /* আপনার থিম কালারের সাথে মিল রাখা হয়েছে */
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 25px; }
.next { right: 25px; }

@keyframes fade {
    from { opacity: 0.5; }
    to { opacity: 1; }
}
/* =======================
    5. Notice Bar
======================= */
.notice-bar {
    display: flex;
    background: #fff3cd;
    border-bottom: 1px solid #ffeeba;
}

.notice-label {
    background: #d32f2f;
    color: white;
    padding: 21px 20px;
    font-weight: 600;
    white-space: nowrap;
}

marquee {
    padding: 10px;
    font-size: 30px;
    color: #2e2817;
}

/* =======================
   /* =======================
    6. Services & Sidebar
======================= */
.services-section {
    padding: 50px 20px;
    /* background-color: #f7f9f9; */
}

.services-wrapper {
    display: flex;
    gap: 30px;
    max-width: 90%;
    margin: 0 auto;
    align-items: flex-start;
}

/* Left side (8/12) */
.services-main-content {
    flex: 2;
    min-width: 0;
}

/* Right side (4/12) */
.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

/* Updated Grid for 4 columns per row */
.services-grid {
    display: grid;
    /* Forces 4 equal columns on desktop */
    grid-template-columns: repeat(4, 1fr); 
    gap: 45px 20px; 
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 28px;
    color: #1b5e20;
    margin: 15px 0 10px;
    font-weight: 700;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    font-size: 20px;
    flex: 1;
    max-height: 130px;
    overflow-y: auto;
    padding: 10px;
    line-height: 1.5;
}

/* optional scrollbar styling */
.service-card p::-webkit-scrollbar {
    width: 5px;
}

.service-card p::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
/* Responsive Fix: Tablet (2 columns) */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Fix: Mobile (1 column) */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Service Card Fixes */
.service-card {
    position: relative;
    border-radius: 12px;
    padding: 55px 20px 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #344735; /* Changed to border-top for better look */
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
}

/* Icon Circle Alignment */
.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Theme Colors */
.service-card.green { border-top-color: #2e7d32; }
.service-card.green .icon-circle { background: #2e7d32; }

.service-card.red { border-top-color: #d32f2f; }
.service-card.red .icon-circle { background: #d32f2f; }

.service-card.teal { border-top-color: #00897b; }
.service-card.teal .icon-circle { background: #00897b; }

.service-card.orange { border-top-color: #f4511e; }
.service-card.orange .icon-circle { background: #f4511e; }

/* Stats Section Base */
/* Stats Section Base - Light Theme */
.stats-section {
    padding: 10px 10px;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 70%;
    margin: 0 auto;
}

/* Individual Stat Card Style - Light Theme */
.stat-item {
    background: #d1d1d17a; /* কার্ড এখন পুরোপুরি সাদা হবে */
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e0e0e0; /* হালকা গ্রে বর্ডার */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* হালকা শ্যাডো */
}

.stat-item:hover {
    transform: translateY(-17px);
    background: #ffffff;
    /* হোভার করলে বর্ডার কালার সংশ্লিষ্ট থিম কালার অনুযায়ী হবে (নিচে ডিফাইন করা আছে) */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
}

/* টেক্সট কালার পরিবর্তন (অন্ধকারে সাদা ছিল, এখন ডার্ক হবে) */
.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: #1b5e20; /* গাঢ় সবুজ নম্বর */
    display: inline-block;
    font-family: 'kalpurush', sans-serif;
}

.stat-text {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #302f2f; /* গ্রে টেক্সট */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Relevant Border Colors for Light Theme --- */
.stat-item.members:hover { border-color: #4caf50; } 
.stat-item.relief:hover { border-color: #ff9800; }  
.stat-item.blood:hover { border-color: #f44336; }   
.stat-item.projects:hover { border-color: #00bcd4; }

/* Unique Icon & Color Threams */
.stat-icon {
    font-size: 55px;
    /* margin-bottom: 15px; */
    display: block;
}

/* Specific Colors for each card */
.stat-item.members { border-bottom: 4px solid #4caf50; } /* Green */
.stat-item.relief { border-bottom: 4px solid #ff9800; }  /* Orange */
.stat-item.blood { border-bottom: 4px solid #f44336; }   /* Red */
.stat-item.projects { border-bottom: 4px solid #00bcd4; } /* Cyan */

.stat-number {
    font-size: 80px;
    font-weight: 800;
    color: #2c7e69;
    display: inline-block;
    font-family: 'kalpurush', sans-serif;
}

.stat-number::after {
    content: '+';
    color: #a59930; /* Yellow plus sign */
    margin-left: 4px;
}

.stat-text {
    display: block;
    /* margin-top: 10px; */
    font-size: 18px;
    font-weight: 600;
    color: #3d3838;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sidebar Official Cards */
/* Layout Wrapper */
.about-leadership-section {
    padding: 60px 20px;
    padding-bottom: 10px;
}

.container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* --- Left Column Style --- */
.leadership-text-area {
    flex: 1.2;
}

.badge-text {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-heading {
    font-size: 36px;
    color: #1b5e20;
    margin: 20px 0;
    line-height: 1.3;
}

.heading-underline {
    width: 80px;
    height: 5px;
    background: #4caf50;
    border-radius: 10px;
    margin-bottom: 30px;
}

.main-desc {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-box {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item p {
    margin: 0;
    color: #666;
    font-size: 20px;
}
.f-icon {
    font-size: 30px;
    background: #f1f8e9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.feature-item h4 {
    margin: 0 0 5px 0;
    color: #1b5e20;
    font-size: 24px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #1b5e20;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.cta-button:hover {
    background: #2e7d32;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
    transform: translateY(-3px);
}

/* --- Right Column Style --- */
/* --- Sidebar Area (leadership-cards-area) --- */
/* --- Right Column (Leadership Cards Area) --- */
.leadership-cards-area{
    flex: 1;
    background: #f9fbf9;
    border-radius: 40px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 20px; /* IMPORTANT */
}
.sidebar-title{
    font-size: 28px;
    color: #45994a;
    margin-bottom: 100px;
    font-weight: 700;
    position: relative;
    z-index: 10;
}
.admin-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 120px; /* কার্ডের গ্যাপ আরও বাড়ানো হয়েছে যাতে ১৮০px ইমেজ নিচের কার্ডকে না ঢেকে দেয় */
    margin-top: 20px;
}

.modern-official-card {
    background: #ffffff;
    /* প্যাডিং টপ ১০০px করা হয়েছে যাতে ১৮০px ইমেজের নিচে নাম ক্লিয়ারলি দেখা যায় */
    padding: 100px 15px 30px; 
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative; 
    width: 95%; 
    margin: 0 auto;
}

/* --- Floating Image (180px) Fix --- */
.img-holder {
    position: absolute;
    top: -90px; /* ইমেজটিকে অর্ধেক কার্ডের বাইরে পাঠানো হয়েছে */
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    z-index: 5;
}

.img-holder img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #ffffff; 
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* --- Fixed Text Styles --- */
.info-holder {
    position: relative;
    z-index: 1;
}

.info-holder h5 { 
    font-size: 18px; /* নাম একটু বড় করা হয়েছে */
    color: #1b5e20; 
    margin: 10px 0 8px;
    font-weight: 800;
    line-height: 1.2;
}

/* পদবী বা Designation ঠিক করা হয়েছে */
.info-holder p.role, 
.info-holder p { 
    color: #2e7d32; 
    font-weight: 700; 
    background: #f1f8e9; 
    padding: 5px 20px; 
    border-radius: 50px; 
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.social-mini {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .admin-grid { gap: 130px; }
    .leadership-cards-area { padding-top: 120px; }
}
/* Roadmap Section Styles */
.roadmap-section {
    padding: 50px 20px;
}

.roadmap-wrapper {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.roadmap-content { flex: 1.2; }
.roadmap-visual { flex: 0.8; }

.section-tag {
    color: #2e7d32;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    background: #e8f5e9;
    padding: 5px 15px;
    border-radius: 50px;
}

.roadmap-title {
    font-size: 34px;
    color: #1b5e20;
    margin: 20px 0;
    font-weight: 800;
}

.steps-container {
    margin-top: 40px;
}

.step-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
    border-left: 4px solid #2e7d32;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step-no {
    font-size: 24px;
    font-weight: 900;
    color: #4caf50;
    opacity: 0.5;
}

.step-info h4 {
    margin: 0 0 5px 0;
    color: #1b5e20;
    font-size: 25px;
}

.step-info p {
    margin: 0;
    color: #666;
    font-size: 20px;
    line-height: 20px;
}

/* Visual Box Styling */
.visual-box {
    position: relative;
    padding: 70px 20px 20px;
    background: #f8fffe8f;
    border-radius: 20px;
    height: 600px;
    display: flex;
    flex-direction: column;
    gap: 12px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);

    transition: all 0.45s cubic-bezier(.21,1,.21,1);

    /* 🔥 IMPORTANT FIX */
    will-change: transform;
    isolation: isolate;
}
/* TOP GRADIENT LINE */
.visual-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #1b5e20, #4caf50, #8bc34a);
    border-radius: 20px 20px 0 0;
}

/* 🔥 UNIQUE HOVER: SLIGHT ROTATION + DEPTH SHIFT */
.visual-box:hover {
    transform: perspective(1100px) rotateX(1.5deg) rotateY(-1.5deg);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.15),
        0 2px 10px rgba(76,175,80,0.2);
}

/* 🔥 INNER CONTENT SHIFT (VERY SUBTLE PARALLAX FEEL) */
.visual-box:hover > * {
    transform: translateY(-2px);
    transition: 0.4s ease;
}

🔥 EDGE LIGHT SWEEP
.visual-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        150deg,
        transparent 30%,
        rgba(76,175,80,0.08),
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.visual-box:hover::after {
    transform: translateX(100%);
}

/* IMAGE */
.vision-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 10px 10px 0px #e8f5e9;
    transition: 0.3s;
}

.vision-img:hover {
    transform: scale(1.02);
}

/* EXPERIENCE BADGE */
.experience-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #1b5e20, #4caf50);
    color: white;
    padding: 14px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 2;
}

.experience-badge .years {
    font-size: 28px;
    font-weight: 800;
    display: block;
}

.experience-badge .exp-text {
    font-size: 12px;
}

/* QUOTE BOX (FIXED - NO ABSOLUTE) */
.quote-box {
    margin-top: 10px;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    padding: 14px 16px;
    border-radius: 12px;
    border-left: 4px solid #ff9800;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.quote-box p {
    margin: 0;
    font-style: italic;
    font-weight: 600;
    color: #333;
}

/* IDENTITY STRIP */
.identity-strip {
    font-size: 12px;
    color: #555;
    background: #f1f8f1;
    padding: 6px 10px;
    border-radius: 8px;
}

/* LIVE INDICATOR */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #444;
}

.live-indicator .dot {
    width: 8px;
    height: 8px;
    background: #1b5e20;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* HIGHLIGHTS */
.quick-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.quick-highlights span {
    font-size: 11px;
    background: #e8f5e9;
    padding: 4px 8px;
    border-radius: 6px;
    color: #1b5e20;
}

/* STATS BOX */
.stats-box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
    flex-wrap: wrap;
}

.stats-box div {
    flex: 1;
    min-width: 70px;
}

.stats-box h4 {
    margin: 0;
    color: #1b5e20;
}

.stats-box p {
    margin: 0;
    font-size: 11px;
    color: #666;
}

/* STATUS */
.status-info {
    font-size: 12px;
    color: #444;
}

.status-info strong {
    color: #1b5e20;
}

/* MOTTO */
.motto-line {
    font-size: 12px;
    font-style: italic;
    color: #333;
}

/* FOOTER NOTE */
.footer-note {
    font-size: 11px;
    color: #777;
    text-align: center;
    margin-top: 5px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .roadmap-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .experience-badge {
        position: static;
        margin: 10px auto;
    }

    .stats-box {
        flex-direction: column;
    }
}

/* Mission & Vision Styling */
.mv-section {
    padding: 20px 20px;
    /* background-color: #e8f5e9; */
}

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

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    overflow: hidden;
}

/* Hover Effect */
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mv-icon {
    font-size: 45px;
    margin-bottom: 20px;
    display: inline-block;
}

.mv-content h3 {
    font-size: 30px;
    color: #1b5e20;
    margin-bottom: 15px;
    font-weight: 700;
}

.mv-line {
    width: 50px;
    height: 3px;
    background: #4caf50;
    margin: 0 auto 20px;
    border-radius: 10px;
}

.mv-content p {
    color: #666;
    line-height: 1.7;
    font-size: 25px;
}

/* Values List Styling */
.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.values-list li {
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 25px;
}

/* Card Specific Border Accents */
.mission { border-top: 5px solid #2e7d32; }
.vision { border-top: 5px solid #00897b; }
.values { border-top: 5px solid #ff9800; }

/* Mobile Responsive */
@media (max-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}


/* Why Join Us Section */
.why-join-section {
    padding: 100px 20px;
}

.why-join-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.top-label {
    background: #fff3e0;
    color: #e65100;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.modern-title {
    font-size: 36px;
    color: #1b5e20;
    margin: 15px 0;
}

.sub-text {
    color: #3d2424;
    max-width: 600px;
    margin: 0 auto;
    font-size: 20px;
}

.sub-text p {
    
    line-height: 1.6;
}
/* Benefit Cards Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.roadmap-desc{
    color: #555;
    font-size: 20px;
}
.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transform: translateY(-10px);
}

.b-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

/* Icon Colors */
.blue { background: #e3f2fd; color: #1976d2; }
.purple { background: #f3e5f5; color: #7b1fa2; }
.gold { background: #fffde7; color: #fbc02d; }

.benefit-card h3 {
    font-size: 30px;
    color: #333;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #777;
    line-height: 1.6;
    font-size: 20px;
}

/* Join Action Box */
.join-action-box {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.action-text h3 { font-size: 26px; margin: 0; }
.action-text p { opacity: 0.9; margin: 10px 0 0 0; }

.pulse-button {
    background: #fff;
    color: #1b5e20;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .join-action-box { flex-direction: column; text-align: center; gap: 25px; }
}

/* =======================
    9. Responsive Adjustments
======================= */
@media (max-width: 992px) {
    .services-wrapper {
        flex-direction: column;
    }
    
    .services-main-content, .sidebar {
        width: 100%;
        flex: none;
    }

    .sidebar {
        position: static; /* Disable sticky on mobile */
    }

    .photo-gallery-grid, .video-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .photo-gallery-grid, .video-gallery-grid, .committee-grid {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .main-menu {
        flex-direction: column;
    }
}
.official-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.official-info { margin-top: 10px; }
.official-name { font-weight: 600; font-size: 15px; color: #1b5e20; margin: 0; }
.official-designation { font-size: 13px; color: #666; margin: 0; }

/* =======================
    7. Gallery Sections
======================= */
/*--- General Section Spacing ---*/
.photo-gallery-section, 
.video-gallery-section {
    max-width: 90%;
    margin: 0 auto;
    /* background-color: #ffffff !important; */
}

.gallery-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

/*--- Grid Layout ---*/
.photo-gallery-grid, 
.video-gallery-grid {
    padding: 20px 0px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/*--- Shared Card Style ---*/
.gallery-card, .video-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #fff;
    transition: 0.4s ease;
}

.gallery-card img, .video-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

/*--- 1. Photo Gallery Specific (Green Theme) ---*/
.photo-gallery-section .gallery-title { color: #1b5e20; }

.gallery-card:hover img {
    transform: scale(1.1);
}

/* ফটোর ওপর জুম ইনডিকেটর */
.gallery-card::after {
    content: '🔍 View Full Image';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(27, 94, 32, 0.85);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none; /* যাতে ক্লিকে বাধা না দেয় */
    z-index: 2;
}

.gallery-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/*--- 2. Video Gallery Specific (Red/YouTube Theme) ---*/
.video-gallery-section .gallery-title { color: #c62828; }

.video-card {
    background: #000; /* ভিডিও কার্ডের বেজ ডার্ক */
}

.video-card img {
    opacity: 0.85; /* প্লে বাটন ফুটিয়ে তোলার জন্য */
}

/* ভিডিওর ওপর প্লে বাটন */
.video-card::before {
    content: '▶'; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: #f44336;
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    pointer-events: none;
}

.video-card:hover::before {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.15);
}

.video-card:hover img {
    opacity: 1;
}

/*--- Caption Improvements ---*/
.gallery-caption, .video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    color: white;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    z-index: 4;
}

.gallery-caption {
    background: linear-gradient(transparent, rgba(27, 94, 32, 0.95));
}

.video-caption {
    background: linear-gradient(transparent, rgba(198, 40, 40, 0.95));
}

/* =======================
    8. Committee Section
======================= */
.committee-section h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1b5e20;
    padding: 30px 0;
}

.member-box {
    width: 100%;
    max-width: 190px;
    background: #e3e3e5;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    height: 260px; /* fixed card height */
}

.member-box img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
    margin: 0 auto 10px;
}

/* 🔥 MAIN FIX START */
.member-info {
    display: grid;
    grid-template-rows: 45px auto; /* name fixed, designation fixed position */
    height: 100%;
    gap: 2px; 
}

.member-name {
    font-weight: 600;
    font-size: 16px;
    color: #1b5e20;

    overflow: hidden;
    line-height: 1.3;
}

.member-designation {
    font-size: 14px;
    color: #3f3e3e;
transform: translateY(-10px);
    align-self: end; /* always bottom */
}
/* 🔥 MAIN FIX END */

.member-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(63, 63, 63, 0.356);
}


/* =======================
    9. Responsive Adjustments
======================= */
@media(max-width: 900px) {
    .services-container, .sidebar {
        flex: 0 0 100%;
    }
    .photo-gallery-grid, .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .photo-gallery-grid, .video-gallery-grid, .committee-grid {
        grid-template-columns: 1fr;
    }
    .main-menu {
        flex-direction: column;
    }
    .header-container {
        flex-direction: column;
        text-align: center;
    }
}
/* =======================
    1. General Reset & Base
======================= */
* {
    box-sizing: border-box;
}

body {
    font-family: 'kalpurush', sans-serif;
    background-color: #F3F4F4;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden; /* মোবাইল স্ক্রিনে ডানে বামে নড়াচড়া বন্ধ করবে */
}

/* কন্টেইনার রেসপনসিভ ফিক্স */
.container-wide {
    width: 95% !important; 
    max-width: 1350px !important; 
    margin: 0 auto !important;
}

/* =======================
    2. Slider Section
======================= */
.slider-section {
    width: 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 550px; 
    object-fit: cover;
}

/* স্লাইডার রেসপনসিভ */
@media (max-width: 768px) {
    .slide img { height: 300px; } /* মোবাইলে স্লাইডার ছোট হবে */
    .prev, .next { width: 40px; height: 40px; font-size: 20px; }
}

/* =======================
    3. Notice Bar (Responsive)
======================= */
@media (max-width: 600px) {
    .notice-bar { flex-direction: column; }
    .notice-label { text-align: center; padding: 10px; }
    marquee { font-size: 20px; }
}

/* =======================
    4. Services & Sidebar (Flex to Block)
======================= */
.services-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1650px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

/* সার্ভিস ও সাইডবার রেসপনসিভ */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .services-wrapper { flex-direction: column; }
    .sidebar { position: static; width: 100%; }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card h3 { font-size: 22px; }
}

/* =======================
    5. Stats Section (Responsive)
======================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 50px; }
}

/* =======================
    6. Leadership & Roadmap
======================= */
.container-wrapper, .roadmap-wrapper {
    display: flex;
    gap: 40px;
}

@media (max-width: 992px) {
    .container-wrapper, .roadmap-wrapper { 
        flex-direction: column; 
        text-align: center;
    }
    .leadership-text-area, .leadership-cards-area, .roadmap-content, .roadmap-visual {
        width: 100%;
    }
    .feature-item { justify-content: center; text-align: left; }
}

/* =======================
    7. Mission, Vision & Benefits
======================= */
.mv-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

@media (max-width: 768px) {
    .mv-grid, .benefits-grid { grid-template-columns: 1fr; }
    .mv-content p, .benefit-card p { font-size: 18px; }
}

/* =======================
    8. Photo & Video Gallery
======================= */
.photo-gallery-grid, .video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

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

@media (max-width: 600px) {
    .photo-gallery-grid, .video-gallery-grid { grid-template-columns: 1fr; }
    .gallery-card img, .video-card img { height: 200px; }
}

/* =======================
    9. Committee Section
======================= */
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 30px;
}

@media (max-width: 600px) {
    .committee-grid { grid-template-columns: repeat(2, 1fr); }
    .member-box img { width: 120px; height: 120px; }
    .member-name { font-size: 18px; }
}

/* =======================
    10. Navigation Menu (Mobile Menu Fix)
======================= */
@media (max-width: 768px) {
    .main-menu {
        flex-direction: column;
        display: none; /* আপনি এখানে একটি হ্যামবার্গার মেনু বাটন ব্যবহার করতে পারেন */
    }
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
}