/*
 * Nurani Edu Board - Professional Redesign
 * Modern, clean, trustworthy design for Islamic education board
 */

/* ========== FONTS ========== */
@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Sans+Bengali:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap");

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #0f4c81;
    --primary-dark: #0a3560;
    --primary-light: #1a6bb5;
    --accent: #c9363e;
    --accent-dark: #a12830;
    --gold: #d4a853;
    --gold-light: #f0d68a;
    --topbar-bg: #0a3560;
    --menu-bg: #0f4c81;
    --body-bg: #f4f6f9;
    --card-bg: #ffffff;
    --text-dark: #1a1a2e;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --border-light: #f0f1f3;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 4px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px -10px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --font-bn: "Noto Sans Bengali", "Hind Siliguri", sans-serif;
    --font-en: "Inter", sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-en);
    background: var(--body-bg);
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}
a:hover { color: var(--accent); text-decoration: none; }

img { max-width: 100%; height: auto; }
.container { max-width: 1200px; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }
::selection { background: var(--primary); color: white; }

.bn, .bangla, [lang="bn"] { font-family: var(--font-bn); }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ========== 1. TOPBAR ========== */
#topbar {
    background: var(--topbar-bg);
    padding: 7px 0;
    color: #fff;
    font-size: 13px;
    position: relative;
    z-index: 101;
}
#topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
}
#topbar a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
}
#topbar a:hover { color: var(--gold-light); }
#topbar i { margin-right: 5px; font-size: 11px; }
#topbar .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-sm);
    margin: 0 2px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}
#topbar .social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-1px);
}
#topbar .btn-login {
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    padding: 4px 14px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-bn);
    background: rgba(255,255,255,0.08);
}
#topbar .btn-login:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
}

/* ========== 2. SITE HEADER ========== */
#site-header {
    background: #fff;
    padding: 16px 0;
    border-bottom: none;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
.header-logo img {
    max-height: 90px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: var(--transition);
}
.header-logo img:hover { transform: scale(1.03); }
.header-title { text-align: center; }
.header-title .en-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-en);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.header-title .bn-title {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-bn);
    line-height: 1.3;
    margin-top: 2px;
}
.header-title .arabic-text {
    display: block;
    font-size: 17px;
    color: var(--gold);
    font-family: "Noto Naskh Arabic", serif;
    margin: 3px 0;
}
.header-title .subtitle {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-bn);
}

/* ========== 3. NAVIGATION ========== */
#main-nav {
    background: var(--menu-bg);
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(15, 76, 129, 0.3);
}
#main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
}
#main-nav .navbar { padding: 0; }
#main-nav .navbar-nav { width: 100%; }
#main-nav .navbar-nav .nav-link {
    padding: 13px 14px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-bn);
    color: rgba(255,255,255,0.95) !important;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.2px;
}
#main-nav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}
#main-nav .navbar-nav .nav-link:hover::after,
#main-nav .navbar-nav .nav-item.active .nav-link::after {
    width: 70%;
}
#main-nav .navbar-nav .nav-link:hover,
#main-nav .navbar-nav .nav-item.active .nav-link,
#main-nav .navbar-nav .nav-item:hover > .nav-link {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
}
#main-nav .navbar-nav .nav-link i {
    font-size: 11px;
    margin-left: 3px;
}

/* Dropdown */
#main-nav .dropdown-menu {
    border-radius: var(--radius-md);
    border: none;
    margin-top: 0;
    padding: 8px 0;
    min-width: 260px;
    box-shadow: var(--shadow-xl);
    display: none;
    background: #fff;
    animation: fadeInUp 0.2s ease;
}
#main-nav .dropdown-item {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-bn);
    padding: 10px 18px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
#main-nav .dropdown-item:last-child { border-bottom: none; }
#main-nav .dropdown-item:hover,
#main-nav .dropdown-item:focus {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff !important;
    padding-left: 22px;
}
#main-nav .dropdown-item:active {
    background: var(--primary-dark);
    color: #fff;
}
#main-nav .dropdown-item i {
    margin-right: 8px;
    font-size: 10px;
    transition: var(--transition);
}
#main-nav .dropdown-item:hover i { transform: translateX(3px); }

/* Toggler */
#main-nav .navbar-toggler {
    border-color: rgba(255,255,255,0.4);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}
#main-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Sticky */
#main-nav.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.35s ease;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

/* Fix: dropdown toggle caret conflict with underline pseudo-element */
#main-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    position: static;
    width: auto;
    height: auto;
    background: none;
    transform: none;
    border-radius: 0;
}

/* ========== 4. NOTICE TICKER ========== */
#notice-ticker {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    overflow: hidden;
}
#notice-ticker .d-flex { align-items: stretch; }
.ticker-label {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px 10px 16px;
    font-weight: 700;
    font-family: var(--font-bn);
    font-size: 14px;
    white-space: nowrap;
    clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 88% 100%, 0% 100%);
    display: flex;
    align-items: center;
    position: relative;
}
.ticker-label i { animation: pulse 2s ease infinite; }
.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    padding: 10px 12px;
    display: flex;
    align-items: center;
}
.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 35s linear infinite;
    font-family: var(--font-bn);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}
.ticker-content:hover { animation-play-state: paused; }
.ticker-content a {
    color: var(--primary-dark);
    text-decoration: none;
    margin-right: 40px;
}
.ticker-content a:hover { color: var(--accent); }
@keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ========== 5. HERO / SLIDER ========== */
.hero-section { padding: 20px 0; }
.main-slider {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.main-slider .carousel-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.carousel-slide-bg {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-slide-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 50%, var(--primary) 100%);
}
.slider-text-overlay {
    color: #fff;
    text-align: center;
    padding: 30px;
}
.slider-text-overlay h2 {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-bn);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.slider-text-overlay p {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 8px;
    font-family: var(--font-bn);
}
.carousel-caption-custom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    padding: 20px 20px 14px;
    font-size: 14px;
    font-family: var(--font-bn);
}
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    opacity: 0;
    transition: var(--transition);
}
.main-slider:hover .carousel-control-prev,
.main-slider:hover .carousel-control-next {
    opacity: 0.9;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(0,0,0,0.4);
    border-radius: 50%;
    background-size: 50%;
    padding: 8px;
}
.carousel-indicators { margin-bottom: 12px; }
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    transition: var(--transition);
}
.carousel-indicators button.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

/* ========== 6. SECTION CARDS ========== */
.section-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.section-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.section-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 12px 18px;
    font-family: var(--font-bn);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.section-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
}
.section-card-header a {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    padding: 3px 10px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    transition: var(--transition);
}
.section-card-header a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.section-card-header i { margin-right: 6px; }
.section-card-body { padding: 14px; }

/* ========== 7. NOTICE LIST ITEMS ========== */
.notice-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    border-radius: var(--radius-sm);
    margin: 2px 0;
}
.notice-list-item:last-child { border-bottom: 0; }
.notice-list-item:hover {
    background: #f0f7ff;
    transform: translateX(3px);
}
.notice-date-badge {
    min-width: 52px;
    text-align: center;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.notice-date-badge .day {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    padding: 6px 0 2px;
    font-family: var(--font-en);
}
.notice-date-badge .month {
    display: block;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.notice-text a {
    color: var(--text-dark);
    font-family: var(--font-bn);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    display: block;
}
.notice-text a:hover { color: var(--accent); }
.notice-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 3px;
}

/* ========== 8. STAT CARDS ========== */
.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 15px 20px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    position: relative;
}
.stat-icon::after {
    display: none;
}
.stat-icon.teal { background: linear-gradient(135deg, #10b981, #059669); }
.stat-icon.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.stat-icon.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.stat-icon.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.stat-icon.purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
.stat-icon.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.stat-icon.navy { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.stat-icon.dark-navy { background: linear-gradient(135deg, #1e3a5f, #0c2340); }
.stat-info { flex: 1; }
.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-bn);
    line-height: 1.2;
}
.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-bn);
    margin-top: 2px;
}

/* ========== 9. ABOUT SECTION ========== */
.about-section {
    padding: 40px 0;
    background: var(--body-bg);
}
.section-heading {
    font-family: var(--font-bn);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    white-space: nowrap;
}
.section-heading::after {
    content: '';
    display: inline-block;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    position: relative;
    vertical-align: middle;
    width: 100%;
    margin-left: 15px;
    flex-shrink: 1;
    border-radius: 0;
}
.section-heading::before {
    content: '';
    display: inline-block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary));
    position: relative;
    vertical-align: middle;
    width: 60px;
    margin-right: 15px;
    flex-shrink: 0;
    border-radius: 0;
}

/* hdr-primary — reference site heading style */
.hdr-primary {
    font-family: var(--font-bn);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    white-space: nowrap;
}
.hdr-primary span {
    position: relative;
    padding-right: 15px;
    flex-shrink: 0;
}
.hdr-primary::after {
    content: '';
    display: inline-block;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    width: 100%;
    flex-shrink: 1;
}
.hdr-primary.text-center {
    justify-content: center;
}
.hdr-primary.text-center span {
    padding-left: 15px;
}
.hdr-primary.text-center::before {
    content: '';
    display: inline-block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary));
    width: 80px;
    flex-shrink: 0;
}

/* Events overlay card */
.events-overlay-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    height: 180px;
}
.events-overlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.events-overlay-card:hover img {
    transform: scale(1.08);
}
.events-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,53,96,0.3) 0%, rgba(10,53,96,0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 15px;
    transition: background 0.3s ease;
}
.events-overlay-card:hover .events-overlay {
    background: linear-gradient(180deg, rgba(10,53,96,0.4) 0%, rgba(10,53,96,0.92) 100%);
}
.events-overlay i {
    font-size: 28px;
    margin-bottom: 8px;
    opacity: 0.8;
}
.events-overlay h6 {
    font-family: var(--font-bn);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

/* Stat subtitle */
.stat-subtitle {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-bn);
    margin-top: 2px;
    line-height: 1.3;
}

.about-tabs .nav-link {
    color: var(--text-dark);
    background: var(--card-bg);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-bn);
    padding: 14px 18px;
    margin-bottom: 6px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    border-left: 4px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.about-tabs .nav-link:hover,
.about-tabs .nav-link.active {
    color: var(--primary);
    border-left-color: var(--accent);
    background: #f0f7ff;
    border-color: var(--primary-light);
    border-left-color: var(--accent);
    box-shadow: 0 2px 8px rgba(15, 76, 129, 0.1);
    transform: translateX(3px);
}
.about-tabs .nav-link i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 16px;
    width: 20px;
    text-align: center;
}
.about-content-panel {
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-family: var(--font-bn);
    font-size: 14px;
    line-height: 1.9;
    border: 1px solid var(--border-light);
}
.read-more {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}
.read-more:hover {
    color: var(--accent);
    gap: 8px;
}

/* ========== 10. TESTIMONIALS ========== */
.testimonial-card {
    background: var(--card-bg);
    padding: 24px 22px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    border-top: 3px solid var(--gold);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-bottom: 15px;
    position: relative;
    font-family: var(--font-bn);
    transition: var(--transition);
}
.testimonial-card:hover {
    border-left-color: var(--accent);
    border-top-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.testimonial-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.8;
    font-weight: 500;
    margin-top: 8px;
}
.testimonial-card .t-name {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}
.testimonial-card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 36px;
    color: rgba(15, 76, 129, 0.08);
    line-height: 1;
}

/* ========== 11. EVENTS CARD ========== */
.events-card {
    background: var(--card-bg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: none;
    position: relative;
}
.events-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.events-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}
.events-card:hover img { transform: scale(1.05); }
.events-card .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15,76,129,0.3) 0%, rgba(10,53,96,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: var(--transition);
}
.events-card:hover .event-overlay {
    background: linear-gradient(180deg, rgba(15,76,129,0.4) 0%, rgba(10,53,96,0.92) 100%);
}
.events-card .event-body { padding: 12px 14px; position: relative; z-index: 1; }
.events-card h6 {
    font-family: var(--font-bn);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}
/* Events card with overlay text variant */
.events-card.has-overlay h6 {
    color: #fff;
}
.events-card.has-overlay .event-date {
    color: rgba(255,255,255,0.8);
}
.events-card .event-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ========== 11b. CERTIFICATE CARD ========== */
.certificate-card { overflow: hidden; }
.certificate-card img:hover { transform: scale(1.02); }
.certificate-card .section-card-body { padding: 16px; }

/* ========== 11c. VIDEO SECTION ========== */
.video-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #fff 0%, var(--body-bg) 100%);
}
.video-embed-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}
.video-embed-card iframe {
    border-radius: var(--radius-lg);
}
.btn-youtube-channel {
    display: inline-block;
    background: linear-gradient(135deg, #c4302b, #8b0000);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-family: var(--font-bn);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-youtube-channel:hover {
    background: linear-gradient(135deg, #8b0000, #5c0000);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 48, 43, 0.4);
}

/* ========== 12. PROMO BANNER ========== */
.promo-banner {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.promo-banner img { width: 100%; height: auto; }
.download-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    padding: 12px;
    font-weight: 700;
    font-family: var(--font-bn);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.download-btn:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--primary-dark));
    color: #fff;
}
.download-btn i { margin-right: 6px; }

/* ========== 13. CHAIRMAN CARD ========== */
.chairman-card {
    padding: 18px;
    font-family: var(--font-bn);
}
.chairman-card img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    float: right;
    margin-left: 14px;
    border: 3px solid var(--primary-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.chairman-card img:hover { transform: scale(1.05); }
.chairman-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.chairman-card p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-body);
    font-weight: 500;
}
.chairman-card .designation {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

/* ========== 14. FOOTER ========== */
#site-footer {
    background: linear-gradient(160deg, #0c2340 0%, #153655 50%, #1a4267 100%);
    color: rgba(255,255,255,0.9);
    margin-top: 50px;
    padding-top: 40px;
    font-family: var(--font-bn);
    position: relative;
}
#site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent), var(--primary-light), var(--gold));
}
#site-footer h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}
#site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
#site-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}
#site-footer a:hover {
    color: var(--gold-light);
    padding-left: 3px;
}
#site-footer ul { list-style: none; padding: 0; margin: 0; }
#site-footer ul li { padding: 4px 0; }
#site-footer ul li a { font-size: 14px; }
#site-footer ul li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
    font-size: 12px;
}
.footer-address-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.7;
}
.footer-address-item i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 13px;
}
.footer-contact-item {
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.footer-contact-item:last-child { border-bottom: 0; }
.footer-contact-item strong {
    color: var(--gold);
    margin-right: 0;
    font-weight: 600;
    min-width: 110px;
    flex-shrink: 0;
    display: inline-block;
}
.footer-contact-item span {
    color: rgba(255,255,255,0.85);
    direction: ltr;
    unicode-bidi: embed;
}
.footer-map iframe {
    border-radius: var(--radius-md);
    width: 100%;
    border: 2px solid rgba(255,255,255,0.1);
}
.footer-logo img { max-height: 60px; margin-bottom: 10px; }
.footer-about p { font-size: 13px; line-height: 1.7; opacity: 0.9; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    margin-right: 6px;
    font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}
.footer-copyright {
    text-align: center;
    padding: 14px;
    font-size: 13px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.15);
}
.footer-copyright a { color: var(--gold); }
.footer-copyright a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 14px;
}
.footer-social a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

/* ========== 15. INFO CARDS ROW ========== */
.info-cards-row { padding: 10px 0 20px; }

/* ========== 16. PAGE BANNER (Inner Pages) ========== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    padding: 30px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent, var(--gold));
}
.page-banner h2 {
    font-family: var(--font-bn);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}
.page-banner p {
    font-size: 14px;
    opacity: 0.8;
    margin: 6px 0 0;
    font-family: var(--font-bn);
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: #fff;
    padding: 10px 0;
    font-size: 13px;
    font-family: var(--font-bn);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.breadcrumb-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav .separator { margin: 0 8px; color: var(--text-light); }
.breadcrumb-nav .current { color: var(--accent); font-weight: 600; }

/* ========== 17. SCROLL TO TOP ========== */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(15, 76, 129, 0.4);
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}
#scroll-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 76, 129, 0.5);
}

/* ========== 18. GALLERY ========== */
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 18px;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-light);
}
.gallery-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 12px 14px 10px;
    font-size: 13px;
    font-family: var(--font-bn);
    transform: translateY(100%);
    transition: var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ========== 19. NOTICE PAGE ========== */
.notice-page-item {
    background: var(--card-bg);
    padding: 18px 20px;
    border-left: 4px solid var(--primary);
    margin-bottom: 14px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-bn);
    transition: var(--transition);
}
.notice-page-item:hover {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.notice-page-item h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.notice-page-item .date {
    font-size: 12px;
    color: var(--text-muted);
}
.notice-page-item .download-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    padding: 4px 12px;
    background: #f0f7ff;
    border-radius: 20px;
    transition: var(--transition);
}
.notice-page-item .download-link:hover {
    background: var(--primary);
    color: #fff;
}

/* ========== 20. CONTACT FORM ========== */
.contact-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}
.contact-form .form-control {
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-bn);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    transition: var(--transition);
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}
.contact-form .btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: 0;
    padding: 12px 32px;
    font-weight: 700;
    font-family: var(--font-bn);
    font-size: 15px;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.3);
}
.contact-form .btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 76, 129, 0.4);
}

/* ========== 21. TEACHER / STAFF CARDS ========== */
.teacher-card {
    background: var(--card-bg);
    text-align: center;
    padding: 24px 18px;
    box-shadow: var(--shadow-md);
    margin-bottom: 18px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}
.teacher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.teacher-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.teacher-card h6 {
    font-family: var(--font-bn);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}
.teacher-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-family: var(--font-bn);
}

/* ========== 22. DATA TABLE ========== */
.data-table {
    width: 100%;
    font-family: var(--font-bn);
    font-size: 14px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.data-table thead th {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 12px 14px;
    font-weight: 700;
    border: none;
    font-size: 13px;
}
.data-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light);
}
.data-table tbody tr { transition: var(--transition); }
.data-table tbody tr:hover { background: #f0f7ff; }
.data-table tbody tr:last-child td { border-bottom: none; }

/* ========== 23. BADGES ========== */
.badge-new {
    background: linear-gradient(135deg, var(--accent), #e74c3c);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
    animation: pulse 2s infinite;
    display: inline-block;
}
.highlight-text {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1px 6px;
    font-weight: 700;
    border-radius: 3px;
}

/* ========== 24. IMPORTANT NOTICE ========== */
.important-notice {
    background: var(--card-bg);
    border-left: 4px solid var(--accent);
    padding: 18px 20px;
    margin-bottom: 18px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-md);
}
.important-notice h6 {
    color: var(--primary-dark);
    font-weight: 700;
    font-family: var(--font-bn);
    font-size: 15px;
}

/* ========== 25. QUICK LINKS ========== */
.quick-links { padding: 10px 0; }
.quick-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-bn);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}
.quick-link-item:hover {
    background: #f0f7ff;
    color: var(--primary);
    transform: translateX(4px);
}
.quick-link-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Quick link counters */
.quick-link-counter {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 14px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--font-bn);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.quick-link-counter:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.quick-link-counter i { font-size: 24px; margin-bottom: 6px; }
.quick-link-counter span { display: block; font-size: 13px; font-weight: 600; }

/* ========== 26. STAT COUNTER SECTION ========== */
.stat-counter-section { padding: 20px 0; }
.stat-counter-block {
    text-align: center;
    padding: 24px 12px;
    color: #fff;
    font-family: var(--font-bn);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.stat-counter-block:hover { transform: translateY(-3px); }
.stat-counter-block:nth-child(1) { background: linear-gradient(135deg, #0f4c81, #1a6bb5); }
.stat-counter-block:nth-child(2) { background: linear-gradient(135deg, #0a3560, #0f4c81); }
.stat-counter-block:nth-child(3) { background: linear-gradient(135deg, #153655, #1a4267); }
.stat-counter-block:nth-child(4) { background: linear-gradient(135deg, #0c2340, #153655); }
.stat-counter-block:nth-child(5) { background: linear-gradient(135deg, #091a30, #0c2340); }
.stat-counter-block .counter-number {
    font-size: 30px;
    font-weight: 800;
    display: block;
}
.stat-counter-block .counter-label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

/* ========== 27. PAGINATION ========== */
.pagination .page-link {
    color: var(--primary);
    font-size: 14px;
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--border-color);
    margin: 0 2px;
    transition: var(--transition);
}
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(15, 76, 129, 0.3);
}
.pagination .page-link:hover {
    background: #f0f7ff;
    color: var(--primary);
    border-color: var(--primary-light);
}

/* ========== GENERIC PAGE ========== */
.generic-page-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-family: var(--font-bn);
    line-height: 2;
    border: 1px solid var(--border-light);
}
.generic-page-content h1,
.generic-page-content h2,
.generic-page-content h3,
.generic-page-content h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
}
.generic-page-content p { margin-bottom: 14px; }
.generic-page-content ul,
.generic-page-content ol {
    padding-left: 20px;
    margin-bottom: 14px;
}
.generic-page-content li { margin-bottom: 6px; }
.generic-page-content img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 12px 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
    .header-title .bn-title { font-size: 22px; }
    .header-title .en-title { font-size: 16px; }
}
@media (max-width: 991px) {
    #main-nav .dropdown-menu {
        background: rgba(255,255,255,0.95);
        box-shadow: none;
        border-radius: var(--radius-sm);
        margin: 4px 0;
    }
    #main-nav .dropdown-item { font-size: 13px; padding: 8px 16px; }
    .header-title .bn-title { font-size: 20px; }
    .header-title .en-title { font-size: 14px; }
    .header-logo img { max-height: 65px; }
    .header-inner { gap: 14px; }
    #main-nav .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        padding: 8px 0;
    }
    #main-nav .navbar-nav .nav-link {
        padding: 10px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    #main-nav .navbar-nav .nav-link::after { display: none; }
    .about-tabs { margin-bottom: 16px; }
}
@media (max-width: 767px) {
    .main-slider .carousel-item img { height: 220px; }
    .carousel-slide-bg { height: 220px; }
    .stat-card { margin-bottom: 10px; }
    .header-inner { flex-direction: column; gap: 8px; }
    .header-title .bn-title { font-size: 18px; }
    .header-title .en-title { font-size: 13px; }
    .header-title .arabic-text { font-size: 14px; }
    .section-heading { font-size: 18px; }
    .hdr-primary { font-size: 18px; }
    .events-overlay-card { height: 150px; }
    .events-overlay i { font-size: 22px; }
    .events-overlay h6 { font-size: 13px; }
    .page-banner h2 { font-size: 20px; }
    .page-banner { padding: 22px 0; }
    #site-footer { padding-top: 24px; margin-top: 30px; }
    .ticker-label { font-size: 13px; padding: 8px 18px 8px 12px; }
    .slider-text-overlay h2 { font-size: 22px; }
    .footer-copyright { font-size: 12px; }
    .about-section { padding: 24px 0; }
    .section-card { border-radius: var(--radius-md); }
    .contact-form { padding: 20px; }
    .generic-page-content { padding: 20px; }
    .hero-section { padding: 14px 0; }
}
@media (max-width: 575px) {
    #topbar { font-size: 11px; }
    #topbar .btn-login { font-size: 11px; padding: 3px 10px; }
    .stat-card { border-radius: var(--radius-md); padding: 10px 14px; }
    .stat-icon { width: 52px; height: 52px; font-size: 18px; }
    .stat-number { font-size: 17px; }
    .chairman-card img { width: 65px; height: 65px; }
    .teacher-card { padding: 20px 14px; }
    .notice-list-item { padding: 8px; gap: 8px; }
    .notice-date-badge { min-width: 44px; }
    .notice-date-badge .day { font-size: 17px; }
}

/* ========== PRINT ========== */
@media print {
    #topbar, #main-nav, #notice-ticker, #scroll-top, #site-footer { display: none !important; }
    body { background: #fff; }
    .section-card { box-shadow: none; border: 1px solid #ddd; }
    .page-banner { background: #f5f5f5 !important; color: #333 !important; }
}

/* ========== UTILITY ========== */
.bg-primary-custom { background: var(--primary); }
.bg-primary-light { background: var(--primary-light); }
.bg-accent { background: var(--accent); }
.text-primary-custom { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-bengali { font-family: var(--font-bn); }
.border-accent { border-color: var(--accent) !important; }
.shadow-sm-custom { box-shadow: var(--shadow-sm); }
.mb-section { margin-bottom: 30px; }
.py-section { padding: 30px 0; }

/* ========== CONTACT PAGE EXTRAS ========== */
.page-header {
    margin-bottom: 24px;
}
.page-header h2 {
    font-family: var(--font-bn);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}
.page-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 3px;
}
.contact-form-wrapper {
    margin-bottom: 30px;
}
.contact-form label {
    font-family: var(--font-bn);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 13px;
    display: block;
}
.sidebar-widget {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}
.sidebar-widget h4 {
    font-family: var(--font-bn);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}
.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 3px;
}
.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info ul li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: flex-start;
}
.contact-info ul li:last-child { border-bottom: none; }
.contact-info ul li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.contact-info ul li strong {
    display: block;
    font-family: var(--font-bn);
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-dark);
    margin-bottom: 2px;
}
.contact-info ul li p {
    margin: 0;
    font-size: 13px;
    color: var(--text-body);
    font-family: var(--font-bn);
}
.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-light);
}
.map-wrapper iframe {
    border-radius: var(--radius-md);
}

/* ========== ALERT STYLING ========== */
.alert-success {
    background: linear-gradient(135deg, #d1fae5, #ecfdf5);
    border: 1px solid #6ee7b7;
    color: #065f46;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-family: var(--font-bn);
    font-weight: 600;
    margin-bottom: 20px;
}

/* ========== BTN PRIMARY OVERRIDE ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    padding: 10px 28px;
    font-family: var(--font-bn);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 76, 129, 0.4);
}
