/* 1. Top Bar / Pre-Header এর কালার পরিবর্তন */
/* আগের কোড থেকে .top-bar, .preheader-area ক্লাসের সাথে background-color যোগ করা হয়েছে */
.top-bar, .preheader-area { 
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    line-height: 1;

    /* নতুন কালার যোগ করুন: হালকা ধূসর */
    background-color: #f8f9fa !important; 
    /* যদি ফন্টের কালার পরিবর্তন করতে চান */
    color: #333333; 
}

/* 2. Main Navigation Bar এর কালার পরিবর্তন */
/* আগের কোড থেকে .main-header, .navbar ক্লাসের সাথে background-color যোগ করা হয়েছে */
.main-header, .navbar { 
    padding-top: 5px !important;
    padding-bottom: 5px !important;

    /* নতুন কালার যোগ করুন: সাদা */
    background-color: #ffffff !important; 
    /* বর্ডার দিয়ে দুটি অংশকে আলাদা করা যায় (ঐচ্ছিক) */
    border-bottom: 1px solid #eeeeee;
}


/* 3. "Conference Registration" বাটনের কালার পরিবর্তন (আগের দেওয়া কোড) */
.unique-conference-btn {
    /* হাইট আরও কমাতে padding কমানো হয়েছে */
    padding: 6px 15px !important; 
    font-size: 14px !important; 
    
    /* পূর্বের মতো লাল কালার */
    background-color: #dc3545; 
    color: #ffffff;
    border: 1px solid #dc3545;
}

/* অন্যান্য মেনু লিঙ্কের ফন্টের কালার যদি সাদা হেডারে দেখা না যায় */
.main-header .nav-link, 
.main-header .navbar-nav > li > a { 
    padding-top: 10px !important;   
    padding-bottom: 10px !important;
    font-size: 15px;                
    
    /* মেনুর লেখা কালো করে দিন যাতে সাদা ব্যাকগ্রাউন্ডে দেখা যায় */
    color: #333333 !important; 
}



/* Base Styles */
#upcoming-event-clean-area {
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    
    /* 👇👇👇 এই লাইনটি যোগ করুন 👇👇👇 */
    margin-top: -157px; /* সেকশনটিকে উপরে উঠানোর জন্য নেগেটিভ মার্জিন */
    position: relative; /* নিশ্চিত করার জন্য যে এটি অন্যান্য উপাদানের উপরে থাকে */
    z-index: 10; /* এটি স্লাইডারের উপরে থাকার জন্য z-index বাড়ান */
}

/* Main Card Style (Dark/Vibrant Theme) */
.clean-event-card {
    background-color: #171d3a; /* ডার্ক নেভি ব্লু ব্যাকগ্রাউন্ড (Modern & Attractive) */
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 30px;
}

/* Event Thumbnail/Image (বাম অংশ) */
.clean-event-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%; /* কন্টেন্ট এর সাথে হাইট মিলানোর জন্য */
    display: flex;
    align-items: center;
    justify-content: center;
}

.clean-event-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    min-height: 250px; /* একটি ন্যূনতম উচ্চতা সেট করা হলো */
}

.clean-event-date-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #ffc107; /* হলুদ হাইলাইট */
    color: #171d3a;
    padding: 6px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

/* Event Details (ডান অংশ) */
.clean-event-details {
    padding-left: 20px;
}

.event-welcome-text {
    display: block;
    color: #ffc107; /* হলুদ হাইলাইট টেক্সট */
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.event-main-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
}

.event-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc; /* হালকা ধূসর টেক্সট */
    margin-bottom: 25px;
}

/* Countdown Styles (রেফারেন্স ইমেজের মতো ব্লকরেট স্টাইল) */
.clean-event-countdown-wrapper {
    margin-bottom: 30px;
}

#clean-event-countdown-counter {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.countdown-item {
    padding: 10px 0;
    text-align: center;
    min-width: 80px;
    background-color: #313a69; /* ব্লু কার্ডের চেয়ে একটু হালকা ব্যাকগ্রাউন্ড */
    border-radius: 8px;
}

.countdown-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #00bcd4; /* সায়ান হাইলাইট কালার */
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 13px;
    color: #a0a0a0;
    text-transform: uppercase;
}

.remaining-text-label {
    font-size: 15px;
    font-weight: 500;
    color: #ffc107; /* হলুদ টেক্সট */
    margin-top: 5px;
    text-align: left;
    margin-left: 10px;
}

/* Buttons */
.event-action-buttons a {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 15px;
}

.btn-clean-primary {
    background-color: #28a745; /* সবুজ বাটন (রেজিস্ট্রেশনের জন্য) */
    color: #ffffff;
    border: 2px solid #28a745;
}

.btn-clean-primary:hover {
    background-color: #218838;
    border-color: #218838;
}

.btn-clean-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-clean-secondary:hover {
    background-color: #ffffff;
    color: #171d3a;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .clean-event-details {
        padding-left: 0;
        margin-top: 20px;
    }
    .event-main-title {
        font-size: 30px;
    }
    #clean-event-countdown-counter {
        gap: 10px;
        flex-wrap: wrap;
    }
    .countdown-item {
        min-width: 70px;
        padding: 8px 0;
    }
    .countdown-number {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .clean-event-card {
        padding: 25px 20px;
        text-align: center;
    }
    .clean-event-details {
        text-align: center;
    }
    .clean-event-thumb {
        margin-bottom: 25px;
        min-height: 200px;
    }
    .clean-event-date-tag {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    .event-main-title {
        font-size: 26px;
    }
    .event-action-buttons a {
        display: block;
        margin: 10px auto;
        width: 100%;
    }
    .remaining-text-label {
        text-align: center;
        margin-left: 0;
    }
    #clean-event-countdown-counter {
        justify-content: center;
    }
}


/* ----------------------------------- */
/* 1. KEYFRAMES FOR SWEEPING BORDER EFFECT  */
/* ----------------------------------- */
@keyframes sweep-border {
    0% {
        /* শুরুতে টপ ও লেফট বর্ডার হাইলাইট হবে */
        width: 0%;
        height: 0%;
        border-top-color: transparent;
        border-right-color: transparent;
    }
    25% {
        /* টপ বর্ডার হাইলাইট হবে */
        width: 100%;
        height: 0%;
        border-top-color: #00bcd4;
        border-right-color: transparent;
    }
    50% {
        /* টপ বর্ডার ফুল, রাইট বর্ডার হাইলাইট হবে */
        width: 100%;
        height: 100%;
        border-top-color: #00bcd4;
        border-right-color: #00bcd4;
    }
    75% {
        /* বটম বর্ডার হাইলাইট হবে */
        width: 0%; /* বটম-লেফট থেকে স্টার্টের জন্য */
        height: 100%;
        border-top-color: transparent;
        border-right-color: #00bcd4;
        border-bottom-color: #00bcd4;
    }
    100% {
        /* পুরো চক্র শেষ */
        width: 0%;
        height: 0%;
        border-top-color: transparent;
        border-right-color: transparent;
    }
}


/* ----------------------------------- */
/* 2. UPDATE .clean-event-card CLASS   */
/* ----------------------------------- */
.clean-event-card {
    background-color: #171d3a; 
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); 
    overflow: hidden; /* এই অ্যানিমেশনের জন্য আবার 'hidden' ব্যবহার করা হলো */
    padding: 30px;
    position: relative; 
    z-index: 5;
}


/* ----------------------------------- */
/* 3. NEW ::before PSEUDO-ELEMENT      */
/* ----------------------------------- */
.clean-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* চারপাশের একটি স্বচ্ছ বাউন্ডারি তৈরি করা হলো */
    border: 3px solid transparent; 
    border-radius: 15px; /* মূল কার্ডের সমান রেডিয়াস */
    
    z-index: 6; /* মূল কার্ডের উপরে, কিন্তু কন্টেন্টের নিচে থাকবে */
    pointer-events: none; /* যাতে বাটনে ক্লিক করা যায় */
    
    /* অ্যানিমেশন যোগ করা হলো */
    animation: sweep-border 8s linear infinite; 
    
    /* Transform Origin সেট করা হলো, যাতে অ্যানিমেশন একটি কর্ণার থেকে শুরু হয় */
    transform-origin: top left;
}


/* ----------------------------------- */
/* 4. CONTENT Z-INDEX FIX              */
/* ----------------------------------- */
/* অ্যানিমেশন বর্ডারের উপরে কন্টেন্ট দেখানোর জন্য z-index 10 সেট করা হলো */
.clean-event-card .row {
    position: relative;
    z-index: 10; 
}

/* ----------------------------------- */
/* ABOUT US SECTION BASE STYLES (Unique ID) */
/* ----------------------------------- */
#asami-about-section-unique {
    padding: 120px 0 100px; 
    background-color: #f0f3f5; /* খুব হালকা নীলচে-ধূসর ব্যাকগ্রাউন্ড */
    position: relative;
    overflow: hidden; /* ভেতরের ওভারল্যাপ ঠিক রাখার জন্য */
}
/* ব্যাকগ্রাউন্ড প্যাটার্ন ডেকোরেশন */
#asami-about-section-unique::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(220, 53, 69, 0.1); /* হালকা লাল অস্বচ্ছ স্কোয়ার */
    transform: rotate(45deg); /* ৪৫ ডিগ্রি ঘোরানো */
    border-radius: 20px;
}
#asami-about-section-unique::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 123, 255, 0.05); /* হালকা নীল অস্বচ্ছ স্কোয়ার */
    transform: rotate(-30deg);
    border-radius: 30px;
}

/* ----------------------------------- */
/* LEFT SIDE: IMAGE (Asymmetrical Lift)*/
/* ----------------------------------- */
.about-image-wrapper {
    position: relative;
    /* পুরো কলামটিকে উপরে উঠানো */
    transform: translateY(-50px); 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); /* গভীর শ্যাডো */
    border-radius: 15px;
}

.about-main-image {
    width: 100%;
    height: 500px; /* উচ্চতা আরও বাড়ানো */
    object-fit: cover;
    border-radius: 15px; 
    /* ইমেজের ওপর হালকা ব্লু ওভারলে (প্রিমিয়াম ফিল) */
    opacity: 0.95; 
}

.about-highlight-box {
    /* আগের বক্সটিকে এখন ছবির নিচে বসানো হলো */
    position: absolute;
    bottom: -30px; 
    left: 50%;
    transform: translateX(-50%); 
    width: 90%;
    padding: 20px 25px;
    background-color: #007bff; /* নীল ব্যাকগ্রাউন্ড */
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.4);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about-highlight-box h4 {
    margin: 0;
    font-size: 22px;
}
.about-highlight-box p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
}
.about-highlight-box i {
    font-size: 30px;
    margin-right: 15px;
}

/* ----------------------------------- */
/* RIGHT SIDE: CONTENT & INFO BLOCK    */
/* ----------------------------------- */
.about-content-wrapper {
    padding-left: 50px; /* আরও বেশি বাম প্যাডিং */
    padding-top: 20px; /* বামের ইমেজকে ব্যালেন্স করতে */
}

.section-top-tag {
    color: #dc3545; /* লাল হাইলাইট */
    font-size: 16px;
    font-weight: 700;
}

.section-main-title {
    font-size: 40px; /* টাইটেল আরও বড়, প্রিমিয়াম ফন্ট-স্টাইল */
    font-weight: 900; /* আল্ট্রা-বোল্ড */
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-description {
    font-size: 17px;
    color: #5a5a5a; 
    margin-bottom: 40px;
}

/* Info Block (Two Key Points) */
.info-block {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.info-block .mission-item {
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-basis: 50%; /* দুটি ব্লক সমান প্রস্থে থাকবে */
}

.info-block .mission-item i {
    color: #dc3545; /* লাল আইকন */
    font-size: 20px;
    margin-right: 10px;
}
.info-block .mission-item p {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Call-to-Action Button */
.btn-about-primary {
    /* গ্রেডিয়েন্ট বাটন অপরিবর্তিত রাখা হলো */
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
}

/* ----------------------------------- */
/* RESPONSIVE STYLES                   */
/* ----------------------------------- */
@media (max-width: 991px) {
    .about-image-wrapper {
        transform: translateY(0); /* ছোট স্ক্রিনে উপরে উঠানো বন্ধ */
        margin-bottom: 60px;
    }
    .about-main-image {
        height: 350px;
    }
    .about-content-wrapper {
        padding-left: 0;
        padding-top: 0;
        text-align: center;
    }
    .info-block {
        flex-direction: column; /* ছোট স্ক্রিনে ব্লকগুলো নিচে-নিচে আসবে */
        gap: 15px;
    }
    .info-block .mission-item {
        flex-basis: 100%;
    }
    .mission-item {
        justify-content: flex-start; 
        max-width: none;
        text-align: left;
    }
}

/* বাটন কন্টেইনার */
#asami-about-section-unique .about-action-area {
    margin-top: 30px; 
}

/* বাটনটির মূল স্টাইল ও গ্রেডিয়েন্ট */
#asami-about-section-unique .btn-about-primary {
    display: inline-block;
    /* গ্রেডিয়েন্ট ব্যাকগ্রাউন্ড: নীল (Blue) থেকে ডিপ নীল */
    background: linear-gradient(45deg, #007bff, #0056b3); 
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px; 
    font-weight: 700; /* আরও বোল্ড করা হলো */
    font-size: 16px;
    transition: all 0.4s ease;
    border: none; /* ডিফল্ট বর্ডার অপসারণ */
    letter-spacing: 0.5px;
    cursor: pointer;
    
    /* বাটন শ্যাডো (ভিভিড লুকের জন্য) */
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4); 
}

/* হোভার ইফেক্ট (গ্রেডিয়েন্ট ঘোরানো ও শ্যাডো স্ট্রং করা) */
#asami-about-section-unique .btn-about-primary:hover {
    /* গ্রেডিয়েন্ট উল্টে যাওয়া বা স্থান পরিবর্তন */
    background: linear-gradient(-45deg, #007bff, #0056b3); 
    color: #ffffff;
    
    /* হোভারে শ্যাডো আরও শক্তিশালী করা */
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.6); 
    transform: translateY(-2px); /* সামান্য উপরে উঠে আসবে */
}

/* যদি আপনি মর্ডান রেড কালার ব্যবহার করতে চান (ঐচ্ছিক) */
/*
#asami-about-section-unique .btn-about-primary.red-style {
    background: linear-gradient(45deg, #dc3545, #8a0c1a);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4); 
}
#asami-about-section-unique .btn-about-primary.red-style:hover {
    background: linear-gradient(-45deg, #dc3545, #8a0c1a);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.6); 
}



/* ----------------------------------- */
/* 1. SECTION BASE & CURVED DIVIDER    */
/* ----------------------------------- */
#asami-mission-vision-ultimate {
    padding: 100px 0 80px; 
    background-color: #f0f3f5; /* সেকশন ব্যাকগ্রাউন্ড */
    position: relative;
    z-index: 1; 
    font-family: 'Poppins', sans-serif;
}

/* সেকশনের উপরে কার্ভড ডিভাইডার তৈরি */
.curved-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* কার্ভের উচ্চতা */
    background-color: #ffffff; /* উপরের সেকশনের ব্যাকগ্রাউন্ড কালার দিন */
    /* মর্ডান কার্ভ ইফেক্ট */
    border-bottom-left-radius: 50% 100px; 
    border-bottom-right-radius: 50% 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-50px); /* কার্ভটিকে সেকশনের উপরে উঠানো */
    z-index: 2;
}


/* ----------------------------------- */
/* 2. GLASS CARD STYLES (Unique)       */
/* ----------------------------------- */
.mission-card-glass {
    background: rgba(255, 255, 255, 0.9); /* হালকা স্বচ্ছ সাদা */
    border: 1px solid rgba(255, 255, 255, 0.2); /* গ্লাস বর্ডার */
    backdrop-filter: blur(8px); /* গ্লাস ইফেক্টের জন্য গুরুত্বপূর্ণ */
    
    padding: 40px;
    border-radius: 15px; 
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    z-index: 5;
}

/* হোভার অ্যানিমেশন: সামান্য ঘোরানো এবং কার্ভ পরিবর্তন */
.mission-card-glass:hover {
    transform: perspective(1000px) rotateY(3deg) translateY(-8px); /* 3D রোটেশন ও লিফট */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 50px; /* হোভারে কার্ভ তৈরি */
}

/* ----------------------------------- */
/* 3. COLOR VARIATIONS & TEXT          */
/* ----------------------------------- */

.mission-card-glass .card-icon {
    font-size: 52px; /* আইকন আরও বড় করা */
    margin-bottom: 20px;
    opacity: 0.8;
}
.mission-card-glass .card-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
}
.mission-card-glass .mission-list li {
    font-weight: 600;
    color: white;
}

/* MISSION CARD (BLUE THEME) */
.mission-card-blue .card-icon,
.mission-card-blue .mission-list li::before {
    color: #007bff; 
}
.mission-card-blue .card-title::after {
    background-color: #007bff;
}
/* VISION CARD (RED THEME) */
.mission-card-red .card-icon,
.mission-card-red .mission-list li::before {
    color: #dc3545; 
}
.mission-card-red .card-title::after {
    background-color: #dc3545;
}

/* ----------------------------------- */
/* 4. RESPONSIVE STYLES (Curved Fix)   */
/* ----------------------------------- */
@media (max-width: 991px) {
    .curved-divider {
        height: 60px; 
        border-bottom-left-radius: 50% 60px; 
        border-bottom-right-radius: 50% 60px;
        transform: translateY(-30px);
    }
    .mission-card-glass:hover {
        transform: perspective(1000px) rotateY(0deg) translateY(-5px); /* ছোট স্ক্রিনে 3D রোটেশন বন্ধ */
        border-bottom-left-radius: 15px; 
    }
}
@media (max-width: 767px) {
     .curved-divider {
        display: none; /* খুব ছোট স্ক্রিনে কার্ভ বাদ দেওয়া হলো */
    }
}



/* ----------------------------------- */
/* 1. CORE CARD STYLES (Deeper 3D)     */
/* ----------------------------------- */
/* ----------------------------------- */
/* 1. SECTION BASE & CORE CARD STYLES  */
/* ----------------------------------- */
#asami-event-highlight-section-v4 {
    padding: 80px 0; 
    background-color: #f0f3f5; 
    font-family: 'Poppins', sans-serif;
}

.event-highlight-card {
    padding: 30px; /* প্যাডিং আরও কমানো হলো */
    border-radius: 15px; /* কম রাউন্ডেড, রেফারেন্সের মতো */
    color: #ffffff; 
    position: relative;
    overflow: hidden;
    height: 370px; /* নির্দিষ্ট উচ্চতা সেট করা হলো */
    display: flex; /* কন্টেন্ট ভার্টিক্যালি সাজানোর জন্য */
    flex-direction: column;
    justify-content: space-between; /* কন্টেন্ট উপরে ও নিচে ছড়াবে */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); 
     text-shadow: none; 
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* প্রাথমিক শ্যাডো */
}

/* উন্নত 3D হোভার ইফেক্ট: সামান্য লিফট ও ফ্রন্টাল প্রেস */
.event-highlight-card:hover {
    transform: perspective(1000px) translateY(-5px) translateZ(10px); /* সামান্য উপরে উঠে সামনে আসবে */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4); /* হোভারে গভীর শ্যাডো */
    z-index: 10;
}

/* ----------------------------------- */
/* 2. কালার কম্বিনেশন (রেফারেন্স থেকে) & গ্রাফিক্যাল হেডার */
/* ----------------------------------- */

/* UPCOMING EVENT (REFERENCE DEEP BLUE) */
.card-upcoming {
    background: linear-gradient(145deg, #266C88, #1a4a75); /* রেফারেন্সের নীল টোন */
}
/* ANNOUNCEMENT (REFERENCE DEEP PURPLE/MAGENTA) */
.card-announcement {
    background: linear-gradient(145deg, #455078, #4a2162); /* রেফারেন্সের বেগুনী টোন */
}

/* কার্ডের উপরে আইকনিক ডেকোরেশন (রেফারেন্সের মতো) */
.event-highlight-card::before {
    content: '';
    position: absolute;
    top: -50px; /* আইকন হেডারকে উপরে সরানোর জন্য */
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1); /* হালকা সাদা অস্বচ্ছ ব্যাকগ্রাউন্ড */
    border-radius: 50%; /* গোলাকার */
    opacity: 0; /* ডিফল্টভাবে লুকানো */
    transition: all 0.5s ease;
}
.event-highlight-card:hover::before {
    top: -30px; /* হোভারে সামান্য নিচে আসবে */
    left: -30px;
    opacity: 0.3; /* হোভারে দৃশ্যমান হবে */
}

/* ----------------------------------- */
/* 3. আইকন ও টেক্সট স্টাইল (কমপ্যাক্ট লেআউট) */
/* ----------------------------------- */
.card-header-icon {
  margin-bottom: 10px; 
    /* নিশ্চিত করা যে এটি flex আইটেম হিসেবে সুন্দরভাবে বসে */
    display: block; 
    width: fit-content;
}

.event-card-image {
    width: 65px; /* ইমেজের জন্য নির্দিষ্ট সাইজ (ফন্ট আইকনের চেয়ে বড়) */
    height: 65px;
    object-fit: contain; /* ইমেজ যেন কেটে না যায় */
    opacity: 0.9;
    transition: all 0.5s ease;
    
    /* ইমেজের জন্য হালকা গ্লো ইফেক্ট */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* হোভারে ইমেজ আরও উজ্জ্বল হবে */
.event-highlight-card:hover .event-card-image {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.event-highlight-card:hover .card-header-icon {
    color: #ffffff; /* হোভারে পুরোপুরি সাদা হবে */
}

.card-title-highlight {
    font-size: 15px; /* সামান্য ছোট করা হলো */
    font-weight: 600; 
    opacity: 0.9;
    letter-spacing: 1px;
}

.event-main-heading {
    font-size: 26px; /* হেডিং আরও ছোট করা হলো */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.event-details-block {
    flex-grow: 1; /* ডিটেইলস ব্লক বাকি স্পেস নিবে */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* কন্টেন্ট নিচে থাকবে */
}
.event-details-block p {
    font-size: 15px; /* টেক্সট ছোট করা হলো */
    font-weight: 400; /* হালকা ফন্ট ওজন */
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}
.event-details-block i {
    margin-right: 10px;
    font-size: 16px;
}

/* ----------------------------------- */
/* 4. অ্যাকশন বাটন (ক্লিন ও কম্প্যাক্ট)    */
/* ----------------------------------- */
.event-action-btn {
    padding: 10px 25px; /* বাটন প্যাডিং কমানো হলো */
    font-size: 14px; /* বাটন টেক্সট ছোট করা হলো */
    margin-top: 15px; /* মার্জিন কমানো হলো */
    border: 1px solid rgba(255, 255, 255, 0.7); /* হালকা বর্ডার */
    color: rgba(255, 255, 255, 0.9);
}

.event-action-btn:hover {
    background-color: rgba(255, 255, 255, 0.15); /* হোভারে হালকা স্বচ্ছ ব্যাকগ্রাউন্ড */
    color: #ffffff;
    border-color: #ffffff;
}


/* ----------------------------------- */
/* 5. রেসপনসিভ স্টাইল                   */
/* ----------------------------------- */
@media (max-width: 991px) {
    .event-highlight-card:hover {
        transform: perspective(1000px) translateY(-5px) translateZ(0px); /* ছোট স্ক্রিনে Z-অ্যাক্সিস সরানো বন্ধ */
    }
}
@media (max-width: 767px) {
    .event-highlight-card {
        height: auto; /* ছোট স্ক্রিনে অটো হাইট */
        padding: 25px;
    }
     .event-card-image {
        width: 50px; /* ছোট স্ক্রিনে ইমেজ সাইজ কমানো */
        height: 50px;
    }
    .event-main-heading {
        font-size: 22px;
    }
    .event-details-block p {
        font-size: 14px;
    }
    .card-header-icon {
        font-size: 45px;
    }
    .event-highlight-card::before {
        display: none; /* ছোট স্ক্রিনে ডেকোরেশন হাইড করা হলো */
    }
}


/* ----------------------------------- */
/* 1. SECTION BASE STYLES              */
/* ----------------------------------- */
#asami-message-section-compact-final {
    padding: 80px 0; 
    background-color: #ffffff; 
    font-family: 'Poppins', sans-serif;
}
.section-main-title-msg {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}
.section-top-tag {
    color: #007bff; 
    font-weight: 600;
}

/* ----------------------------------- */
/* 2. CORE CARD STYLES (Compact & 2D/3D)*/
/* ----------------------------------- */
.leader-message-card {
    background-color: #f8f9fa; 
    padding: 25px; 
    border-radius: 10px;
    height: auto; 
    
    display: flex;
    gap: 20px; 
    
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    border-left: 4px solid transparent; 
}

/* হোভার ইফেক্ট: সামান্য উপরে উঠে আসা ও শ্যাডো */
.leader-message-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); 
}

/* ----------------------------------- */
/* 3. LEADER INFO & IMAGE STYLES       */
/* ----------------------------------- */
.leader-info-box {
    flex-shrink: 0; 
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    width: 150px; 
}

.leader-image-wrapper {
    width: 100%; 
    height: 150px; 
    margin: 0 auto;
    border-radius: 5px; 
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); 
    overflow: hidden;
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----------------------------------- */
/* 4. MESSAGE CONTENT & TEXT STYLES    */
/* ----------------------------------- */
.message-content {
    flex-grow: 1; 
}
.leader-name {
    font-size: 18px; 
    font-weight: 700;
    margin-bottom: 2px;
    text-align: left;
}
.leader-title {
    font-size: 13px; 
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
    color: #6c757d;
}

.message-excerpt {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ----------------------------------- */
/* 5. COLOR VARIATIONS & BORDER        */
/* ----------------------------------- */

/* President Card (Blue Theme) */
.card-president:hover {
    border-left: 4px solid #007bff; 
}
.card-president .leader-name {
    color: black; 
}

/* Secretary Card (Red Theme) */
.card-secretary:hover {
    border-left: 4px solid #dc3545; 
}
.card-secretary .leader-name {
    color: black; 
}

/* Generic Button Style */
.message-read-more {
    display: inline-block;
    padding: 5px 15px; 
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Blue Button */
.btn-blue-outline {
    border: 1px solid #007bff;
    color: #007bff;
}
.btn-blue-outline:hover {
    background-color: #007bff;
    color: #ffffff;
}
/* Red Button */
.btn-red-outline {
    border: 1px solid #dc3545;
    color: #dc3545;
}
.btn-red-outline:hover {
    background-color: #dc3545;
    color: #ffffff;
}

/* ----------------------------------- */
/* 6. RESPONSIVE STYLES                */
/* ----------------------------------- */
@media (max-width: 767px) {
    .message-heading-short {
        text-align: center;
    }
    .leader-message-card {
        flex-direction: column; 
        text-align: center;
        gap: 10px;
    }
    .leader-info-box {
        width: 100%;
    }
    .leader-image-wrapper {
        width: 100px;
        height: 100px;
    }
    .leader-name, .leader-title {
        text-align: center;
    }
    .message-excerpt {
        -webkit-line-clamp: 3;
    }
}

.message-heading-short {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a; /* গাঢ় রং */
    margin-bottom: 5px;
}

.card-president .message-heading-short {
    color: #007bff; /* প্রেসিডেন্ট মেসেজ নীল */
}

.card-secretary .message-heading-short {
    color: #dc3545; /* সেক্রেটারি মেসেজ লাল */
}



/* ----------------------------------- */
/* 1. SECTION BASE STYLES              */
/* ----------------------------------- */
#asami-speakers-section-flip {
    padding: 100px 0; 
    background-color: #f0f3f5; /* হালকা ধূসর ব্যাকগ্রাউন্ড */
    font-family: 'Poppins', sans-serif;
}

.section-main-title-sp {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
}
.section-top-tag {
    color: #dc3545; /* লাল হাইলাইট */
    font-weight: 600;
}

/* ----------------------------------- */
/* 2. FLIP CARD CONTAINER & INNER      */
/* ---------------------------------------------------- */
/* Speakers Section (Flip Card Final)                   */
/* ---------------------------------------------------- */
#asami-speakers-section-flip-final {
    padding: 100px 0; 
    background-color: #f8f9fa; /* হালকা ধূসর ব্যাকগ্রাউন্ড */
    font-family: 'Poppins', sans-serif;
}

.section-top-tag {
    color: #4a2162; /* ডিপ পার্পল হাইলাইট */
    font-weight: 600;
}
.section-main-title-sp {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
}

/* ফ্লিপ কার্ড কোর */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 380px; /* কার্ডের নির্দিষ্ট উচ্চতা */
    perspective: 1000px; /* 3D ফ্লিপ ইফেক্টের জন্য */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* প্রাথমিক শ্যাডো */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); /* স্মুথ ট্রানজিশন */
    transform-style: preserve-3d;
    border-radius: 15px;
}

/* হোভার ফ্লিপ অ্যানিমেশন */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* পিছনের অংশ লুকানো */
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-sizing: border-box;
    color: #ffffff;
}

/* ফ্রন্ট সাইড: ডিপ পার্পল/ম্যাজেন্টা গ্রেডিয়েন্ট */
.flip-card-front {
    background: linear-gradient(135deg, #171d3a, #171d3a); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ব্যাক সাইড: রয়্যাল ব্লু গ্রেডিয়েন্ট */
.flip-card-back {
    background: linear-gradient(135deg, #185e9e, #0f3f6e); 
    transform: rotateY(180deg); /* পিছনের অংশ 180 ডিগ্রি ঘুরিয়ে রাখা */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ছবি স্টাইল */
.speaker-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* গোলাকার ছবি */
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid rgba(255, 255, 255, 0.3); /* ছবির চারপাশে সাদা বর্ডার */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.speaker-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}
.speaker-designation {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

/* ব্যাক কন্টেন্ট */
.back-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 5px;
}
.back-designation {
    font-size: 17px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 15px;
}
.back-bio {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-height: 100px; /* বায়ো এর জন্য সর্বোচ্চ উচ্চতা */
    overflow: hidden;
}

/* সোশ্যাল লিঙ্কস */
.social-links a {
    color: #ffffff;
    font-size: 22px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}
.social-links a:hover {
    transform: scale(1.2);
    color: #f8f9fa;
}

/* Speakers Responsive */
@media (max-width: 767px) {
    .flip-card {
        height: 350px; 
    }
    .speaker-photo {
        width: 120px;
        height: 120px;
    }
    .speaker-name, .back-title {
        font-size: 20px;
    }
}


.mission_bg {
    background-image: url(https://bgs-bd.com/assets/mission.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}




/* ---------------------------------------------------- */
/* SLIDER SECTION STYLES                                */
/* ---------------------------------------------------- */
#slider-area {
    /* সেকশনকে উপরে-নিচে কোনো অতিরিক্ত স্পেস দিতে বারণ করে */
    padding: 0; 
    margin: 0;
}

/* স্লাইডার কন্টেইনার */
.slider-active-wrap {
    width: 100%;
    overflow: hidden; /* স্লাইডারের বাইরের অংশ লুকানোর জন্য */
}

/* স্লাইডারের মধ্যেকার প্রতিটি ইমেজ ট্যাগ */
.responsive-slider-image {
    width: 100%; /* ছবি সর্বদা কন্টেইনারের পুরো প্রস্থ নেবে */
    height: auto; /* প্রস্থের সাথে সামঞ্জস্য রেখে উচ্চতা স্বয়ংক্রিয়ভাবে সেট হবে */
    object-fit: cover; /* কন্টেইনারের আকার অনুযায়ী ছবিকে কেটে ফিট করে, যাতে কোনো সাদা জায়গা না থাকে */

    /* বড় স্ক্রিনের জন্য সর্বোচ্চ উচ্চতা সেট করা */
    max-height: 550px; /* ডেস্কটপে সর্বোচ্চ উচ্চতা 550px (আপনার প্রয়োজন অনুযায়ী এটি পরিবর্তন করতে পারেন) */
    display: block;
}

/* ---------------------------------------------------- */
/* রেসপনসিভ এডজাস্টমেন্টস (Responsive Adjustments)        */
/* ---------------------------------------------------- */

/* মিডিয়াম স্ক্রিন (যেমন ট্যাবলেট) */
@media (max-width: 991px) {
    .responsive-slider-image {
        max-height: 450px; /* ট্যাবলেটে উচ্চতা কমানো হলো */
    }
}

/* ছোট স্ক্রিন (যেমন মোবাইল ফোন) */
@media (max-width: 576px) {
    .responsive-slider-image {
        max-height: 300px; /* মোবাইলে উচ্চতা আরও কমানো হলো */
    }
}



/* ---------------------------------------------------- */
/* BSS Membership Links Section (Clean & Focused)       */
/* ---------------------------------------------------- */
#bss-membership-links-section {
    padding: 80px 0;
    background-color: #f0f3f5; /* সেকশনের ব্যাকগ্রাউন্ড হালকা ধূসর করা হলো */
    font-family: 'Poppins', sans-serif;
}

/* সেকশন টাইটেল */
.section-top-tag-bss {
    color: #007bff; 
    font-weight: 600;
}
.section-main-title-bss {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
}

/* প্রধান কার্ড স্টাইল */
.info-card-bss {
    background-color: #ffffff; /* কার্ডের ব্যাকগ্রাউন্ড সাদা */
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    position: relative;
    
    /* শক্তিশালী শ্যাডো */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    transition: all 0.4s ease-in-out;
    
    /* নিচের বর্ডার ইনিশিয়ালাইজ করা হলো */
    border-bottom: 4px solid transparent;
}

/* হোভার ইফেক্ট */
.info-card-bss:hover {
    transform: translateY(-5px); 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25); /* হোভারে আরও গাঢ় শ্যাডো */
}

/* আইকন স্টাইল (সাদা ব্যাকগ্রাউন্ডে আইকন) */
.card-icon-wrap-bss {
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 28px;
    background-color: #f0f3f5; /* আইকন কন্টেইনারে হালকা ব্যাকগ্রাউন্ড */
    transition: all 0.4s ease;
}
/* হোভারে আইকনের রং পরিবর্তন */
.info-card-bss:hover .card-icon-wrap-bss {
    background-color: #e5e5e5;
}


/* ১. নীল থিম */
.card-blue-outline .card-icon-wrap-bss { color: #007bff; }
.card-blue-outline .card-title-bss { color: #007bff; }
.card-blue-outline:hover { border-bottom: 4px solid #007bff; } /* হোভারে নীল বর্ডার */

/* ২. বেগুনি থিম */
.card-purple-outline .card-icon-wrap-bss { color: #6f42c1; }
.card-purple-outline .card-title-bss { color: #6f42c1; }
.card-purple-outline:hover { border-bottom: 4px solid #6f42c1; } /* হোভারে বেগুনি বর্ডার */

/* ৩. লাল থিম */
.card-red-outline .card-icon-wrap-bss { color: #dc3545; }
.card-red-outline .card-title-bss { color: #dc3545; }
.card-red-outline:hover { border-bottom: 4px solid #dc3545; } /* হোভারে লাল বর্ডার */


/* টেক্সট স্টাইল */
.card-title-bss {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.card-text-bss {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 40px;
}

/* লিঙ্ক স্টাইল */
.card-link-bss {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.card-link-bss:hover {
    text-decoration: underline;
    padding-left: 5px;
}

/* লিঙ্ক কালার */
.link-blue { color: #007bff; }
.link-purple { color: #6f42c1; }
.link-red { color: #dc3545; }


/* Responsive Styles */
@media (max-width: 991px) {
    .info-card-bss {
        padding: 30px 20px;
    }
    .card-title-bss {
        font-size: 18px;
    }
}



/* ============================================== */
/* START: Unique CSS for Life Members Page Styling (English Version) */
/* ============================================== */

/* ============================================== */
/* START: Eye-Catching Modern Header with Carve Design */
/* ============================================== */

/* Keyframes for a subtle background animation (Eye-Catching) */
@keyframes asami-lm-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.asami-lm-page-header-area {
    position: relative;
    overflow: hidden; 
    padding: 120px 0 100px; /* Increased bottom padding to accommodate the curve */
    color: #fff;
    text-align: center;
    
    /* Dynamic Gradient Background */
    background: linear-gradient(-45deg, #007bff, #004d99, #ff7f50, #ffc107);
    background-size: 400% 400%; 
    animation: asami-lm-shine 20s ease infinite; 
    
    /* REMOVED: border-bottom: 8px solid #ff7f50; (Curve will act as the separator) */
    z-index: 1; /* Ensure content stays above the background */
}

/* ------------------------------------- */
/* START: CURVE DESIGN (Wave Separator)  */
/* ------------------------------------- */
.asami-lm-page-header-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Height of the curve shape */
    background: #ffffff; /* Should match the color of the main content section */
    
    /* The magic: creates a large, deep curve (wave) */
    border-top-left-radius: 50% 100px; /* Horizontal and Vertical radius for curve */
    border-top-right-radius: 50% 100px; 
    transform: translateY(50%); /* Pushes the curve down halfway to form a wave */
    z-index: 10; /* Make sure the curve is on top of everything */
}
/* ------------------------------------- */
/* END: CURVE DESIGN                     */
/* ------------------------------------- */

/* Pseudo-element for a subtle texture/pattern overlay (Kept from previous design) */
.asami-lm-page-header-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: -1;
    opacity: 0.5; 
}
/* Title and Subtitle Styling (Updated for MAXIMUM CLARITY) */

/* The ::after (Curve) and ::before (Texture) blocks remain as they are */

.asami-lm-page-title {
    /* Increased font size for desktop for more impact */
    font-size: 4rem; 
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 3px; /* Slightly wider spacing for elegance */
    
    /* 3D/Pop-out Effect with HIGH CONTRAST */
    /* Black shadow for depth, Yellow/Gold shadow for the pop effect */
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000; /* Pop-out color */
    
    position: relative; 
    z-index: 2;
    color: #fff; /* Ensure text color is pure white */
}

.asami-lm-page-subtitle {
    font-size: 1.6rem; /* Slightly larger subtitle */
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 1; /* Full opacity for best readability */
    /* Clean, soft shadow for visibility over the gradient */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

/* --- Responsive Adjustments for Text --- */
@media (max-width: 991.98px) {
    .asami-lm-page-title {
        font-size: 3.5rem;
    }
    .asami-lm-page-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .asami-lm-page-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
       
    }
    .asami-lm-page-subtitle {
        font-size: 1.3rem;
    }
}

/* --- Breadcrumb Styling --- */
.asami-lm-page-header-area .breadcrumb {
    justify-content: center;
    background: none;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
.asami-lm-page-header-area .breadcrumb-item a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s;
}
.asami-lm-page-header-area .breadcrumb-item.active {
    color: #ffc107; 
    font-weight: 600;
}

/* --- Member Grid Section Styling (MUST be #ffffff for the curve to work) --- */
.asami-lm-member-grid-area {
    padding: 80px 0;
    background-color: #ffffff; /* This must match the curve color (asami-lm-page-header-area::after) */
}


/* --- Responsiveness (Updated for curve) --- */
@media (max-width: 767.98px) {
    /* Adjust curve size on mobile */
    .asami-lm-page-header-area::after {
        height: 70px; /* Smaller curve height on mobile */
        border-top-left-radius: 50% 70px; 
        border-top-right-radius: 50% 70px; 
    }
    .asami-lm-page-header-area {
        padding: 80px 0 80px; /* Adjusted padding */
    }
    .asami-lm-page-title {
        font-size: 2.5rem;
    }
    .asami-lm-page-subtitle {
        font-size: 1.2rem;
    }
    /* ... (অন্যান্য মেম্বার কার্ডের ফন্ট সাইজ রেসপনসিভ CSS একই থাকবে) ... */
}
/* ============================================== */
/* END: Eye-Catching Modern Header with Carve Design */
/* ============================================== */

/* --- Member Grid Section Styling --- */
.asami-lm-member-grid-area {
    padding: 80px 0;
    background-color: #ffffff; /* Clean white background */
}
.asami-lm-section-title {
    font-size: 3.7rem;
    font-weight: 700;
    color: #004d99;
    margin-bottom: 15px;
}
.asami-lm-section-subtitle {
    font-size: 1.8rem;
    color: #495057;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 20px;
}

/* --- Member Card Styling (Larger Fonts, Better Look) --- */
.asami-lm-member-card {
    background-color: #f8f9fa; /* Off-white card background */
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.asami-lm-member-card:hover {
    transform: scale(1.03); /* Slight zoom on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: #007bff;
}

.asami-lm-member-photo {
    width: 100%;
    height: 280px; 
    overflow: hidden;
    /* Remove border-bottom from here for cleaner look, let border be on card */
}
.asami-lm-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.asami-lm-member-card:hover .asami-lm-member-photo img {
    transform: scale(1.1);
}

.asami-lm-member-info {
    padding: 25px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.asami-lm-member-name {
    font-size: 2rem; /* Large Font Size for Name */
    font-weight: 700;
    color: #004d99; /* Primary Blue for Name */
    margin-top: 0;
    margin-bottom: 5px;
}
.asami-lm-member-designation {
    font-size: 1.5rem; /* Bigger Font Size */
    font-weight: 500;
    color: #343a40;
    margin-bottom: 3px;
}
.asami-lm-member-affiliation {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 15px;
}
.asami-lm-member-id {
    display: block;
    font-weight: 700;
    color: #28a745; 
    margin-top: auto; /* Pushes ID to the bottom of the card */
    font-size: 1.7rem; /* Large Font Size for ID */
    border-top: 1px solid #e9ecef;
    padding-top: 10px;
}

/* --- Button Style --- */
.asami-lm-btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background-color: #28a745; /* Green Button */
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.7rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.4);
}
.asami-lm-btn-primary:hover {
    background-color: #1e7e34;
    transform: translateY(-3px);
}
/* --- Responsiveness --- */
@media (max-width: 991.98px) {
    /* For Tablets (up to large tablets) */
    .asami-lm-member-photo {
        height: 250px; /* Slightly taller image area */
    }
    .asami-lm-page-title {
        font-size: 2.8rem;
    }
    /* BIGGER FONTS FOR MEMBER INFO ON TABLET */
    .asami-lm-member-name {
        font-size: 1.8rem; /* Increased from 1.3rem */
    }
    .asami-lm-member-designation {
        font-size: 1.3rem; /* Increased from 1rem */
    }
    .asami-lm-member-id {
        font-size: 1.5rem; /* Increased from 1.2rem */
    }
}

@media (max-width: 767.98px) {
    /* For Medium Tablets (e.g., in portrait mode) */
    .asami-lm-page-title {
        font-size: 2.5rem;
    }
    .asami-lm-page-subtitle {
        font-size: 1.3rem;
    }
    .asami-lm-section-title {
        font-size: 2.5rem;
    }
    .asami-lm-section-subtitle {
        font-size: 1.4rem;
    }

    /* BIGGER FONTS FOR MEMBER INFO ON TABLET (CONTINUED) */
    .asami-lm-member-name {
        font-size: 2rem; /* Even larger */
    }
    .asami-lm-member-designation {
        font-size: 1.5rem;
    }
    .asami-lm-member-affiliation {
        font-size: 1.4rem;
    }
    .asami-lm-member-id {
        font-size: 1.6rem;
    }

    .asami-lm-btn-primary {
        font-size: 1.8rem; /* Button text also bigger */
        padding: 15px 35px;
    }
}

@media (max-width: 575.98px) {
    /* For Mobile devices (Single Column View) */
    .asami-lm-member-list .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .asami-lm-page-header-area {
        padding: 80px 0 40px;
    }
    .asami-lm-page-title {
        font-size: 2.2rem;
    }
    .asami-lm-section-title {
        font-size: 2.2rem;
    }
    .asami-lm-member-photo {
        height: 300px; /* Taller image on single-column view */
    }

    /* MAXIMIZING FONT SIZE FOR READABILITY ON MOBILE */
    .asami-lm-member-name {
        font-size: 2.3rem; /* Very large name */
    }
    .asami-lm-member-designation {
        font-size: 1.7rem;
    }
    .asami-lm-member-affiliation {
        font-size: 1.5rem;
    }
    .asami-lm-member-id {
        font-size: 1.8rem; /* Large 'Details' button text */
    }
    .asami-lm-btn-primary {
        font-size: 2rem; /* Main button text also very prominent */
        padding: 18px 45px;
    }
}



 /* ============================================== */
/* START: Unique CSS for Become a Member Page (asami-bm-) - BIGGER FONTS & BLACK SHADOW */
/* ============================================== */

/* Keyframes for Hero Background Animation */
@keyframes asami-bm-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Hero/Header Section (Carved Design) --- */
.asami-bm-hero-area {
    position: relative;
    overflow: hidden; 
    padding: 75px 0 160px; /* Large padding for content and curve space */
    color: #fff;
    text-align: center;
    background: linear-gradient(-45deg, #004d99, #3c79c9, #34a853); /* Blue and Green Gradient */
    background-size: 400% 400%; 
    animation: asami-bm-shine 20s ease infinite; 
    z-index: 1;
}

/* CARVE DESIGN (Wave Separator) */
.asami-bm-hero-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px; 
    background: #f8f9fa; 
    border-top-left-radius: 50% 120px; 
    border-top-right-radius: 50% 120px; 
    transform: translateY(50%);
    z-index: 10;
}

/* --- Hero/Header Section (Carved Design) --- */
.asami-bm-hero-area {
    position: relative;
    overflow: hidden; 
    padding: 75px 0 160px;
    color: #fff;
    text-align: center;
    background: linear-gradient(-45deg, #004d99, #007bff, #34a853); 
    background-size: 400% 400%; 
    animation: asami-bm-shine 20s ease infinite; 
    z-index: 1;
}

/* CARVE DESIGN (Wave Separator) */
.asami-bm-hero-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px; 
    background: #f8f9fa; 
    border-top-left-radius: 50% 120px; 
    border-top-right-radius: 50% 120px; 
    transform: translateY(50%);
    z-index: 10;
}

/* --- HEADER TEXT STYLING (HUGE DESKTOP FONTS & BLACK SHADOW) --- */
.asami-bm-main-title {
    font-size: 5rem; /* SIGNIFICANTLY INCREASED FONT SIZE (Desktop) */
    font-weight: 900;
    letter-spacing: 4px; /* Wider spacing */
    margin-bottom: 20px;
    /* ONLY BLACK SHADOW FOR CLARITY */
   
}
.asami-bm-sub-text {
    font-size: 2.5rem; /* LARGER SUBTITLE FONT (Desktop) */
    font-weight: 500;
    margin-bottom: 60px;
    
}
.asami-bm-hero-area * {
    position: relative;
    z-index: 2; 
}


/* --- General Button Style (LARGER FONT) --- */
.asami-bm-btn-primary {
    display: inline-block;
    padding: 20px 60px; /* More padding */
    background-color: #ffc107; 
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.8rem; /* BIGGER FONT */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.5);
}
/* ... (Button Hover remains same) ... */

/* --- Content & Benefit Section (LARGER FONT) --- */
.asami-bm-content-area {
    padding: 100px 0 60px;
    background-color: #f8f9fa; 
}
.asami-bm-section-heading {
    font-size: 3.5rem; /* LARGER SECTION HEADING (Desktop) */
    font-weight: 700;
    color: #004d99;
}
.asami-bm-section-intro {
    font-size: 1.8rem; /* LARGER SECTION SUBTITLE (Desktop) */
    color: #495057;
}

/* Benefit Card Styling (LARGER FONT) */
.asami-bm-benefit-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #007bff;
    transition: all 0.3s ease;
    height: 100%;
}
.asami-bm-icon {
    font-size: 4rem; /* LARGER ICON */
    color: #34a853; 
    margin-bottom: 20px;
}
.asami-bm-card-title {
    font-size: 2.2rem; /* LARGER CARD TITLE (Desktop) */
    font-weight: 700;
    color: #004d99;
}
.asami-bm-card-text {
    font-size: 1.5rem; /* LARGER CARD TEXT (Desktop) */
    color: #6c757d;
}

/* --- PDF Download CTA Section (LARGER FONT) --- */
.asami-bm-pdf-cta-section {
    background-color: #ffffff;
    padding: 40px 0 100px;
}
.asami-bm-pdf-link-card {
    display: block;
    background: linear-gradient(135deg, #007bff 0%, #004d99 100%);
    color: #fff; /* Base Text Color: White */
    padding: 50px; 
    border-radius: 20px; 
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease; /* Added background transition */
}

/* Hover effect on the card */
.asami-bm-pdf-link-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    /* Change background slightly on hover for visual feedback */
    background: linear-gradient(135deg, #004d99 0%, #007bff 100%);
}
/* Make sure all child text elements retain WHITE color on hover */
.asami-bm-pdf-link-card:hover h3, 
.asami-bm-pdf-link-card:hover p,
.asami-bm-pdf-link-card:hover span {
    color: #fff !important; /* Forces the text to stay white */
}

.asami-bm-pdf-icon {
    font-size: 7rem;
    color: #ffc107; 
    transition: color 0.4s ease;
}
/* Icon color change on hover */
.asami-bm-pdf-link-card:hover .asami-bm-pdf-icon {
    color: #ff7f50; /* Changed icon color for added effect */
}

.asami-bm-pdf-title {
    font-size: 3rem; 
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff; /* Ensure static white color */
}
.asami-bm-pdf-description {
    font-size: 1.5rem; 
    opacity: 0.9;
    margin-bottom: 20px;
    color: #fff; /* Ensure static white color */
}
.asami-bm-pdf-cta-text {
    display: inline-block;
    background-color: #34a853; 
    padding: 12px 35px; 
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.4rem; 
    transition: background-color 0.4s ease;
}
/* CTA text background change on hover */
.asami-bm-pdf-link-card:hover .asami-bm-pdf-cta-text {
    background-color: #2e8b45; /* Darker green on hover */
}


/* ============================================== */
/* START: RESPONSIVENESS (All Fonts Significantly BOLDER) */
/* ============================================== */
@media (max-width: 991.98px) {
    /* Tablet */
    .asami-bm-main-title {
        font-size: 4.5rem; /* VERY BIG */
    }
    .asami-bm-sub-text {
        font-size: 1.8rem; /* VERY BIG */
    }
    .asami-bm-btn-primary {
        font-size: 1.4rem;
    }
    .asami-bm-section-heading {
        font-size: 2.5rem;
    }
    .asami-bm-section-intro {
        font-size: 1.4rem;
    }
    .asami-bm-pdf-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    /* Mobile */
    .asami-bm-hero-area {
        padding: 80px 0 100px;
    }
    .asami-bm-main-title {
        font-size: 3.5rem; /* MAXIMUM READABILITY */
        text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.8); /* Simple and strong black shadow */
    }
    .asami-bm-sub-text {
        font-size: 1.7rem; /* MAXIMUM READABILITY */
    }
    .asami-bm-btn-primary {
        font-size: 1.5rem; /* Large button text */
        padding: 15px 40px;
    }
    /* PDF Card Stack vertically */
    .asami-bm-pdf-icon {
        font-size: 5rem;
    }
    .asami-bm-pdf-title {
        font-size: 2rem; 
    }
    .asami-bm-pdf-description {
        font-size: 1.2rem;
    }
}
/* ============================================== */
/* END: Unique CSS for Become a Member Page */
/* ============================================== */


         /* ============================================== */
/* START: Unique CSS for Journal Manage Page (asami-jm-) */
/* ============================================== */

/* Keyframes for Hero Background Animation */
@keyframes asami-jm-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Hero/Header Section (Carved Design) --- */
.asami-jm-hero-area {
    position: relative;
    overflow: hidden; 
    padding: 75px 0 160px;
    color: #fff;
    text-align: center;
    /* Custom, high-contrast gradient for a professional journal look */
    background: linear-gradient(-45deg, #022340, #004d99, #007bff, #1f67b3); 
    background-size: 400% 400%; 
    animation: asami-jm-shine 20s ease infinite; 
    z-index: 1;
}

/* CARVE DESIGN (Same as previous, for consistency) */
.asami-jm-hero-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px; 
    background: #ffffff; /* Must match the content area background */
    border-top-left-radius: 50% 120px; 
    border-top-right-radius: 50% 120px; 
    transform: translateY(50%);
    z-index: 10;
}

/* --- HEADER TEXT STYLING (HUGE DESKTOP FONTS & BLACK SHADOW) --- */
.asami-jm-main-title {
    font-size: 5.3rem; /* HUGE FONT FOR DESKTOP */
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
    /* Clear Black Shadow */
  
}
.asami-jm-sub-text {
    font-size: 2.5rem; /* LARGER SUBTITLE FONT */
    font-weight: 500;
    margin-bottom: 60px;

}
.asami-jm-hero-area * {
    position: relative;
    z-index: 2; 
}


/* --- Journal List Section --- */
.asami-jm-journal-list-area {
    padding: 100px 0;
    background-color: #ffffff; /* White to match curve */
}
.asami-jm-section-heading {
    font-size: 3.5rem; /* LARGER SECTION HEADING */
    font-weight: 700;
    color: #022340;
}
.asami-jm-section-intro {
    font-size: 1.8rem; /* LARGER SECTION SUBTITLE */
    color: #495057;
    margin-bottom: 40px;
}
.asami-jm-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 77, 153, 0.5), rgba(0, 0, 0, 0));
    margin: 40px 0;
}


/* --- Single Journal Article Styling --- */
.asami-jm-article-row {
    padding: 20px 0;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.asami-jm-article-row:hover {
    background-color: #f0f8ff; /* Light blue background on hover */
    box-shadow: 0 4px 15px rgba(0, 77, 153, 0.1);
}

.asami-jm-year-tag {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem; /* BIG TAG FONT */
    margin-bottom: 10px;
}
.asami-jm-tag-secondary {
    background-color: #34a853;
}

.asami-jm-article-title {
    font-size: 2.5rem; /* VERY LARGE TITLE FONT (Desktop) */
    font-weight: 700;
    color: #022340;
    margin-bottom: 8px;
}
.asami-jm-article-short-text {
    font-size: 1.4rem; /* LARGE SHORT TEXT FONT (Desktop) */
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: 5px;
}
.asami-jm-article-author {
    display: block;
    font-size: 1.1rem; /* LARGE AUTHOR FONT (Desktop) */
    font-weight: 600;
    color: #ff7f50; /* Orange accent */
}

/* View PDF Button */
.asami-jm-btn-view {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff7f50; /* Orange/Coral CTA button */
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.6rem; /* VERY LARGE BUTTON FONT */
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 127, 80, 0.4);
}
.asami-jm-btn-view:hover {
    background-color: #ff6347;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 127, 80, 0.6);
}
.asami-jm-btn-view i {
    margin-right: 8px;
}


/* ============================================== */
/* START: RESPONSIVENESS (MAXIMUM FONT SIZE) */
/* ============================================== */
@media (max-width: 1200px) {
    /* Large Laptop/Desktop Reduction */
    .asami-jm-article-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    /* Tablet & Smaller Devices */
    .asami-jm-main-title {
        font-size: 4.5rem; /* BIG ON TABLET */
    }
    .asami-jm-sub-text {
        font-size: 1.8rem; /* BIG ON TABLET */
    }
    .asami-jm-section-heading {
        font-size: 2.8rem;
    }
    .asami-jm-section-intro {
        font-size: 1.5rem;
    }
    
    .asami-jm-article-title {
        font-size: 2rem;
    }
    .asami-jm-article-short-text, .asami-jm-article-author {
        font-size: 1.3rem;
    }
    .asami-jm-btn-view {
        font-size: 1.4rem;
        padding: 10px 20px;
    }
}

@media (max-width: 767.98px) {
    /* Mobile - Stack Articles Vertically */
    .asami-jm-hero-area {
        padding: 80px 0 100px;
    }
    .asami-jm-hero-area::after {
        height: 80px; 
        border-top-left-radius: 50% 80px; 
        border-top-right-radius: 50% 80px; 
    }
    .asami-jm-main-title {
        font-size: 3.5rem; /* MAX ON MOBILE */
    }
    .asami-jm-sub-text {
        font-size: 1.7rem;
    }

    /* Journal Items: Stacked Look */
    .asami-jm-article-row > div {
        text-align: left;
        margin-bottom: 15px;
    }
    .asami-jm-year-tag {
        margin-bottom: 20px;
    }
    .asami-jm-article-title {
        font-size: 2.2rem;
        margin-top: 10px;
    }
    .asami-jm-article-short-text {
        font-size: 1.4rem;
    }
    .asami-jm-btn-view {
        font-size: 1.5rem;
        padding: 15px 30px;
        width: 100%; /* Full width button on mobile */
    }
}
/* ============================================== */
/* END: Unique CSS for Journal Manage Page */
/* ============================================== */



/* ================================================= */
/* 1. EVENT DETAILS SECTION (hc-event-details)      */
/* ================================================= */

.hc-section-event-details {
    background-color: #f8f9fa; /* Light background */
}

.hc-event-title {
    font-size: 42px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hc-event-meta-bar {
    font-size: 15px;
    color: #495057;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.hc-event-featured-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border: 5px solid #ffffff;
}

.hc-event-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #343a40;
    margin-top: 30px;
    margin-bottom: 15px;
}

.hc-event-description-short {
    font-size: 18px;
    color: #6c757d;
}

.hc-content-heading {
    font-size: 22px;
    font-weight: 700;
    color: #004a80;
    margin-top: 25px;
    margin-bottom: 15px;
}

.hc-content-text {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.hc-audience-list li {
    font-size: 16px;
    padding: 5px 0;
    border-bottom: 1px dotted #e9ecef;
    color: #343a40;
}


/* ================================================= */
/* 2. SIDEBAR STYLING (hc-sidebar-card)             */
/* ================================================= */

.hc-sidebar-card {
    border: none;
    transition: transform 0.3s ease;
}

.hc-sidebar-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* --- Registration CTA Card --- */
.hc-reg-card {
    border-top: 8px solid #dc3545 !important; /* Top border highlight */
}

.hc-reg-title {
    color: #dc3545;
}

.hc-reg-btn {
    font-weight: 700;
    transition: background-color 0.3s;
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.hc-reg-btn:hover {
    background-color: #a71d2a !important; /* Darker red on hover */
    border-color: #a71d2a !important;
}

/* --- Timeline Card --- */
.hc-timeline-header {
    background-color: #0d6efd !important;
    padding: 15px;
    border-radius: 5px 5px 0 0 !important;
}

.hc-timeline-body {
    padding: 20px 25px;
}

.hc-timeline-item {
    position: relative;
    padding: 10px 0 10px 25px;
    margin-bottom: 5px;
    border-left: 2px dashed #e9ecef; /* Dashed line for timeline effect */
}

.hc-timeline-item:last-child {
    border-left: none;
}

.hc-time-dot {
    position: absolute;
    left: -6px;
    top: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hc-time-slot {
    color: #343a40;
    font-size: 15px;
}

/* ================================================= */
/* 3. RESPONSIVE ADJUSTMENTS (Media Queries)        */
/* ================================================= */

@media (max-width: 992px) {
    .hc-event-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .hc-event-title {
        font-size: 28px;
    }
    .hc-event-meta-bar {
        font-size: 14px;
        /* Meta elements stack vertically on mobile */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .hc-event-meta-bar span {
        margin-bottom: 5px;
        margin-right: 0 !important;
    }
    .hc-event-featured-img {
        max-height: 250px;
    }
}



/* ================================================= */
/* 1. EVENT DETAILS HERO SECTION (event-det-hero)   */
/* ================================================= */

.event-det-hero-section {
    background-color: #f1f3f5; /* Light background */
    padding-top: 80px;
    padding-bottom: 80px;
}

.event-det-main-info {
    background-color: #004a80; /* Deep blue background, similar to image_b2c665.jpg */
    color: #ffffff;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.event-det-main-info:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35) !important;
}

.event-det-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: #28a745; /* Green highlight */
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
}

.event-det-title {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

/* --- Meta Block --- */
.event-det-meta-block {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    margin-top: 20px;
}

.event-det-meta-item {
    font-size: 16px;
    margin-bottom: 8px;
    color: #e9ecef;
}

/* --- Registration Button --- */
.event-det-btn-register {
    display: inline-block;
    padding: 12px 30px;
    background-color: #dc3545; /* Red CTA */
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.4);
}

.event-det-btn-register:hover {
    background-color: #a71d2a;
    transform: translateY(-2px);
}

/* ================================================= */
/* 2. DETAILS, SCHEDULE & HOSTS (event-det-content) */
/* ================================================= */

.event-det-content-heading {
    font-size: 30px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 20px;
}

.event-det-text-body {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 15px;
}

/* --- Host/Speaker Info --- */
.event-det-host-info {
    border-left: 5px solid #0d6efd !important;
    background-color: #fcfdff;
}

.event-det-host-title {
    color: #004a80;
    font-weight: 700;
}

.event-det-speaker-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0d6efd;
}

/* --- Schedule/Timeline Card --- */
.event-det-schedule-card {
    background-color: #343a40; /* Darker background for schedule */
    border-radius: 12px;
    border: 1px solid #495057;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-det-schedule-card .event-det-content-heading {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.event-det-timeline-list {
    padding-left: 20px;
    position: relative;
}
.event-det-timeline-list::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.event-det-timeline-item {
    position: relative;
    padding-bottom: 20px;
    padding-left: 15px;
    color: #ffffff;
    transition: color 0.3s;
}

.event-det-timeline-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -7px;
    width: 15px;
    height: 15px;
    background-color: #ffc107; /* Warning yellow dot */
    border-radius: 50%;
    border: 3px solid #343a40;
    transition: background-color 0.3s;
}

/* Timeline Item Hover Effect */
.event-det-timeline-item:hover {
    color: #ffc107;
}
.event-det-timeline-item:hover::before {
    background-color: #ffffff;
}

.event-det-time {
    display: block;
    color: #ffc107; /* Yellow time */
    font-size: 14px;
    margin-bottom: 5px;
}


/* ================================================= */
/* 3. RESPONSIVE ADJUSTMENTS (Media Queries)        */
/* ================================================= */

@media (max-width: 992px) {
    .event-det-title {
        font-size: 32px;
    }
    .event-det-hero-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .event-det-title {
        font-size: 28px;
    }
    .event-det-main-info {
        padding: 30px !important;
    }
    .event-det-content-heading {
        font-size: 24px;
    }
}


/* ================================================= */
/* 1. ALTERNATE MESSAGE DETAILS SECTION (msg-alt-section) */
/* ================================================= */

.msg-alt-section-details {
    background-color: #f0f4f8; /* Soft background */
}

.msg-alt-main-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 15px !important;
    /* Stronger, hospital-style shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
}

/* --- Header Styling --- */
.msg-alt-tagline {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #0d6efd;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.msg-alt-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #343a40;
    line-height: 1.2;
}

.msg-alt-designation {
    font-size: 18px;
    color: #dc3545; /* Red secondary accent */
    font-style: italic;
}


/* --- Unique Photo and Quote Block --- */
.msg-alt-image-overlay-box {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    /* Glass-Morphism/Transparent Border Effect */
    border: 8px solid rgba(255, 255, 255, 0.7); 
    box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.3); /* Outer ring */
    transition: transform 0.3s ease;
}

.msg-alt-image-overlay-box:hover {
    transform: scale(1.05);
}

.msg-alt-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.msg-alt-quote-block {
    background-color: #f0f7ff; /* Very light blue background */
    border: 1px solid #cce5ff;
    border-left: 5px solid #0d6efd;
}

.msg-alt-quote-block .lead {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}


/* --- Full Content Styling --- */
.msg-alt-content-heading {
    font-size: 26px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.msg-alt-full-content {
    border-color: #e9ecef !important;
}

.msg-alt-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 18px;
}

/* ================================================= */
/* 2. RESPONSIVE ADJUSTMENTS (Media Queries)        */
/* ================================================= */

@media (max-width: 992px) {
    .msg-alt-main-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .msg-alt-main-title {
        font-size: 30px;
    }
    /* Stack image and quote on small screens */
    .msg-alt-image-overlay-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .msg-alt-main-title {
        font-size: 26px;
    }
    .msg-alt-main-card {
        padding: 25px !important;
    }
    .msg-alt-image-overlay-box {
        width: 140px;
        height: 140px;
    }
}


/* ================================================= */
/* 1. SPEAKER PROFILE HERO SECTION (spkr-det-hero)  */
/* ================================================= */

.spkr-det-hero-section {
    background-color: #f4f6f9; /* Off-white/light blue background */
}

/* --- Profile Card (Left) --- */
.spkr-det-profile-card {
    background-color: #ffffff;
    border-radius: 10px !important;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.spkr-det-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.spkr-det-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    /* Red/Blue ring effect */
    border: 5px solid #dc3545; 
    box-shadow: 0 0 0 8px rgba(13, 110, 253, 0.2); 
}

.spkr-det-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spkr-det-name {
    font-size: 28px;
    font-weight: 800;
    color: #004a80;
    margin-top: 15px;
    margin-bottom: 5px;
}

.spkr-det-title-main {
    font-size: 18px;
    color: #dc3545;
    font-weight: 600;
}

.spkr-contact-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.spkr-contact-list li {
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px dotted #e9ecef;
}

/* --- Content Wrap (Right) --- */
.spkr-det-content-wrap {
    background-color: #ffffff;
    border-left: 5px solid #0d6efd; /* Blue primary accent line */
}

.spkr-det-tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid #dc3545;
    border-radius: 4px;
    margin-bottom: 10px;
}

.spkr-det-content-heading {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
}

.spkr-det-bio-summary {
    border-color: #e9ecef !important;
}

.spkr-det-text-lead {
    font-size: 18px;
    font-weight: 500;
    color: #495057;
}

.spkr-det-sub-heading {
    font-size: 22px;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 15px;
}

.spkr-det-career-list li {
    font-size: 16px;
    padding: 5px 0;
    color: #343a40;
}

/* --- Expertise Tags --- */
.spkr-det-tags {
    margin-top: 10px;
}

.spkr-tag {
    display: inline-block;
    padding: 8px 15px;
    margin-right: 8px;
    margin-bottom: 8px;
    background-color: #e2e8f0;
    color: #004a80;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.spkr-tag:hover {
    background-color: #c9d6e4;
    cursor: default;
}

/* ================================================= */
/* 2. RESPONSIVE ADJUSTMENTS (Media Queries)        */
/* ================================================= */

@media (max-width: 992px) {
    .spkr-det-content-heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .spkr-det-hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .spkr-det-name {
        font-size: 24px;
    }
    .spkr-det-image-wrapper {
        width: 150px;
        height: 150px;
    }
    .spkr-det-content-wrap {
        padding: 25px !important;
    }
}

/* ================================================= */
/* 1. NEWS/BLOG DETAILS SECTION (news-det-section)  */
/* ================================================= */

.news-det-section {
    background-color: #f8f9fa; /* Clean, light background */
}

/* --- Header & Meta --- */
.news-det-category {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #dc3545;
    margin-bottom: 5px;
}

.news-det-title {
    font-size: 42px;
    font-weight: 800;
    color: #343a40;
    line-height: 1.25;
}

.news-det-meta-info {
    font-size: 15px;
    color: #6c757d;
}

/* --- Featured Image --- */
.news-det-featured-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* --- Full Content --- */
.news-det-full-content {
    padding-top: 15px;
}

.news-det-paragraph-lead {
    font-size: 19px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 25px;
}

.news-det-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.news-det-quote {
    font-style: italic;
    color: #343a40;
}

/* ================================================= */
/* 2. SIDEBAR STYLING (news-det-sidebar)            */
/* ================================================= */

.news-det-sidebar-widget {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-top: 5px solid #0d6efd; /* Blue accent top */
}

.news-det-widget-title {
    font-size: 22px;
    font-weight: 700;
    color: #0d6efd;
}

/* --- Recent Posts List --- */
.news-det-recent-link {
    font-size: 16px;
    color: #343a40;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.news-det-recent-link:hover {
    color: #dc3545; /* Red on hover */
}

/* --- Tags/Categories --- */
.news-det-tags-list {
    display: flex;
    flex-wrap: wrap;
}

.news-det-tag-pill {
    display: inline-block;
    padding: 7px 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    background-color: #e9ecef;
    color: #495057;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.news-det-tag-pill:hover {
    background-color: #ced4da;
    cursor: pointer;
}


/* ================================================= */
/* 3. RESPONSIVE ADJUSTMENTS (Media Queries)        */
/* ================================================= */

@media (max-width: 992px) {
    .news-det-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .news-det-title {
        font-size: 28px;
    }
    .news-det-header-meta {
        text-align: center;
    }
    .news-det-meta-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .news-det-meta-info span {
        margin-bottom: 5px;
    }
}



/* ================================================= */
/* 1. MEMBER DETAILS HERO SECTION (lm-alt-hero)     */
/* ================================================= */

.lm-alt-hero-area {
    background-color: #004a80; /* Deep Blue Background */
    background-image: linear-gradient(135deg, #004a80 0%, #0d6efd 100%); /* Gradient effect */
    padding: 60px 0 100px; /* Increased bottom padding to overlap content */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.lm-alt-main-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 5px;
}

.lm-alt-sub-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}


/* ================================================= */
/* 2. PROFILE CONTENT CARD (lm-alt-section)         */
/* ================================================= */

.lm-alt-section-profile {
    padding-top: 0; /* Adjust to pull card into hero section */
}

.lm-alt-main-content-card {
    background-color: #ffffff;
    border-radius: 12px !important;
    position: relative;
    /* Lift the card up and add a modern shadow */
    margin-top: -80px; 
    border: 1px solid #dee2e6;
}

/* --- Left Column: Photo Block --- */
.lm-alt-photo-block {
    padding: 30px;
}

.lm-alt-image-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    /* Prominent red border for unique look */
    border: 6px solid #dc3545; 
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0.1); 
    transition: transform 0.3s ease;
}

.lm-alt-image-wrapper:hover {
    transform: scale(1.05);
}

.lm-alt-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lm-alt-affiliation-main {
    font-size: 17px;
    margin-top: 15px;
}

.lm-alt-contact-list li {
    padding: 6px 0;
    font-size: 15px;
    color: #495057;
}

/* --- Right Column: Description Wrap --- */
.lm-alt-description-wrap {
    /* Separator line for aesthetic */
    border-left: 1px solid #e9ecef; 
}

.lm-alt-tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.lm-alt-content-heading {
    font-size: 32px;
    font-weight: 800;
    color: #343a40;
    margin-bottom: 25px;
    border-bottom: 2px solid #eef3f7;
    padding-bottom: 10px;
}

.lm-alt-text-lead {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.lm-alt-full-bio p {
    font-size: 16px;
    line-height: 1.75;
    color: #495057;
    margin-bottom: 20px;
}

.lm-alt-full-bio ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.lm-alt-sub-heading {
    font-size: 20px;
    font-weight: 700;
    color: #0d6efd;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* ================================================= */
/* 3. RESPONSIVE ADJUSTMENTS (Media Queries)        */
/* ================================================= */

@media (max-width: 992px) {
    .lm-alt-description-wrap {
        border-left: none; /* Remove vertical line on smaller screens */
        border-top: 1px solid #e9ecef; /* Add horizontal line instead */
        margin-top: 20px;
    }
    .lm-alt-main-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .lm-alt-main-title {
        font-size: 32px;
    }
    .lm-alt-image-wrapper {
        width: 180px;
        height: 180px;
    }
    .lm-alt-main-content-card {
        margin-top: -50px; 
    }
    .lm-alt-description-wrap {
        padding: 20px 0 !important;
    }
}


/* ================================================= */
/* 1. HERO SECTION (mv-det-hero)                    */
/* ================================================= */

.mv-det-hero-area {
    background-color: #eef4f8; /* Light blue-grey background */
    padding: 80px 0 60px;
    border-bottom: 5px solid #0d6efd; /* Strong primary color line */
}

.mv-det-main-title {
    font-size: 48px;
    font-weight: 900;
    color: #004a80; /* Deep blue text */
    margin-bottom: 5px;
}

.mv-det-sub-text {
    font-size: 18px;
    color: #495057;
}

.mv-det-divider {
    width: 80px;
    height: 3px;
    background-color: #dc3545; /* Red accent line */
    border-radius: 5px;
}


/* ================================================= */
/* 2. CONTENT CARD (mv-det-content)                 */
/* ================================================= */

.mv-det-content-section {
    padding-top: 50px;
    padding-bottom: 80px;
    background-color: #f8f9fa;
}

.mv-det-main-card {
    background-color: #ffffff;
    border-radius: 12px !important;
    border: 1px solid #dee2e6;
    /* Clean, defined shadow */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); 
}

.mv-det-icon {
    font-size: 50px;
    border: 3px solid;
    border-radius: 50%;
    padding: 15px;
    line-height: 1;
}

.mv-det-description-title {
    font-size: 32px;
    font-weight: 800;
    color: #0d6efd;
    text-align: center;
    margin-bottom: 40px;
}

/* --- Dynamic Text Styling --- */
.mv-det-text-block {
    /* Ensures user-added content maintains good readability */
    font-size: 16px;
    line-height: 1.8;
    color: #343a40;
}

.mv-det-paragraph-lead {
    font-size: 19px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 25px;
    border-left: 5px solid #dc3545; /* Red accent for the lead paragraph */
    padding-left: 15px;
}

.mv-det-text-block p,
.mv-det-text-block ul,
.mv-det-text-block ol {
    margin-bottom: 20px;
}

.mv-det-text-block ul,
.mv-det-text-block ol {
    padding-left: 30px;
}

/* ================================================= */
/* 3. RESPONSIVE ADJUSTMENTS (Media Queries)        */
/* ================================================= */

@media (max-width: 992px) {
    .mv-det-main-title {
        font-size: 40px;
    }
    .mv-det-description-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .mv-det-hero-area {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .mv-det-main-title {
        font-size: 32px;
    }
    .mv-det-main-card {
        padding: 25px !important;
    }
    .mv-det-description-title {
        font-size: 24px;
    }
}