/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #005aab;
    --secondary-color: #00a0e3;
    --text-dark: #333;
    --light-bg: #f4f7f6;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Nav */
.sticky-header-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
header {
    background: linear-gradient(to right, #A2547F, #993A8B);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative !important;
    top: 0;
    z-index: 1000;
    background: linear-gradient(45deg, #99ea91, #C850C0, #FFCC70, #8EC5FC, #E0C3FC, #85FFBD, #FFFB7D);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    width: 100%;
}
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}
.logo a {
    color: var(--primary-color);
    font-size: 24px;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 700;
}
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}
nav ul li {
    position: relative;
    margin: 5px 8px; 
}
nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: 0.3s;
    padding: 12px 3px; 
    font-size: 14px;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.5;
}

nav ul li a:hover, nav ul li a.active {
    color: #fff;
}

.btn-contact {
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}
/* ড্রপডাউন মূল স্টাইল */
.dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    padding: 10px 0;
    border-top: 3px solid #27ae60;
}
.submenu li {
    display: block;
    margin: 0;
    width: 100%;
}
.submenu li a {
    padding: 10px 20px;
    display: block;
    color: #333 !important;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.submenu li a:hover {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
}

/* হোভার করলে ড্রপডাউন দেখাবে */
.dropdown:hover .submenu {
    display: block;
    animation: fadeInDown 0.3s ease;
    top: 100%;
}
nav ul li:hover .submenu {
    display: block; /* হোভার করলে মেনু আসবে */
}
/* ড্রপডাউন আইকন */
.dropdown a i {
    font-size: 12px;
    margin-left: 5px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.menu-toggle {
    display: none; /* ডেক্সটপে লুকানো */
    font-size: 24px;
    cursor: pointer;
    color: #fff; /* ব্যাকগ্রাউন্ডের সাথে সামঞ্জস্যপূর্ণ সাদা কালার */
    z-index: 1001;
}
/* Mobile Responsive Fix */
@media (max-width: 992px) {
    .menu-toggle {
        display: block; /* মোবাইলে দেখাবে */
    }
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: 5px 0 15px rgba(0,0,0,0.2);
        transition: 0.4s ease-in-out;
        z-index: 9999;
        display: block !important;
        
        /* ফিক্স: মেনু বারটি নিজেই স্ক্রলযোগ্য হবে */
        overflow-y: auto; 
        -webkit-overflow-scrolling: touch;
    }

    /* মেনু একটিভ হলে সামনে আসবে */
    nav.active {
        left: 0;
    }
    nav ul {
        display: block !important;
        padding: 70px 20px 100px 20px; /* নিচে অতিরিক্ত প্যাডিং যাতে শেষ মেনু দেখা যায় */
        height: auto;
    }
    nav ul li {
        margin: 15px 0;
        display: block;
        width: 100%;
    }

    nav ul li a {
        color: #333 !important;
        font-size: 16px;
        display: block;
        border-bottom: 1px solid #eee;
    }

    /* সাবমেনু মোবাইল ফিক্স */
    .submenu {
        display: none !important; 
        position: static;
        width: 100%;
        background: #f9f9f9;
        padding-left: 15px;
    }
    /* ড্রপডাউন একটিভ হলে সাবমেনু দেখাবে */
    .dropdown.open .submenu {
        display: block;
    }

    .dropdown.open > .submenu {
        display: block !important;
    }

    /* ল্যাঙ্গুয়েজ সুইচ মোবাইলে ছোট করা */
    .lang-switch button {
        padding: 5px 10px;
        font-size: 12px;
    }
}
@media (max-width: 1450px) {
    nav ul li {
        margin: 0 5px;
    }
    nav ul li a {
        font-size: 12px;
    }
    .logo a {
        font-size: 20px;
    }
}

/* ৪. ৯৯২px ব্রেকপয়েন্ট (মোবাইল মেনু শুরু) */
@media (max-width: 992px) {
    .sticky-header-container {
        position: fixed; /* মোবাইলে স্টিকি হেডার ফিক্সড রাখা ভালো */
    }
    
    header .container {
        justify-content: space-between;
    }

    nav {
        display: none !important; /* জাভাস্ক্রিপ্ট দিয়ে কন্ট্রোল হবে */
    }

    nav.active {
        display: block !important;
        position: fixed;
        left: 0;
        top: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        padding-top: 60px;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-controls {
        display: flex;
    }
}
.news-ticker {
    /* হালকা ব্যাকগ্রাউন্ড কালার */
    background-color: #c5d6e9; 
    border-bottom: 1px solid #ddd;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 2px; /* ন্যাভবার থেকে সামান্য দূরত্ব */
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.ticker-title {
    background: #27ae60; /* সমবায় সবুজ */
    color: #fff;
    padding: 8px 25px;
    font-weight: bold;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    /* একটু প্রিমিয়াম লুকের জন্য কাট ডিজাইন */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.ticker-content {
    flex-grow: 1;
}

.ticker-content a {
    color: #333; /* টেক্সট কালার */
    text-decoration: none;
    margin-right: 60px;
    font-size: 14px;
    font-weight: 500;
}

.ticker-content a:hover {
    color: #003366; /* হোভারে আপনার থিম ব্লু */
}
/* Hero Section */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e1ca95;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

/* Our Work Section */
.our-work {
    padding: 80px 0;
    background-color: #FBE580;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 10px auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.work-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 5px solid transparent;
}

.work-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid var(--secondary-color);
    background: linear-gradient(45deg, #99ea91, #C850C0, #FFCC70, #8EC5FC, #E0C3FC, #85FFBD, #FFFB7D);
    background-size: 400% 400%;
    color: #fff;
}

.card-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.work-slider-wrapper {
    overflow: hidden; /* বাইরের কার্ডগুলো লুকানো থাকবে */
    padding: 20px 5px;
}

.work-grid {
    display: flex; /* গ্রিডের বদলে ফ্লেক্স ব্যবহার করা হয়েছে পাশাপাশি রাখার জন্য */
    gap: 30px;
    transition: transform 0.6s ease-in-out;
    width: max-content; /* কন্টেন্ট অনুযায়ী চওড়া হবে */
}

.work-card {
    flex: 0 0 350px; /* প্রতিটি কার্ডের ফিক্সড চওড়া ৩৫০ পিক্সেল */
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 5px solid transparent;
}

/* স্লাইডারে হোভার করলে এনিমেশন যাতে না থামে তার জন্য কন্টেইনারে হোভার ইফেক্ট */
.work-card:hover {
    transform: translateY(-10px);
    color: #333; /* হোভারে টেক্সট কালার ঠিক রাখা */
}
/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
}

footer {
    padding: 30px 0;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}
/* Updates & Notice Section */
.updates-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.notice-board {
    background: #fff;
    padding: 20px;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.notice-board h3 { color: var(--primary-color); margin-bottom: 15px; }

.notice-board ul { list-style: none; }

.notice-board ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.notice-board ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.notice-board ul li a:hover { color: var(--secondary-color); }

.view-all {
    display: block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.notice-ticker-container {
    height: 180px; /* কতটুকু জায়গা জুড়ে স্ক্রল হবে */
    overflow: hidden; /* বাইরের অংশ লুকিয়ে ফেলবে */
    position: relative;
    border: 1px solid #f0f0f0;
    padding: 5px;
    background: #fafafa;
}

.scrolling-notices {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    width: 100%;
    animation: scrollUp 10s linear infinite; /* ১০ সেকেন্ড সময় নিয়ে লুপ হবে */
}

.scrolling-notices:hover {
    animation-play-state: paused; /* মাউস রাখলে স্ক্রলিং থেমে যাবে */
}

.scrolling-notices li {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
    margin-bottom: 5px;
}

/* নিচ থেকে উপরে যাওয়ার এনিমেশন */
@keyframes scrollUp {
    0% {
        top: 100%; /* নিচ থেকে শুরু হবে */
    }
    100% {
        top: -100%; /* উপরে গিয়ে শেষ হবে */
    }
}
@media (max-width: 768px) {
    .notice-ticker-container {
        height: 150px; /* মোবাইলে উচ্চতা কিছুটা কমানো */
    }
    
    .scrolling-notices li a {
        font-size: 13px; /* লেখা ছোট করা */
    }
}
/* Current Projects */
/* প্রজেক্ট কার্ডের মূল স্টাইল */
.project-card {
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 5px solid #27ae60; /* সমবায় সবুজ বর্ডার */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.project-card:hover {
    transform: translateX(10px); /* ডানে সামান্য সরবে */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #f9fffb;
}

/* ইমেজ স্টাইল */
.project-img {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

/* প্রজেক্ট ইনফো ও প্রগ্রেস বার */
.project-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.project-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    position: relative;
    margin-top: 10px;
}

.progress {
    height: 100%;
    background: linear-gradient(to right, #27ae60, #2ecc71);
    border-radius: 10px;
    position: relative;
}

.progress span {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 11px;
    font-weight: bold;
    color: #27ae60;
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 480px) {
    .project-card {
        flex-direction: column;
        text-align: center;
    }
    .project-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
.current-projects h3 {
    margin-bottom: 20px;
}
.project-slider-container {
    height: 350px; /* স্লাইডারের উচ্চতা */
    overflow: hidden; /* বাইরের অংশ লুকানো */
    position: relative;
}

.project-track {
    display: flex;
    flex-direction: column; /* নিচ থেকে উপরে স্লাইড করার জন্য */
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.project-card {
    flex: 0 0 110px; /* প্রতিটি কার্ডের ফিক্সড উচ্চতা */
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 12px;
    border-left: 5px solid #27ae60;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* মাউস রাখলে স্লাইড থামা */
.project-slider-container:hover .project-track {
    animation-play-state: paused;
}
.project-viewport {
    height: 230px; /* ২টির উচ্চতা (১১০+১১০) + সামান্য প্যাডিং */
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.project-list-scroll {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
}

.project-item-card {
    height: 100px; /* প্রতিটি কার্ডের ফিক্সড হাইট */
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.project-item-card img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    object-fit: contain;
}

.p-info h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.p-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.3;
}
/* Success Story Cards */
.success-stories {
    background: #c5d6e9;
    padding: 60px 0;
}

.success-slider-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.success-track {
    display: flex;
    gap: 25px;
    transition: transform 0.8s ease-in-out;
    transform: translateX(-1000px); 
}
.story-card {
    flex: 0 0 320px; /* প্রতিটি কার্ডের চওড়া */
    background: #fff;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    border-bottom: 4px solid #005aab;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.story-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.story-info {
    padding: 20px;
    text-align: center;
}

.story-info h4 {
    color: #005aab;
    margin-bottom: 10px;
    font-size: 18px;
}

.story-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* মোবাইলে সাইজ ঠিক করা */
@media (max-width: 768px) {
    .story-card {
        flex: 0 0 280px;
    }
}
/* Image Gallery */
.gallery-section {
    /* background: #FFFB7D; */
    padding: 80px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.album-card {
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.album-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 90, 171, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: 0.4s;
    font-weight: bold;
    padding: 20px;
}

.album-card:hover .overlay {
    opacity: 1;
}

.album-card h4 {
    margin-top: 15px;
    color: var(--primary-color);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    overflow-y: auto;
    padding: 50px 20px;
}
/* লাইটবক্সের কন্টেন্ট এরিয়া */
.lightbox-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: auto;
    max-height: 80vh; /* স্ক্রিনের ৮০% উচ্চতা নিবে */
    overflow-y: auto; /* ৫০টি ছবি থাকলে স্ক্রলবার আসবে */
    padding: 20px;
    background: #1a1a1a;
    border-radius: 15px;
}

/* কাস্টম স্ক্রলবার ডিজাইন (দেখতে সুন্দর লাগবে) */
.lightbox-content::-webkit-scrollbar {
    width: 8px;
}
.lightbox-content::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}
.lightbox-content img {
    width: 100%;
    border-radius: 8px;
    border: 3px solid #fff;
}

.close-btn {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
/* শুরুতে লুকানো অ্যালবামগুলো হাইড থাকবে */
.hidden-album {
    display: none;
}

/* লোড মোর বাটন স্টাইল */
.load-more-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.load-more-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.load-more-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* এনিমেশন যখন নতুন অ্যালবাম শো করবে */
.album-card.show-animation {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Partners */
.partners-section {
    padding: 60px 0;
    background: #FFFB7D;
    overflow: hidden;
}

.logo-slider {
    margin-top: 40px;
    position: relative;
    width: 100%;
}

/* লোগো ট্র্যাক যা অনবরত চলবে */
.logo-track {
    display: flex;
    width: calc(200px * 12); /* লোগো সংখ্যা অনুযায়ী চওড়া */
    animation: scrollLogos 30s linear infinite;
}

/* মাউস রাখলে স্ক্রলিং থেমে যাবে */
.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.logo-item img {
    width: 80px;
    height: auto;
    filter: grayscale(100%); /* লোগো কালো-সাদা থাকবে */
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* হোভার করলে কালার হবে */
.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* এনিমেশন কি-ফ্রেম */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6)); /* অর্ধেক সেট পার হলে রিসেট */
    }
}

/* Mobile Fix for Notice Board */
@media (max-width: 768px) {
    .updates-section { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Statistics Section */
.stats-section {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0;
    /* margin: 40px 0; */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-item h2 {
    font-size: 36px;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Download Section */
.download-section {
    padding: 60px 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.download-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.download-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.file-icon {
    font-size: 30px;
    color: #e74c3c; /* PDF Red color */
    margin-right: 20px;
}

.file-info {
    flex-grow: 1;
}

.file-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.file-info p {
    font-size: 12px;
    color: #777;
}

.btn-download {
    color: var(--primary-color);
    font-size: 20px;
    transition: 0.2s;
}

.btn-download:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}
/* CTA Band */
.cta-band {
    background: var(--secondary-color);
    padding: 50px 0;
    color: white;
    text-align: center;
}

.cta-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-btn-white {
    background: #fff;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
}

.cta-btn-white:hover {
    background: var(--primary-color);
    color: white;
}

/* Members Section */
.members-section {
    padding: 80px 0;
    background: #fdfdfd;
    overflow: hidden;
}

.members-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* স্লাইডিং ট্র্যাক */
.members-track {
    display: flex;
    gap: 30px;
    width: calc(250px * 12); /* কার্ডের উইডথ * কার্ডের মোট সংখ্যা */
    animation: scrollMembers 40s linear infinite;
}

/* মাউস রাখলে এনিমেশন স্লো হয়ে যাবে */
.members-track:hover {
    animation-play-state: paused;
}

/* কার্ড স্টাইল */
.member-card {
    flex: 0 0 220px;
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.member-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.member-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.member-card p {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    line-height: 1.4;
}

/* এনিমেশন কী-ফ্রেম */
@keyframes scrollMembers {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6)); /* অর্ধেক কার্ড পার হলে রিসেট */
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: rgb(251, 229, 128);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.faq-question {
    width: 100%;
    padding: 15px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 15px 0;
    color: var(--green);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
/* History Section */
.history-section {
    padding: 80px 0;
    background: #c5d6e9;
}

.history-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.history-text { flex: 1; min-width: 300px; }
.history-image { flex: 1; min-width: 300px; }

.history-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.history-list {
    list-style: none;
    margin-top: 20px;
}

.history-list li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.history-list i { margin-right: 10px; }

.history-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0 var(--light-bg);
}
/* --- History Section Responsive Fix --- */

/* ট্যাবলেট এবং ছোট ল্যাপটপের জন্য (৯৯২ পিক্সেলের নিচে) */
@media (max-width: 992px) {
    .history-section {
        padding: 60px 0;
    }
    
    .history-flex {
        gap: 30px; /* গ্যাপ কমিয়ে দেওয়া হলো */
    }
    
    .history-image img {
        box-shadow: 10px 10px 0 var(--light-bg); /* শ্যাডো ছোট করা হলো */
    }
}

/* মোবাইল ফোনের জন্য (৭৬৮ পিক্সেলের নিচে) */
@media (max-width: 768px) {
    .history-section {
        padding: 40px 15px; /* চারপাশের স্পেস কমানো হলো */
    }

    .history-flex {
        flex-direction: column; /* টেক্সট এবং ইমেজ নিচে নিচে আসবে */
        text-align: center; /* টেক্সট মাঝখানে থাকবে */
    }

    .history-text {
        order: 2; /* মোবাইলে আগে ইমেজ তারপর টেক্সট দেখাতে চাইলে ২ দিন */
        min-width: 100%;
    }

    .history-image {
        order: 1; /* ইমেজ উপরে চলে আসবে */
        min-width: 100%;
        margin-bottom: 30px;
    }

    .history-image img {
        box-shadow: none; /* মোবাইলে অতিরিক্ত শ্যাডো দেখতে খারাপ লাগলে এটি বন্ধ রাখা ভালো */
        border-radius: 10px;
    }

    .history-list {
        display: inline-block; /* লিস্ট আইটেমগুলো মাঝখানে আনার জন্য */
        text-align: left;
    }

    .section-title h2 {
        font-size: 24px; /* টাইটেল সাইজ কমানো হলো */
    }
}

/* অতি ছোট মোবাইলের জন্য (৪৮০ পিক্সেলের নিচে) */
@media (max-width: 480px) {
    .history-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .history-list li {
        font-size: 14px;
    }
}
/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-box i {
    font-size: 25px;
    color: var(--primary-color);
    margin-right: 20px;
}

.info-box h4 { margin-bottom: 5px; }

.map-placeholder {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* Form Styles */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group { margin-bottom: 20px; }

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover { background: var(--secondary-color); }

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.lang-switch button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

#google_translate_element {
    margin: 10px;
    display: inline-block;
    background: var(--secondary-color);
    color: #e74c3c;
}
/* গুগল ট্রান্সলেট ড্রপডাউন স্টাইল */
.language-box {
    padding: 10px;
    display: inline-block;
}

/* গুগলের উপরের নীল বারটি লুকানোর জন্য (ঐচ্ছিক) */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body {
    top: 0px !important;
    background-color: #f1f1f1;
}

/* ড্রপডাউন বর্ডার সুন্দর করার জন্য */
.goog-te-gadget-simple {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    padding: 5px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
}

.slider-container {
    position: relative;
    height: 80vh; /* স্ক্রিনের ৮০ শতাংশ জুড়ে থাকবে */
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.slide-content {
    position: relative;
    z-index: 10;
    color: #e1ca95;
    max-width: 800px;
    padding: 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    animation: fadeInUp 1.2s ease-out;
}

/* Dots for navigation */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #fff;
    width: 30px; /* একটি লম্বা ডট লুকের জন্য */
    border-radius: 10px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 992px) {
    .slider-container {
        height: 40vh; /* মোবাইলে উচ্চতা কমিয়ে অর্ধেক করা হলো */
        min-height: 300px; /* খুব বেশি ছোট যাতে না হয় */
    }

    .slide-content {
        max-width: 90%; /* মোবাইলে টেক্সট যাতে স্ক্রিনের বাইরে না যায় */
        padding: 10px;
    }

    .slide-content h1 {
        font-size: 1.8rem; /* ৩.৫ থেকে কমিয়ে ১.৮ করা হলো */
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 1rem; /* ১.২ থেকে কমিয়ে ১.০ করা হলো */
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* মোবাইলে ডট বাটনগুলো ছোট করা */
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        height: 8px;
        width: 8px;
    }

    .dot.active {
        width: 20px;
    }
}

/* অতি ছোট মোবাইল ফোনের জন্য (৪৮০ পিক্সেলের নিচে) */
@media (max-width: 480px) {
    .slider-container {
        height: 250px; /* একদম ছোট মোবাইলে ফিক্সড হাইট */
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* প্যারাগ্রাফ বড় হলে ২ লাইনের পর ডট দেখাবে */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
/* Partner Slider Styles */
.logo-slider {
    overflow: hidden;
    padding: 40px 0;
    background: #fff;
    position: relative;
}

.logo-track {
    display: flex;
    width: calc(250px * 10); /* লোগোর সংখ্যা অনুযায়ী চওড়া */
    animation: scroll 25s linear infinite; /* স্লাইড করার গতি */
}

.logo-item {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    max-width: 150px;
    filter: grayscale(100%); /* প্রফেশনাল লুকের জন্য গ্রে-স্কেল */
    opacity: 0.6;
    transition: 0.3s;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* এনিমেশন কি-ফ্রেম */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); } /* অর্ধেক লোগো পার হলেই আবার শুরু হবে */
}

/* স্লাইডারে হোভার করলে স্ক্রলিং থামা (ঐচ্ছিক) */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}
.login-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin: 50px 0 50px 35%;
}

.login-card .logo-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 10px;
}

.login-card h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
    text-align: left;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 5px rgba(39, 174, 96, 0.2);
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: var(--secondary);
}

.footer-links {
    margin-top: 20px;
    font-size: 14px;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
}

.back-home {
    margin-top: 15px;
    display: block;
    color: #777;
    font-size: 13px;
}
.form-container {
    max-width: 900px;
    margin: 50px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 8px solid var(--primary);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 10px;
}

.form-section-title {
    background: #f1f4f7;
    padding: 10px 15px;
    border-left: 5px solid var(--secondary);
    margin: 25px 0 15px;
    font-weight: 700;
    color: var(--primary);
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

input, select, textarea {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

input:focus, select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.1);
}

.file-upload {
    background: #fdfdfd;
    border: 2px dashed var(--border);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
}

.full-width {
    grid-column: span 2;
}

.submit-btn {
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--secondary);
}

@media (max-width: 768px) {
    .grid-container { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
}
/* =======================================================
   MASTER RESPONSIVE MEDIA QUERIES (For All Sections)
   ======================================================= */

/* ১. বড় ট্যাবলেট এবং ছোট ল্যাপটপ (৯৯২ পিক্সেলের নিচে) */
@media (max-width: 992px) {
    .container {
        width: 95%; /* কন্টেইনারের সাইড স্পেস কমানো হলো */
    }

    /* লগইন কার্ড পজিশন ফিক্স */
    .login-card {
        margin: 50px auto; /* ডেক্সটপের ৩৫% মার্জিন সরিয়ে মাঝখানে আনা হলো */
    }

    /* গ্যালারি গ্রিড ৩ কলাম করা হলো */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ২. ট্যাবলেট এবং বড় মোবাইল (৭৬৮ পিক্সেলের নিচে) */
@media (max-width: 768px) {
    /* হেডার এবং নেভিগেশন */
    header .container {
        padding: 0 15px;
    }

    /* আপডেট এবং নোটিশ সেকশন - এক কলামে আনা */
    .updates-section {
        grid-template-columns: 1fr;
    }

    /* ফর্ম গ্রিড - এক কলামে আনা */
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: span 1;
    }

    .form-container {
        margin: 20px 10px;
        padding: 20px;
    }

    /* স্ট্যাটিসটিক্স (Stats) গ্রিড ২ কলাম করা */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* গ্যালারি ২ কলামে আনা */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* পার্টনার লোগো গ্যাপ কমানো */
    .partner-logos {
        gap: 20px;
    }

    /* ডাউনলোড কার্ড এক কলামে আনা */
    .download-grid {
        grid-template-columns: 1fr;
    }

    /* কন্টাক্ট গ্রিড এক কলামে আনা */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }
}

/* ৩. ছোট মোবাইল ফোন (৪৮০ পিক্সেলের নিচে) */
@media (max-width: 480px) {
    /* হিরো সেকশন টেক্সট সাইজ */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 24px;
    }

    /* স্ট্যাটস আইটেম ১ কলাম করা */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h2 {
        font-size: 28px;
    }

    /* লগইন কার্ড মোবাইল ফিক্স */
    .login-card {
        padding: 25px 15px;
        width: 95%;
    }

    /* নিউজ টিকার টাইটেল ছোট করা */
    .ticker-title {
        padding: 8px 15px;
        font-size: 12px;
    }

    /* FAQ টেক্সট সাইজ */
    .faq-question {
        font-size: 15px;
    }

    /* ডাউনলোড কার্ডের টেক্সট ছোট করা */
    .file-info h4 {
        font-size: 14px;
    }

    /* লোগো ট্র্যাক এনিমেশন স্পিড মোবাইলে সামান্য বাড়ানো */
    .logo-track {
        animation: scroll 15s linear infinite;
    }
}
.events-section {
    padding: 80px 0;
    background-color: #f4f7f6;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.event-image {
    position: relative;
    height: 200px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ডেট ব্যাজ স্টাইল */
.event-date {
    position: absolute;
    bottom: -25px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.event-date .day {
    display: block;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.event-info {
    padding: 40px 20px 25px;
}

.event-info h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.event-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-info p i {
    color: var(--primary-color);
    width: 15px;
}

.event-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}

.event-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}
.events-wrapper {
    overflow-x: auto; /* মোবাইলে হাত দিয়ে স্ক্রল করা যাবে */
    scroll-behavior: smooth;
    padding: 20px 5px;
    scrollbar-width: none; /* ফায়ারফক্সের জন্য স্ক্রলবার হাইড */
}

.events-wrapper::-webkit-scrollbar {
    display: none; /* ক্রোম/সাফারির জন্য স্ক্রলবার হাইড */
}

.events-track {
    display: flex;
    gap: 25px;
    width: max-content; /* কন্টেন্ট অনুযায়ী চওড়া হবে */
}

.event-card {
    flex: 0 0 350px; /* প্রতিটি কার্ডের ফিক্সড চওড়া */
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* স্লাইডার বাটন স্টাইল */
.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
}

.slider-controls button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-controls button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .event-card {
        flex: 0 0 280px; /* মোবাইলে কার্ডের সাইজ একটু ছোট */
    }
}
.history-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.history-timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding-left: 60px;
}

/* মেইন টাইমলাইন লাইন */
.history-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #A2547F, #993A8B, #FFFB7D);
    border-radius: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px; /* আইটেমগুলোর মাঝখানে গ্যাপ বাড়ানো হয়েছে */
}

/* রঙিন গোল বিন্দু */
.timeline-dot {
    position: absolute;
    left: -51px;
    top: 5px;
    height: 24px;
    width: 24px;
    background: #A2547F;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(162, 84, 127, 0.4);
    z-index: 2;
}

.timeline-date {
    font-size: 20px;
    font-weight: 800;
    color: #A2547F;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(162, 84, 127, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-bottom: 5px solid #A2547F; /* নিচে একটি বর্ডার যোগ করা হয়েছে */
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.timeline-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.history-text-wrapper p {
    font-size: 16px;
    color: #555;
    line-height: 1.8; /* বড় প্যারাগ্রাফের মাঝে পর্যাপ্ত জায়গা */
    margin-bottom: 15px;
    text-align: justify; /* টেক্সটগুলো সমান দেখাবে */
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .history-timeline {
        padding-left: 40px;
    }
    .history-timeline::before {
        left: 10px;
    }
    .timeline-dot {
        left: -41px;
    }
    .timeline-content {
        padding: 20px;
    }
}
.vision-mission-page {
    padding: 80px 0;
    background: #f4f7fa;
}

/* ভিশন বক্স স্টাইল */
.vision-box-large {
    background: linear-gradient(135deg, #A2547F 0%, #63334e 100%);
    padding: 60px;
    border-radius: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    box-shadow: 0 20px 40px rgba(162, 84, 127, 0.25);
}

.sub-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-box-large h2 {
    font-size: 38px;
    margin: 25px 0;
}

.vision-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.v-stat span {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #FFCC70;
}

/* মিশন গ্রিড স্টাইল */
.mission-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.m-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}

.m-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #A2547F;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.m-count {
    font-size: 40px;
    font-weight: 900;
    color: rgba(162, 84, 127, 0.1);
    position: absolute;
    top: 20px;
    right: 25px;
}

.m-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

/* মূল্যবোধ সেকশন */
.values-section {
    margin-top: 80px;
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.value-item i {
    font-size: 40px;
    color: #A2547F;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .vision-box-large { padding: 40px 20px; }
    .vision-box-large h2 { font-size: 28px; }
    .mission-grid-premium { grid-template-columns: 1fr; }
}
/* .mission-modern-section {
    padding: 100px 0;
    background: #f8fafc;
} */

.top-title {
    display: block;
    color: #A2547F;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-divider {
    width: 70px;
    height: 4px;
    background: #A2547F;
    margin: 15px auto;
    border-radius: 10px;
}

.mission-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.mission-item-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.mission-item-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(162, 84, 127, 0.1);
}

/* কার্ডের ভেতরের নম্বর */
.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 50px;
    font-weight: 900;
    color: #f1f5f9;
    z-index: -1;
    transition: 0.4s;
}

.mission-item-card:hover .card-number {
    color: rgba(162, 84, 127, 0.08);
}

/* আইকন বক্স স্টাইল */
.card-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.color-1 { background: rgba(255, 99, 132, 0.1); color: #ff6384; }
.color-2 { background: rgba(54, 162, 235, 0.1); color: #36a2eb; }
.color-3 { background: rgba(255, 206, 86, 0.1); color: #ffce56; }
.color-4 { background: rgba(75, 192, 192, 0.1); color: #4bc0c0; }
.color-5 { background: rgba(153, 102, 255, 0.1); color: #9966ff; }
.color-6 { background: rgba(255, 159, 64, 0.1); color: #ff9f40; }

.mission-item-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-item-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

/* নিচের বর্ডার এনিমেশন */
.card-footer-line {
    width: 40px;
    height: 4px;
    background: #e2e8f0;
    margin-top: 25px;
    border-radius: 10px;
    transition: 0.4s;
}

.mission-item-card:hover .card-footer-line {
    width: 100%;
    background: #A2547F;
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .mission-item-card {
        padding: 40px 25px;
    }
}
:root {
    --primary: #A2547F;
    --dark: #333;
    --bg-gray: #f9f9f9;
}

.committee-smart-section { padding: 60px 0; background: var(--bg-gray); font-family: 'Arial', sans-serif; }
.section-header { text-align: center; margin-bottom: 50px; }
.divider { width: 50px; height: 3px; background: var(--primary); margin: 10px auto; }

/* গ্রিড সেটিংস */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.member-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
}

.member-card:hover { transform: translateY(-5px); border-color: var(--primary); }

/* ইমেজ সাইজ ছোট করা হয়েছে (১০০x১০০) */
.m-thumb {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    position: relative;
}

.m-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.m-social {
    position: absolute;
    bottom: 0; right: -10px;
    display: flex; flex-direction: column; gap: 5px;
}

.m-social a {
    width: 25px; height: 25px;
    background: var(--primary); color: #fff;
    border-radius: 50%; font-size: 10px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
}

/* টেক্সট স্টাইল */
.m-rank { font-size: 11px; font-weight: bold; color: var(--primary); text-transform: uppercase; }
.m-body h3 { font-size: 18px; margin: 10px 0 5px; color: var(--dark); }
.m-body p { font-size: 13px; color: #777; line-height: 1.4; margin-bottom: 15px; }

.m-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #f1f1f1; }
.btn-more-info { background: none; border: 1px solid var(--primary); color: var(--primary); padding: 5px 15px; border-radius: 20px; font-size: 12px; cursor: pointer; transition: 0.3s; }
.btn-more-info:hover { background: var(--primary); color: #fff; }
.m-id { font-size: 10px; color: #bbb; }

/* প্যানেল কন্ট্রোল */
.expandable-panel { max-height: 0; overflow: hidden; transition: 0.5s ease-out; }
.expandable-panel.active { max-height: 2000px; margin-top: 25px; }

.action-center { text-align: center; margin-top: 40px; }
.btn-toggle-view {
    background: var(--dark); color: #fff; border: none; padding: 12px 30px; border-radius: 30px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
}
:root {
    --primary: #A2547F;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
}

.profile-details-section {
    padding: 60px 0;
    background: #f8fafc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.back-navigation { margin-bottom: 30px; }
.back-navigation a { text-decoration: none; color: var(--primary); font-weight: 600; }

.profile-main-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
}

/* সাইডবার কার্ড */
.profile-sticky-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    position: sticky;
    top: 20px;
}

.profile-img-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border: 5px solid #f1f5f9;
    border-radius: 50%;
    overflow: hidden;
}

.profile-img-container img { width: 100%; height: 100%; object-fit: cover; }

.status-badge {
    background: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.profile-meta h2 { margin: 15px 0 5px; color: var(--text-dark); font-size: 24px; }
.main-designation { color: var(--primary); font-weight: 600; font-size: 18px; margin-bottom: 25px; }

.contact-links { text-align: left; border-top: 1px solid var(--border); padding-top: 20px; }
.c-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: var(--text-light); font-size: 14px; }
.c-item i { color: var(--primary); width: 20px; }

.social-box-large { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
.social-box-large a { font-size: 20px; color: #cbd5e1; transition: 0.3s; }
.social-box-large a:hover { color: var(--primary); }

/* ডান দিকের কন্টেন্ট কার্ড */
.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01);
}

.info-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.info-card p { line-height: 1.8; color: var(--text-light); }

.details-table .d-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.d-label { font-weight: 600; color: var(--text-dark); }
.d-value { color: var(--text-light); }

.experience-list { padding-left: 20px; }
.experience-list li { margin-bottom: 10px; color: var(--text-light); line-height: 1.6; }

/* রেসপন্সিভ */
@media (max-width: 992px) {
    .profile-main-grid { grid-template-columns: 1fr; }
    .profile-sticky-card { position: static; }
}
:root {
    --primary: #A2547F;
    --secondary: #2d3436;
    --accent: #f8fafc;
    --border: #e2e8f0;
}

.org-structure-area {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
    font-family: 'Hind Siliguri', sans-serif; /* বাংলা ফন্টের জন্য */
}

.org-header { margin-bottom: 80px; }
.sub-tag { color: var(--primary); font-weight: 700; letter-spacing: 2px; }
.org-header h2 { font-size: 38px; color: var(--secondary); margin: 10px 0; }
.accent-line { width: 60px; height: 4px; background: var(--primary); margin: 0 auto 20px; }

/* ট্রি স্ট্রাকচার */
.org-tree-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.org-node {
    background: #fff;
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 15px;
    display: inline-block;
    min-width: 250px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    position: relative;
    margin-bottom: 50px;
    transition: 0.3s;
}

.org-node:hover { transform: translateY(-5px); border-color: var(--primary); }

.node-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

/* স্তরের কানেক্টর সিমুলেশন (ঐচ্ছিক CSS আর্ট) */
.level-1::after, .level-2::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 50px;
    background: var(--border);
    z-index: -1;
}

/* লেভেল ৩ - পাশাপাশি ২ জন */
.level-3 {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.side-node {
    min-width: 200px;
    background: var(--accent);
}

/* লেভেল ৪ - গ্রিড লেআউট */
.org-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.grid-node {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.grid-node i { color: var(--primary); font-size: 20px; margin-bottom: 10px; display: block; }
.grid-node h4 { font-size: 16px; margin: 0; color: var(--secondary); }
.grid-node:hover { background: var(--primary); color: #fff; }
.grid-node:hover i { color: #fff; }

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .level-3 { flex-direction: column; align-items: center; }
    .org-node { min-width: 90%; }
}
/* মোডাল ব্যাকগ্রাউন্ড */
.modal-overlay {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

/* মোডাল বক্স */
.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #888;
}

.modal-divider {
    width: 40px;
    height: 3px;
    background: #A2547F;
    margin: 15px auto;
}

.modal-body {
    text-align: left;
    margin-top: 20px;
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

/* ক্লিক করার যোগ্য ব্লকের কার্সর */
.org-node, .grid-node { cursor: pointer; }
/* মোডাল বডির ভেতরে মেম্বার কার্ড স্টাইল */
.modal-member-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
}

.modal-member-card {
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 12px 15px;
    border-radius: 12px;
    border-left: 4px solid #A2547F;
    transition: 0.3s;
}

.modal-member-card:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.member-avatar {
    width: 40px;
    height: 40px;
    background: #A2547F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 14px;
}

.member-info-text {
    display: flex;
    flex-direction: column;
}

.member-info-text .m-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.member-info-text .m-pos {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}
:root {
    --gold: #A2547F; /* আপনার ব্রান্ড কালার */
    --dark-blue: #0f172a;
    --light-bg: #f8fafc;
}

.past-presidents-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.legacy-header {
    text-align: center;
    margin-bottom: 70px;
}

.legacy-tag {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.legacy-header h2 {
    font-size: 38px;
    color: var(--dark-blue);
    margin: 10px 0;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 20px;
    border-radius: 10px;
}

/* কার্ড গ্রিড */
.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.legacy-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    transition: 0.4s;
}

.legacy-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(162, 84, 127, 0.1);
}

/* মেয়াদের ব্যাজ */
.tenure-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.president-img {
    width: 120px;
    height: 120px;
    margin: 10px auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 50%;
    overflow: hidden;
}

.president-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%); /* হালকা গ্রে স্কেল ঐতিহ্যের ভাব দেয় */
}

.legacy-card:hover .president-img img {
    filter: grayscale(0%);
}

.president-info h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.legacy-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    height: 45px;
    overflow: hidden;
    margin-bottom: 20px;
}

.legacy-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.member-id { font-size: 11px; color: #cbd5e1; font-weight: 600; }

.history-link {
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.history-link:hover {
    text-decoration: underline;
}
:root {
    --primary: #A2547F;
    --dark: #1e293b;
    --light-gray: #f1f5f9;
}

.bio-detail-section {
    padding: 80px 0;
    background: #fff;
    font-family: 'Hind Siliguri', sans-serif;
}

/* হেডার কার্ড */
.bio-header-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--light-gray);
    padding: 50px;
    border-radius: 40px;
    margin-bottom: 60px;
}

.bio-img-frame {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bio-img-frame img { width: 100%; height: 100%; object-fit: cover; }

.bio-tag {
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.bio-basic-info h1 { font-size: 40px; margin: 15px 0 10px; color: var(--dark); }
.bio-period { color: var(--primary); font-weight: 600; margin-bottom: 20px; }

.bio-quick-meta { display: flex; gap: 30px; border-top: 1px solid #cbd5e1; padding-top: 20px; }
.m-label { display: block; font-size: 12px; color: #64748b; text-transform: uppercase; }
.m-val { font-weight: 700; color: var(--dark); }

/* মেইন কন্টেন্ট */
.bio-content-grid { display: grid; grid-template-columns: 1fr 350px; gap: 60px; }

.content-block { margin-bottom: 40px; }
.content-block h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}
.content-block h3::before {
    content: ''; position: absolute; left: 0; top: 5px; bottom: 5px;
    width: 5px; background: var(--primary); border-radius: 10px;
}
.content-block p { line-height: 1.8; color: #475569; font-size: 17px; text-align: justify; }

/* অর্জন টাইমলাইন */
.achieve-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}
.year { font-weight: 800; color: var(--primary); }

/* সাইডবার */
.sidebar-info-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.bio-list { list-style: none; padding: 0; }
.bio-list li { margin-bottom: 12px; border-bottom: 1px solid #e2e8f0; padding-bottom: 8px; }

.signature-box { text-align: center; font-style: italic; color: #64748b; }
.sig-img { width: 150px; margin-top: 20px; opacity: 0.7; }

/* রেসপন্সিভ */
@media (max-width: 992px) {
    .bio-header-card { flex-direction: column; text-align: center; padding: 30px; }
    .bio-content-grid { grid-template-columns: 1fr; }
    .bio-quick-meta { justify-content: center; }
}
:root {
    --primary: #A2547F;
    --dark: #1e293b;
    --success: #22c55e;
    --bg-light: #f1f5f9;
}

.ongoing-projects-section {
    padding: 80px 0;
    background: var(--bg-light);
    font-family: 'Hind Siliguri', sans-serif;
}

.project-header {
    text-align: center;
    margin-bottom: 60px;
}

.status-tag {
    color: var(--primary);
    background: rgba(162, 84, 127, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.project-header h2 { font-size: 38px; color: var(--dark); margin: 15px 0; }
.header-bar { width: 60px; height: 4px; background: var(--primary); margin: 0 auto 20px; border-radius: 5px; }

/* গ্রিড এবং কার্ড */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.project-img { position: relative; height: 220px; }
.project-img img { width: 100%; height: 100%; object-fit: cover; }

.project-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.project-body { padding: 25px; }

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.progress-percent { color: var(--success); font-weight: 700; }

.project-body h3 { font-size: 20px; color: var(--dark); margin-bottom: 10px; font-weight: 700; }
.project-body p { font-size: 14px; color: #475569; line-height: 1.6; margin-bottom: 20px; height: 65px; overflow: hidden; }

/* প্রগ্রেস বার ডিজাইন */
.progress-container {
    height: 7px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #cc68a1);
    border-radius: 10px;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.stats span { font-size: 13px; color: var(--dark); }
.details-btn {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.details-btn:hover { color: var(--dark); }

:root {
    --primary: #A2547F;
    --dark: #1e293b;
    --success: #22c55e;
    --bg-faint: #f8fafc;
}

.project-details-page { padding: 60px 0; background: var(--bg-faint); font-family: 'Hind Siliguri', sans-serif; }

.breadcrumb-nav { margin-bottom: 30px; }
.breadcrumb-nav a { text-decoration: none; color: var(--primary); font-weight: 700; }

.project-main-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* কন্টেন্ট এরিয়া */
.main-banner { position: relative; border-radius: 25px; overflow: hidden; height: 450px; margin-bottom: 40px; }
.main-banner img { width: 100%; height: 100%; object-fit: cover; }
.status-badge-active {
    position: absolute; top: 20px; right: 20px; background: var(--success); color: #fff;
    padding: 8px 20px; border-radius: 50px; font-weight: 700; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.content-card { background: #fff; padding: 40px; border-radius: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.content-card h1 { font-size: 32px; color: var(--dark); margin-bottom: 25px; }
.content-text h3 { color: var(--primary); margin: 30px 0 15px; font-size: 22px; }
.content-text p { line-height: 1.8; color: #475569; font-size: 17px; }

.feature-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.feature-list li { color: #475569; display: flex; align-items: center; gap: 10px; }
.feature-list i { color: var(--success); }

/* গ্যালারি */
.gallery-section { margin-top: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 20px; }
.gallery-grid img { width: 100%; height: 150px; object-fit: cover; border-radius: 15px; transition: 0.3s; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.05); }

/* সাইডবার */
.sidebar-card { background: #fff; padding: 30px; border-radius: 25px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.sidebar-card h4 { font-size: 18px; margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }

/* সার্কুলার প্রগ্রেস */
.radial-progress { width: 150px; margin: 0 auto 20px; }
.circular-chart { display: block; margin: 10px auto; max-width: 100%; }
.circle-bg { fill: none; stroke: #eee; stroke-width: 2.8; }
.circle { fill: none; stroke-width: 2.8; stroke-linecap: round; stroke: var(--primary); }
.percentage { fill: var(--dark); font-size: 8px; font-weight: 700; text-anchor: middle; }

.info-item { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 14px; }
.info-item span { color: #64748b; }
.info-item strong { color: var(--dark); }

.btn-download {
    width: 100%; background: var(--dark); color: #fff; border: none; padding: 15px;
    border-radius: 12px; margin-top: 20px; cursor: pointer; transition: 0.3s; font-weight: 600;
}
.btn-download:hover { background: var(--primary); }

@media (max-width: 992px) {
    .project-main-grid { grid-template-columns: 1fr; }
    .main-banner { height: 300px; }
    .feature-list { grid-template-columns: 1fr; }
}
:root {
    --primary: #A2547F;
    --dark: #1e293b;
    --text-gray: #475569;
    --bg-faint: #f8fafc;
}

.development-activities-section {
    padding: 80px 0;
    background: var(--bg-faint);
    font-family: 'Hind Siliguri', sans-serif;
}

.activity-header { text-align: center; margin-bottom: 70px; }
.header-tag { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.activity-header h2 { font-size: 38px; color: var(--dark); margin: 15px 0; }
.header-line-alt { width: 60px; height: 4px; background: var(--primary); margin: 0 auto 20px; border-radius: 5px; }

/* টাইমলাইন স্টাইল */
.activity-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.timeline-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.timeline-image img { width: 100%; height: 300px; object-fit: cover; }

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.activity-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(162, 84, 127, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-content h3 { font-size: 28px; color: var(--dark); margin-bottom: 15px; }
.timeline-content p { line-height: 1.7; color: var(--text-gray); font-size: 16px; margin-bottom: 25px; }

.read-more-btn {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ডান-বামে অ্যালাইনমেন্ট */
.timeline-content.left-align { text-align: left; }
.timeline-image.right-align { order: 2; } /* ছবি ডানে */
.timeline-content:not(.left-align) { order: 1; text-align: right; } /* টেক্সট ডানে */


/* কল টু অ্যাকশন */
.more-activities-callout {
    text-align: center;
    background: var(--dark);
    color: #fff;
    padding: 50px;
    border-radius: 30px;
    margin-top: 80px;
}
.more-activities-callout h3 { font-size: 30px; margin-bottom: 25px; }

.view-all-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.view-all-btn:hover { background: #cc68a1; transform: scale(1.05); }

/* রেসপন্সিভ */
@media (max-width: 992px) {
    .timeline-item { flex-direction: column; text-align: center; }
    .timeline-image.right-align { order: unset; } /* ডিফল্ট অর্ডারে ফিরে যাবে */
    .timeline-content:not(.left-align) { order: unset; text-align: center; }
    .timeline-content.left-align { text-align: center; }
}
:root {
    --primary: #A2547F;
    --dark: #1e293b;
    --gray: #64748b;
    --bg: #f8fafc;
}

.activity-detail-page { padding: 60px 0; background: var(--bg); font-family: 'Hind Siliguri', sans-serif; }

.back-nav { margin-bottom: 30px; }
.back-nav a { text-decoration: none; color: var(--primary); font-weight: 700; font-size: 15px; }

/* হিরো সেকশন */
.activity-hero { position: relative; height: 500px; border-radius: 30px; overflow: hidden; margin-bottom: 50px; }
.activity-hero img { width: 100%; height: 100%; object-fit: cover; }
.activity-title-box {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}
.category-pill { background: var(--primary); padding: 5px 15px; border-radius: 5px; font-size: 13px; font-weight: 600; }
.activity-title-box h1 { font-size: 36px; margin: 15px 0 5px; }

/* গ্রিড লেআউট */
.activity-main-grid { display: grid; grid-template-columns: 1fr 350px; gap: 40px; }

.content-card { background: #fff; padding: 40px; border-radius: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.content-card h3 { color: var(--primary); margin: 30px 0 15px; font-size: 22px; }
.content-card p { line-height: 1.8; color: var(--gray); font-size: 17px; }

/* অর্জন কার্ডসমূহ */
.achievement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.achieve-card { background: #f8fafc; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #e2e8f0; }
.achieve-card i { font-size: 24px; color: var(--primary); margin-bottom: 10px; }
.achieve-card h4 { font-size: 20px; color: var(--dark); margin-bottom: 5px; }
.achieve-card span { font-size: 13px; color: var(--gray); font-weight: 600; }

/* গ্যালারি */
.gallery-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 20px; }
.gallery-layout img { width: 100%; height: 180px; object-fit: cover; border-radius: 15px; }

/* সাইডবার */
.sidebar-widget { background: #fff; padding: 30px; border-radius: 25px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.sidebar-widget h4 { font-size: 18px; margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
.info-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 14px; }
.info-row span { color: var(--gray); }

.btn-volunteer {
    width: 100%; background: var(--dark); color: #fff; border: none; padding: 15px;
    border-radius: 12px; margin-top: 20px; cursor: pointer; font-weight: 600; transition: 0.3s;
}
.btn-volunteer:hover { background: var(--primary); }

.quote-widget { background: var(--primary); color: #fff; border: none; }
.quote-widget i { font-size: 30px; opacity: 0.5; margin-bottom: 15px; }
.quote-widget p { font-style: italic; font-size: 16px; line-height: 1.6; }

@media (max-width: 992px) {
    .activity-main-grid { grid-template-columns: 1fr; }
    .activity-hero { height: 350px; }
    .achievement-grid { grid-template-columns: 1fr; }
}
.more-activities-callout {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 30px;
    padding: 60px 50px;
    margin-top: 100px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ব্যাকগ্রাউন্ড ডেকোরেশন */
.callout-overlay-shapes {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(162, 84, 127, 0.2);
    border-radius: 50%;
    filter: blur(50px);
}

.callout-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 30px;
}

.callout-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #A2547F;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.callout-text {
    flex: 1;
}

.callout-text h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 800;
}

.callout-text p {
    font-size: 16px;
    opacity: 0.8;
}

/* প্রফেশনাল বাটন ডিজাইন */
.view-all-btn {
    position: relative;
    background: #A2547F;
    color: #fff;
    border: none;
    padding: 8px 8px 8px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(162, 84, 127, 0.3);
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.view-all-btn:hover {
    background: #cc68a1;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(162, 84, 127, 0.4);
}

.view-all-btn:hover .btn-icon {
    background: #fff;
    color: #A2547F;
    transform: rotate(-45deg);
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 992px) {
    .callout-content {
        flex-direction: column;
        text-align: center;
    }
    .callout-icon-box {
        margin: 0 auto;
    }
    .view-all-btn {
        margin: 0 auto;
    }
}
:root {
    --primary: #A2547F;
    --dark: #1e293b;
    --white: #ffffff;
}

.filterable-activities { padding: 60px 0; background: #f8fafc; }

/* ফিল্টার বাটন স্টাইল */
.filter-controls {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e2e8f0;
    background: var(--white);
    color: var(--dark);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(162, 84, 127, 0.3);
}

/* গ্রিড সেটিংস */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.activity-item {
    display: block; /* ডিফল্ট */
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.inner-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s;
}

.inner-card:hover { transform: translateY(-10px); }

.inner-card img { width: 100%; height: 200px; object-fit: cover; }

.card-info { padding: 25px; }

.tag {
    font-size: 11px;
    background: rgba(162, 84, 127, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-info h4 { margin: 15px 0 10px; font-size: 20px; color: var(--dark); }
.card-info p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 20px; }

.mini-btn {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid var(--primary);
}
:root {
    --primary-pink: #A2547F;
    --soft-bg: #fff5f9;
    --dark-blue: #1e293b;
    --gray-text: #64748b;
}

.women-empowerment-section {
    padding: 80px 0;
    background: var(--soft-bg);
    font-family: 'Hind Siliguri', sans-serif;
}

.empower-header { text-align: center; margin-bottom: 60px; }
.top-label { color: var(--primary-pink); font-weight: 700; font-size: 14px; text-transform: uppercase; }
.empower-header h2 { font-size: 36px; color: var(--dark-blue); margin: 10px 0; }
.accent-bar { width: 50px; height: 3px; background: var(--primary-pink); margin: 0 auto 20px; }

/* কার্ড গ্রিড */
.empower-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.empower-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(162, 84, 127, 0.05);
    transition: 0.4s;
}

.empower-card:hover { transform: translateY(-10px); }

.card-image { position: relative; height: 220px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }

.overlay-tag {
    position: absolute; top: 15px; right: 15px;
    background: var(--primary-pink); color: #fff;
    padding: 4px 12px; border-radius: 5px; font-size: 12px; font-weight: 600;
}

.card-content { padding: 25px; }
.card-content h3 { font-size: 22px; color: var(--dark-blue); margin-bottom: 12px; }
.card-content p { font-size: 15px; color: var(--gray-text); line-height: 1.6; margin-bottom: 20px; }

.impact-stat {
    background: #fdf2f8;
    color: var(--primary-pink);
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.empower-btn {
    display: block; text-align: center; text-decoration: none;
    background: transparent; color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    padding: 10px; border-radius: 10px; font-weight: 700;
    transition: 0.3s;
}

.empower-btn:hover { background: var(--primary-pink); color: #fff; }

/* আবেদন প্যানেল */
.join-women-panel {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #334155 100%);
    padding: 40px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.join-content h4 { font-size: 24px; margin-bottom: 8px; }
.join-btn-alt {
    background: var(--primary-pink); color: #fff; border: none;
    padding: 15px 30px; border-radius: 12px; font-weight: 600;
    cursor: pointer; transition: 0.3s;
}

@media (max-width: 768px) {
    .join-women-panel { flex-direction: column; text-align: center; gap: 20px; }
}
:root {
    --primary: #A2547F;
    --dark: #1e293b;
    --gray: #64748b;
    --white: #ffffff;
    --soft-pink: #fdf2f8;
}

.women-activity-details {
    padding: 60px 0;
    background: #fcfcfc;
    font-family: 'Hind Siliguri', sans-serif;
}

.page-top-nav { margin-bottom: 30px; }
.page-top-nav a { text-decoration: none; color: var(--primary); font-weight: 700; }

.details-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

/* বাম পাশের কন্টেন্ট */
.main-activity-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    margin-bottom: 40px;
}
.main-activity-image img { width: 100%; height: 100%; object-fit: cover; }
.image-label {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(255,255,255,0.9); padding: 8px 20px;
    border-radius: 10px; font-weight: 700; color: var(--primary);
}

.activity-long-description h2 { font-size: 32px; color: var(--dark); margin-bottom: 20px; }
.activity-long-description p { line-height: 1.8; color: var(--gray); font-size: 17px; }

.key-objectives { margin-top: 30px; background: var(--soft-pink); padding: 30px; border-radius: 20px; }
.key-objectives h3 { margin-bottom: 20px; font-size: 22px; color: var(--primary); }
.key-objectives ul { list-style: none; padding: 0; }
.key-objectives li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; color: var(--dark); font-weight: 500; }
.key-objectives i { color: var(--primary); }

.gallery-flex { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 20px; }
.gallery-flex img { width: 100%; height: 150px; object-fit: cover; border-radius: 15px; }

/* ডান পাশের সাইডবার */
.stat-card {
    background: var(--dark);
    color: var(--white);
    padding: 35px;
    border-radius: 25px;
    margin-bottom: 30px;
    text-align: center;
}
.stat-card h4 { margin-bottom: 25px; color: var(--primary); font-size: 18px; }
.impact-item { margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.impact-item:last-child { border: none; }
.count { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.label { font-size: 14px; opacity: 0.7; }

.info-widget-card {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.info-line { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 14px; }
.info-line span { color: var(--gray); }

.register-btn {
    width: 100%; padding: 15px; border-radius: 12px;
    border: none; background: var(--primary); color: #fff;
    font-weight: 700; margin-top: 20px; cursor: pointer;
    transition: 0.3s;
}
.register-btn:hover { background: #8e446d; }

.testimonial-small {
    padding: 25px; border-left: 5px solid var(--primary);
    background: #fff; border-radius: 0 20px 20px 0;
}
.testimonial-small p { font-style: italic; font-size: 15px; color: var(--gray); margin-bottom: 10px; }
.testimonial-small strong { font-size: 13px; color: var(--dark); }

@media (max-width: 992px) {
    .details-wrapper { grid-template-columns: 1fr; }
}
.success-stories-section {
    padding: 80px 0;
    background: #fdf2f8; /* হালকা গোলাপি ব্যাকগ্রাউন্ড */
    text-align: center;
}

.stories-header {
    margin-bottom: 60px;
}
.stories-header h2 {
    font-size: 38px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}
.stories-header p {
    font-size: 18px;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto;
}

/* সফলতার গল্পের কার্ড */
.success-story-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto 50px; /* একাধিক কার্ডের জন্য মার্জিন */
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.story-video {
    flex: 1;
    position: relative;
    padding-bottom: 30%; /* ইউটিউব ভিডিওর অ্যাসপেক্ট রেশিও ঠিক রাখতে */
    height: 0;
    overflow: hidden;
    background: #000;
}
.story-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* প্লে বাটন ওভারলে */
.play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 60px;
    cursor: pointer;
    transition: background 0.3s;
}
.play-overlay:hover { background: rgba(0,0,0,0.6); }

.story-content {
    flex: 1;
    padding: 30px;
    text-align: left;
}

.story-category {
    background: var(--primary-pink);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.story-content h3 {
    font-size: 26px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0 0 25px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-pink);
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.story-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
}
.author-details span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
}
.author-details p {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0;
}

/* রেসপন্সিভ ডিজাইন */
@media (max-width: 992px) {
    .success-story-card { flex-direction: column; }
    .story-video { padding-bottom: 56.25%; /* 16:9 অ্যাসপেক্ট রেশিও */ }
    .story-content { text-align: center; }
    .story-author { justify-content: center; }
}