/* জেনারেল স্টাইল */
body { font-family: 'Hind Siliguri', sans-serif; margin: 0; background: #f4f4f4; color: #333; }

/* আধুনিক নেভিগেশন বার */
.modern-navbar {
    background: rgba(6, 78, 59, 0.95);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo { font-size: 20px; font-weight: bold; }

/* সাইডবার মেনু */
.side-menu {
    height: 100%; width: 0; position: fixed; z-index: 2000; top: 0; right: 0;
    background: #064e3b; overflow-x: hidden; transition: 0.5s; padding-top: 60px;
}

.side-menu a {
    padding: 15px 25px; text-decoration: none; font-size: 18px; color: white; 
    display: block; transition: 0.3s; border-bottom: 1px solid #10b981;
}

.side-menu a:hover { background: #059669; }
.close-btn { position: absolute; top: 10px; right: 25px; font-size: 36px; cursor: pointer; }

/* হামবার্গার আইকন */
.menu-trigger { cursor: pointer; display: flex; flex-direction: column; gap: 5px; }
.menu-trigger span { width: 25px; height: 3px; background: white; border-radius: 2px; }

/* জরুরি বাটন */
.emergency-link { background: #dc2626 !important; text-align: center; margin-top: 20px; font-weight: bold; }

/* স্লাইডার স্টাইল */
.slider-container { width: 100%; max-width: 800px; height: 350px; margin: 20px auto; overflow: hidden; position: relative; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.slider-image { width: 100%; height: 100%; object-fit: cover; display: none; animation: fade 1.5s; }
@keyframes fade { from {opacity: .4} to {opacity: 1} }

/* খবরের টিকার স্টাইল */
.news-ticker {
    width: 100%;
    max-width: 800px;
    margin: 10px auto;
    background: #064e3b;
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    border-radius: 8px;
    white-space: nowrap;
    position: relative;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%; /* স্ক্রিনের ডান পাশ থেকে শুরু করার জন্য */
    animation: ticker-animation 15s linear infinite;
}

@keyframes ticker-animation {
    0% { transform: translate(0, 0); }
    100% { transform: translateX(-100%); }
}

/* কার্ড ও গ্রিড স্টাইল */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; padding: 20px; }
.card { background: white; padding: 20px; text-align: center; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* বাটন স্টাইল */
button { background: #064e3b; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: bold; transition: 0.3s; }
button:hover { background: #047857; }

/* কন্টেইনার */
.container { padding: 20px; max-width: 800px; margin: auto; }