/* ==========================================================================
   BNPBD থিম CSS - লাইভ অ্যানিমেশন সহ
   ========================================================================== */

/* ==========================================================================
   ১. স্লাইডার সেকশন
   ========================================================================== */

.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.slider-slide {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.slider-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    display: block;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* ব্যাজ */
.slider-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: #fff;
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.slider-badge i {
    margin-right: 8px;
}

/* নাম */
.slider-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

/* পদবী */
.slider-subtitle {
    font-size: 1.3rem;
    color: #ffc107;
    font-weight: 500;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slider-subtitle i {
    margin-right: 10px;
}

/* বায়ো */
.slider-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin: 0 auto 25px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* বাটন */
.slider-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.btn-slider {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-facebook {
    background: #1877f2;
    color: #fff;
}

.btn-facebook:hover {
    background: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.btn-email {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-email:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-linkedin {
    background: #0a66c2;
    color: #fff;
}

.btn-linkedin:hover {
    background: #0957a8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4);
}

/* ==========================================================================
   ২. মার্কি টিকার (লাইভ নিউজ)
   ========================================================================== */

.ticker-section {
    background: #1a1a2e;
    border-bottom: 2px solid #dc3545;
    padding: 8px 0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-label {
    background: #dc3545;
    color: #fff;
    padding: 4px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
    white-space: nowrap;
}

.ticker-label i {
    margin-right: 5px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ticker-content {
    flex: 1;
    overflow: hidden;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 20s linear infinite;
    color: #fff;
    font-size: 0.9rem;
}

.ticker-text span {
    margin: 0 8px;
}

@keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ==========================================================================
   ৩. নিউজ সেকশন
   ========================================================================== */

.news-section {
    padding: 60px 0;
    background: #f0f2f5;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
}

.title-line {
    flex: 1;
    height: 2px;
    max-width: 80px;
    background: linear-gradient(90deg, transparent, #dc3545);
}

.title-line:last-child {
    background: linear-gradient(90deg, #dc3545, transparent);
}

.title-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #dc3545;
    border-radius: 2px;
}

/* ==========================================================================
   ৪. ফিচার পোস্ট
   ========================================================================== */

.featured-post {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.featured-post:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.featured-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.featured-content {
    padding: 24px;
}

.featured-content .post-category {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.featured-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-content h3 a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-content h3 a:hover {
    color: #dc3545;
}

.featured-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ==========================================================================
   ৫. পোস্ট লিস্ট
   ========================================================================== */

.post-list-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.post-list-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left-color: #dc3545;
    transform: translateX(5px);
}

.post-list-content .post-category {
    display: inline-block;
    background: #e9ecef;
    color: #6c757d;
    padding: 1px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.post-list-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.post-list-content h4 a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-list-content h4 a:hover {
    color: #dc3545;
}

.post-list-content p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #adb5bd;
}

.post-meta i {
    margin-right: 4px;
}

/* ==========================================================================
   ৬. সাইডবার - ইভেন্ট
   ========================================================================== */

.sidebar-events {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 25px;
}

.sidebar-header {
    background: #1a1a2e;
    color: #fff;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-header i {
    font-size: 1.2rem;
    color: #ffc107;
}

.sidebar-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.sidebar-badge {
    background: #dc3545;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sidebar-body {
    padding: 16px 20px;
}

.event-mini {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.event-mini:hover {
    background: #f8f9fa;
    margin: 0 -20px;
    padding: 12px 20px;
}

.event-mini:last-child {
    border-bottom: none;
}

.event-mini-date {
    flex-shrink: 0;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px 10px;
    min-width: 45px;
}

.mini-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc3545;
    line-height: 1.2;
}

.mini-month {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 600;
}

.event-mini-details h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.event-mini-details p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

.event-mini-details p i {
    margin-right: 5px;
    color: #dc3545;
}

/* ==========================================================================
   ৭. সাইডবার - দ্রুত লিংক
   ========================================================================== */

.sidebar-quick-links {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #1a1a2e;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.quick-link:last-child {
    border-bottom: none;
}

.quick-link:hover {
    background: #f8f9fa;
    padding-left: 28px;
    color: #dc3545;
}

.quick-link i {
    color: #dc3545;
    width: 20px;
    text-align: center;
}

/* ==========================================================================
   ৮. অ্যানিমেশন - স্ক্রল এনিমেশন
   ========================================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ৯. রেস্পন্সিভ
   ========================================================================== */

@media (max-width: 992px) {
    .slider-title {
        font-size: 2.8rem;
    }
    
    .slider-subtitle {
        font-size: 1.1rem;
    }
    
    .slider-desc {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .featured-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .slider-slide {
        min-height: 400px;
    }
    
    .slider-image {
        max-height: 400px;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-subtitle {
        font-size: 0.95rem;
    }
    
    .slider-desc {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .slider-badge {
        font-size: 0.7rem;
        padding: 4px 16px;
    }
    
    .btn-slider {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .title-text {
        font-size: 1.3rem;
    }
    
    .featured-content h3 {
        font-size: 1.1rem;
    }
    
    .featured-image {
        height: 180px;
    }
    
    .ticker-text {
        font-size: 0.75rem;
    }
    
    .ticker-label {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .slider-slide {
        min-height: 320px;
    }
    
    .slider-image {
        max-height: 320px;
    }
    
    .slider-title {
        font-size: 1.5rem;
    }
    
    .slider-subtitle {
        font-size: 0.8rem;
    }
    
    .slider-desc {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .slider-buttons {
        gap: 6px;
    }
    
    .btn-slider {
        font-size: 0.65rem;
        padding: 5px 12px;
        gap: 4px;
    }
    
    .featured-content {
        padding: 16px;
    }
    
    .featured-image {
        height: 140px;
    }
    
    .post-list-item {
        padding: 14px 16px;
    }
    
    .event-mini {
        gap: 10px;
        padding: 10px 0;
    }
}

/* ==========================================================================
   ১০. ফেসবুক স্টাইল লাইভ ইন্ডিকেটর
   ========================================================================== */

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dc3545;
    color: #fff;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-indicator .live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: dotPulse 1s ease-in-out infinite;
}
/* ==========================================================================
   About - বাংলাদেশ জাতীয়তাবাদী ছাত্রদল
   ========================================================================== */

.about-chatradal-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.about-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border-left: 5px solid #dc3545;
    transition: all 0.3s ease;
}

.about-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.about-header {
    background: #1a1a2e;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-header i {
    font-size: 2rem;
    color: #ffc107;
}

.about-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.about-body {
    padding: 30px;
}

.about-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-body p::first-letter {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc3545;
}

/* রেস্পন্সিভ */
@media (max-width: 768px) {
    .about-chatradal-section {
        padding: 40px 0;
    }
    
    .about-header {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .about-header i {
        font-size: 1.5rem;
    }
    
    .about-header h2 {
        font-size: 1.1rem;
    }
    
    .about-body {
        padding: 20px;
    }
    
    .about-body p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .about-body p {
        font-size: 0.85rem;
    }
    
    .about-body p::first-letter {
        font-size: 1.4rem;
    }
}
/* style.css তে যোগ করুন */
.objectives-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d1b2a 50%, #1a1a2e 100%);
    color: #ffffff;
}

.objectives-section .section-title .title-text {
    color: #ffffff;
}

.objectives-section .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

.objective-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}

.objective-card h5 {
    color: #ffc107;
}

.objective-card p {
    color: rgba(255,255,255,0.8);
}

.objective-number {
    background: #dc3545;
    color: #ffffff;
}
@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.5); }
}