* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-color: #4A90E2;
    --secondary-color: #F39C12;
    --accent-color: #E74C3C;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --font-bangla: 'Noto Sans Bengali', 'Hind Siliguri', 'Bangla', 'SolaimanLipi', Arial, sans-serif;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate3d(0, 40px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}

body {
    font-family: 'Noto Sans Bengali', 'Hind Siliguri', 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
    text-align: center;
}

/* Bangla Font Styling */
h1, h2, h3, h4, h5, h6,
.hero-title, .hero-subtitle,
.nav-link, .btn,
.section-header h2,
.about-text h3,
.program-card h3,
.footer-section h3,
.footer-section h4 {
    font-family: var(--font-bangla);
    font-weight: 600;
    line-height: 1.4;
}

p, li, .btn, .nav-link, .wc-card p, .program-card p {
    font-family: var(--font-bangla);
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.top-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.top-icon:hover {
    background: rgba(255,255,255,0.3);
}

.top-icon svg {
    width: 14px;
    height: 14px;
}

.banner-logo {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.banner-logo h1 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    line-height: 1.3;
}

.banner-logo p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
}

.top-banner-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.top-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.top-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.top-btn-orange {
    background: #f59e0b;
    color: #fff;
    border: 2px solid #f59e0b;
}

.top-btn-orange:hover {
    background: #d97706;
    border-color: #d97706;
    transform: translateY(-1px);
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu li a {
    display: block;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--primary-color);
    color: var(--white) !important;
}

.nav-menu li a.active::after {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Slideshow */
.slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 700px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.75) 0%, rgba(59, 130, 246, 0.5) 50%, rgba(148, 163, 184, 0.4) 100%);
    z-index: 1;
}

.slide-content {
    color: var(--white);
    padding: 2rem;
    max-width: 700px;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 2;
}

.slide-content-left {
    text-align: left;
    position: absolute;
    left: 5%;
    bottom: 12%;
    top: auto;
    transform: none;
    max-width: 550px;
}

.slide-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.25;
    font-family: 'Poppins', var(--font-bangla), sans-serif;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.slide-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.slide-cta-dark {
    background: #1e293b !important;
    border-color: #1e293b !important;
    color: #fff !important;
    padding: 14px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.slide-cta-dark:hover {
    background: #334155 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4) !important;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.25);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 15px 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background 0.3s ease;
    backdrop-filter: blur(5px);
}

.slide-btn:hover {
    background: rgba(255,255,255,0.5);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slide-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Page Header for inner pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357ABD 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 8s infinite ease-in-out;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0 60px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Nav overlay backdrop */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357ABD 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="400" r="80" fill="rgba(255,255,255,0.1)"/><circle cx="1100" cy="150" r="60" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    z-index: 2;
    text-align: center;
    cursor: pointer;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding: 5px 0;
    margin: 0 auto 10px;
}

.wheel {
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    animation: scroll 1.5s infinite;
}

.arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: scroll 1.5s infinite;
}

/* Hover Effects */
.btn {
    transition: all 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.about {
    background: var(--bg-light);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Decorative blurs */
.wc-blur {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.wc-blur-1 {
    top: -10%;
    right: -5%;
    background: rgba(59, 130, 246, 0.08);
}

.wc-blur-2 {
    bottom: -10%;
    left: -5%;
    background: rgba(99, 102, 241, 0.08);
}

/* Header */
.wc-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.wc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
    font-family: var(--font-bangla);
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    letter-spacing: 0.5px;
}

.wc-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    animation: wcPulse 2s ease-in-out infinite;
}

@keyframes wcPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.wc-title {
    font-family: var(--font-bangla);
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin: 0 0 12px;
}

.wc-title-highlight {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.wc-subtitle {
    font-family: var(--font-bangla);
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

.wc-divider {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 10px;
    margin: 20px auto 0;
    opacity: 0.8;
}

/* Cards Grid */
.wc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* Individual Card */
.wc-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px 36px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Bottom accent bar */
.wc-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: center;
}

.wc-card:hover .wc-card-accent {
    transform: scaleX(1);
}

.wc-card-blue .wc-card-accent {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.wc-card-emerald .wc-card-accent {
    background: linear-gradient(90deg, #10b981, #059669);
}

.wc-card-rose .wc-card-accent {
    background: linear-gradient(90deg, #f43f5e, #e11d48);
}

/* Background circle decoration */
.wc-card-circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.03;
    transition: all 0.7s ease;
    background: currentColor;
}

.wc-card:hover .wc-card-circle {
    transform: translate(-15px, 15px);
    opacity: 0.06;
}

.wc-card-blue .wc-card-circle { color: #3b82f6; }
.wc-card-emerald .wc-card-circle { color: #10b981; }
.wc-card-rose .wc-card-circle { color: #f43f5e; }

/* Icon wrapper */
.wc-icon-wrap {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.wc-card:hover .wc-icon-wrap {
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.wc-icon-blue {
    background: #eff6ff;
    color: #2563eb;
}

.wc-icon-emerald {
    background: #ecfdf5;
    color: #059669;
}

.wc-icon-rose {
    background: #fff1f2;
    color: #e11d48;
}

/* Card text */
.wc-card h3 {
    font-family: var(--font-bangla);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
    transition: color 0.3s;
}

.wc-card:hover h3 {
    color: #1d4ed8;
}

.wc-card p {
    font-family: var(--font-bangla);
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0 0 24px;
}

/* Card link */
.wc-card-link {
    font-family: var(--font-bangla);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease;
    margin-top: auto;
}

.wc-card:hover .wc-card-link {
    opacity: 1;
    transform: translateY(0);
}

.wc-card-blue .wc-card-link { color: #2563eb; }
.wc-card-emerald .wc-card-link { color: #059669; }
.wc-card-rose .wc-card-link { color: #e11d48; }

.wc-card-link span {
    transition: transform 0.2s;
}

.wc-card-link:hover span {
    transform: translateX(4px);
}

/* Bottom CTA */
.wc-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.wc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    color: #fff;
    font-family: var(--font-bangla);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
    transition: all 0.3s ease;
}

.wc-cta-btn:hover {
    background: #1e293b;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
    transform: translateY(-2px);
}

.wc-cta-btn svg {
    transition: transform 0.3s;
}

.wc-cta-btn:hover svg {
    transform: translateX(4px);
}

/* ===== Programs Page - Modern Redesign ===== */

/* Hero */
.prog-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 70px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    animation: pulse 8s infinite ease-in-out;
}

.prog-hero-badge {
    display: inline-block;
    font-family: var(--font-bangla);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 1px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.prog-hero h1 {
    font-family: var(--font-bangla);
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}

.prog-hero p {
    font-family: var(--font-bangla);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Programs Section */
.prog-section {
    background: #f8fafc;
    padding: 60px 0 70px;
}

.prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Program Card */
.prog-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 28px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.prog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Card top row: icon + age badge */
.prog-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.prog-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.prog-icon-orange { background: #fff7ed; }
.prog-icon-blue { background: #eff6ff; }
.prog-icon-purple { background: #f5f3ff; }

.prog-age-badge {
    font-family: var(--font-bangla);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
}

.prog-badge-orange { background: #fff7ed; color: #d97706; }
.prog-badge-blue { background: #eff6ff; color: #2563eb; }
.prog-badge-purple { background: #f5f3ff; color: #7c3aed; }

/* Card title */
.prog-card-title {
    font-family: var(--font-bangla);
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
}

/* Card description */
.prog-card-desc {
    font-family: var(--font-bangla);
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0 0 20px;
}

/* Feature list */
.prog-card-features {
    list-style: none;
    padding: 20px 0 0;
    margin: 0 0 24px;
    border-top: 1px solid #f1f5f9;
}

.prog-card-features li {
    font-family: var(--font-bangla);
    font-size: 0.88rem;
    color: #475569;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prog-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.prog-check-orange { background: #f59e0b; }
.prog-check-blue { background: #2563eb; }
.prog-check-purple { background: #7c3aed; }

/* Card button */
.prog-card-btn {
    display: block;
    text-align: center;
    font-family: var(--font-bangla);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.prog-card-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== CTA Banner ===== */
.prog-cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prog-cta-rainbow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #ef4444, #8b5cf6, #3b82f6, #10b981);
}

.prog-cta-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.prog-star {
    position: absolute;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.04);
}

.prog-star-1 { bottom: 10%; left: 5%; transform: rotate(-15deg); }
.prog-star-2 { top: 15%; right: 5%; transform: rotate(15deg); }

.prog-cta-banner h2 {
    font-family: var(--font-bangla);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.prog-cta-banner p {
    font-family: var(--font-bangla);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.prog-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.prog-cta-call,
.prog-cta-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-bangla);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prog-cta-call {
    background: #f59e0b;
    color: #fff;
}

.prog-cta-call:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.prog-cta-email {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.prog-cta-email:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-grid.gallery-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.gallery-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Blog Section */
.blog-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    display: block;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    padding: 0;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

.blog-card-body {
    padding: 1.5rem 2rem 2rem;
}

.blog-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: none;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.blog-card h3 {
    font-family: var(--font-bangla);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.blog-card p {
    font-family: var(--font-bangla);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.blog-read-more {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-bangla);
    transition: color 0.3s ease, transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Poppins', 'Hind Siliguri', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Phone Number Styling */
.phone-number {
    font-family: 'Poppins', 'Hind Siliguri', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.1em;
}

.footer-link {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

/* Apply phone number style to all phone number links */
a[href^="tel:"], .contact-phone {
    font-family: 'Poppins', 'Hind Siliguri', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.1em;
    text-decoration: none;
    color: inherit;
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: #BDC3C7;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #BDC3C7;
}

/* Login Button */
.login-btn {
    position: absolute;
    right: 0;
    padding: 8px 18px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.login-btn:hover,
.login-btn.active {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* Auth Section */
.auth-section {
    padding: 50px 0 60px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf8 50%, #f8fafc 100%);
    min-height: 70vh;
    position: relative;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.auth-container {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid rgba(226,232,240,0.6);
}

.auth-tabs {
    display: flex;
    border-bottom: none;
    background: #f8fafc;
    padding: 6px;
    gap: 4px;
}

.auth-tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-family: var(--font-bangla);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #94a3b8;
    border-radius: 14px;
}

.auth-tab.active {
    background: var(--white);
    color: #1e40af;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-bottom: none;
}

.auth-tab:hover:not(.active) {
    color: #64748b;
    background: rgba(255,255,255,0.5);
}

.auth-form {
    padding: 2rem 2.2rem;
}

.auth-form.hidden {
    display: none;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.auth-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(30,64,175,0.2);
}

.success-icon {
    background: linear-gradient(135deg, #059669, #10b981) !important;
    box-shadow: 0 4px 12px rgba(5,150,105,0.2) !important;
}

.auth-header h2 {
    font-family: var(--font-bangla);
    color: #1e293b;
    font-size: 1.4rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.auth-header p {
    color: #94a3b8;
    font-family: var(--font-bangla);
    font-size: 0.88rem;
}

.auth-form .form-group {
    margin-bottom: 1.1rem;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-bangla);
    font-weight: 600;
    color: #334155;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
}

.auth-form .form-group input,
.auth-form .form-group select,
.auth-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-bangla);
    font-size: 0.92rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: #1e293b;
}

.auth-form .form-group input::placeholder,
.auth-form .form-group textarea::placeholder {
    color: #cbd5e1;
}

.auth-form .form-group input:focus,
.auth-form .form-group select:focus,
.auth-form .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-fieldset {
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #fafbfc;
}

.form-fieldset legend {
    font-family: var(--font-bangla);
    font-weight: 700;
    color: #1e40af;
    padding: 0 10px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-align: center;
    display: block;
    background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
    color: #fff !important;
    border-radius: 14px !important;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(30,64,175,0.25);
}

.auth-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30,64,175,0.35);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-family: var(--font-bangla);
    color: #94a3b8;
    font-size: 0.88rem;
}

.auth-footer a,
.switch-tab {
    color: #1e40af;
    text-decoration: none;
    font-weight: 700;
}

.auth-footer a:hover,
.switch-tab:hover {
    text-decoration: underline;
    color: #3b82f6;
}

.success-details {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    padding: 0.4rem 0;
    font-family: var(--font-bangla);
    color: var(--text-dark);
}

.detail-row strong {
    color: var(--primary-color);
}

/* ===== Slide Badge & Highlight ===== */
.slide-badge {
    display: inline-block;
    font-family: var(--font-bangla);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.slide-highlight {
    color: #fbbf24;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.slide-cta:hover {
    background: #d97706 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4) !important;
}

/* ===== Notice Banner Strip ===== */
.notice-strip {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 60%, #2563eb 100%);
    border-bottom: none;
    padding: 0;
    position: relative;
    z-index: 10;
}

.notice-strip.hidden {
    display: none;
}

.notice-strip-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    max-width: 100%;
}

.notice-strip-badge {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.notice-strip-text {
    font-family: var(--font-bangla);
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.notice-strip-text span.notice-marquee {
    display: inline-block;
    animation: noticeScroll 30s linear infinite;
    padding-left: 100%;
}

@keyframes noticeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.notice-strip-date {
    font-family: var(--font-bangla);
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    flex-shrink: 0;
}

.notice-expand-hint {
    color: #fbbf24;
    font-size: 0.82rem;
    cursor: pointer;
    font-weight: 600;
}

.notice-strip-full {
    padding: 12px 20px 16px;
    font-family: var(--font-bangla);
    font-size: 0.92rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    background: rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.notice-strip-full.hidden {
    display: none;
}

/* ===== Footer V2 - Dark Modern ===== */
.footer-v2 {
    background: #0f172a;
    color: #cbd5e1;
    position: relative;
    padding: 50px 0 0;
}

.footer-v2-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #ef4444, #f59e0b, #10b981, #8b5cf6);
}

.footer-v2-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-v2-col h3 {
    font-family: var(--font-bangla);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.footer-v2-underline {
    width: 50px;
    height: 3px;
    background: #ef4444;
    border-radius: 2px;
    margin-bottom: 20px;
}

.footer-v2-col h4 {
    font-family: var(--font-bangla);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.footer-v2-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-v2-col ul li {
    margin-bottom: 8px;
}

.footer-v2-col ul li a {
    font-family: var(--font-bangla);
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-v2-col ul li a:hover {
    color: #fff;
}

.footer-v2-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-family: var(--font-bangla);
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-v2-item svg {
    flex-shrink: 0;
    color: #64748b;
    margin-top: 2px;
}

.footer-v2-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-v2-item a:hover {
    color: #fff;
}

.footer-v2-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-v2-bottom p {
    font-family: var(--font-bangla);
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-overlay.hidden {
    display: none;
}

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #e0e0e0;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    font-family: var(--font-bangla);
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Error Banner */
.error-banner {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-bangla);
    color: #856404;
}

.error-banner.hidden {
    display: none;
}

/* Dashboard */
.dashboard-section {
    padding: 40px 0 80px;
    background: #f1f5f9;
    min-height: 80vh;
}

.dashboard-header {
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.dashboard-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.dashboard-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 0.82rem;
    transition: all 0.2s;
}

.dashboard-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #1e293b;
    font-weight: 700;
}

.dashboard-header p {
    font-family: var(--font-bangla);
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.stat-card.stat-blue::before { background: linear-gradient(90deg, #1e40af, #3b82f6); }
.stat-card.stat-green::before { background: linear-gradient(90deg, #059669, #34d399); }
.stat-card.stat-orange::before { background: linear-gradient(90deg, #d97706, #fbbf24); }
.stat-card.stat-purple::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }

.stat-card.stat-blue .stat-icon { color: #1e40af; }
.stat-card.stat-green .stat-icon { color: #059669; }
.stat-card.stat-orange .stat-icon { color: #d97706; }
.stat-card.stat-purple .stat-icon { color: #7c3aed; }

.stat-card.stat-blue .stat-number { color: #1e40af; }
.stat-card.stat-green .stat-number { color: #059669; }
.stat-card.stat-orange .stat-number { color: #d97706; }
.stat-card.stat-purple .stat-number { color: #7c3aed; }

.stat-icon {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    opacity: 0.85;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-bangla);
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 6px;
    min-width: 24px;
    height: 24px;
    font-family: 'Poppins', sans-serif;
}

.class-badge {
    display: inline-block;
    background: #eff6ff;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-bangla);
    border: 1px solid #dbeafe;
}

.text-muted {
    color: var(--text-light);
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
}

/* Parent Info Grid */
.parent-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.parent-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.parent-info-item.full-width {
    grid-column: 1 / -1;
}

.info-label {
    font-family: var(--font-bangla);
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    font-family: var(--font-bangla);
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Table Footer */
.table-footer {
    padding: 0.8rem 0 0;
    text-align: right;
    font-family: var(--font-bangla);
    color: var(--text-light);
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    margin-top: 0.5rem;
}

.action-cell {
    white-space: nowrap;
}

/* Modal Enhancements */
.modal-student-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.modal-avatar {
    font-size: 3rem;
}

.modal-student-name {
    font-family: var(--font-bangla);
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.modal-meta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-family: var(--font-bangla);
    color: var(--text-light);
    font-size: 0.9rem;
}

.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: right;
}

.dashboard-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.card-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: #fafbfc;
}

.card-header h3 {
    font-family: var(--font-bangla);
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.card-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-input {
    padding: 9px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: var(--font-bangla);
    font-size: 0.85rem;
    width: 220px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.filter-select {
    padding: 9px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: var(--font-bangla);
    font-size: 0.85rem;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #3b82f6;
}

.btn-sm {
    padding: 8px 16px !important;
    font-size: 0.82rem !important;
    border-radius: 10px !important;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.card-body {
    padding: 1.5rem;
}

.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-bangla);
}

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.88rem;
}

.data-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.data-table td a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
}

.data-table tr:hover {
    background: #f8fafc;
}

.btn-action {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.78rem;
    font-family: var(--font-bangla);
    margin: 2px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn-view {
    background: #eff6ff;
    color: #1e40af;
}

.btn-delete {
    background: #fef2f2;
    color: #dc2626;
}

.no-data {
    text-align: center;
    color: var(--text-light);
    font-family: var(--font-bangla);
    padding: 2rem;
}

/* Profile Card */
.profile-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.profile-avatar {
    font-size: 3rem;
    flex-shrink: 0;
}

.profile-info h4 {
    font-family: var(--font-bangla);
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.profile-details span {
    font-family: var(--font-bangla);
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 650px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-header h3 {
    font-family: var(--font-bangla);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.modal-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modal-section h4 {
    font-family: var(--font-bangla);
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* === TOP BANNER === */
    .top-banner {
        padding: 10px 0;
        z-index: 99;
    }

    .navbar {
        z-index: 9999;
    }

    .top-banner-inner {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .top-banner-left {
        display: none !important;
    }

    .top-banner-right {
        gap: 6px;
    }

    .top-btn {
        padding: 5px 14px;
        font-size: 0.65rem;
    }

    .banner-logo h1 {
        font-size: 1.15rem;
    }

    .banner-logo p {
        font-size: 0.65rem;
    }

    /* === NAVBAR === */
    .navbar {
        padding: 10px 0;
    }

    .nav-wrapper {
        justify-content: flex-start;
        position: relative;
        padding: 0 4px;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 0 0 2rem;
        padding-top: 10px;
        transition: 0.35s ease;
        box-shadow: 5px 0 20px rgba(0,0,0,0.15);
        z-index: 10000;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li a {
        padding: 14px 28px;
        text-align: left;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.9rem;
    }

    /* === SLIDESHOW === */
    .slideshow-container {
        height: 350px;
    }

    .slide-content-left {
        left: 5%;
        right: 5%;
        max-width: 90%;
        bottom: 15%;
    }

    .slide-content h2 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .slide-content p {
        font-size: 0.8rem;
        display: none;
    }

    .slide-buttons {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }

    .slide-btn {
        padding: 8px 10px;
        font-size: 0.95rem;
    }

    .slide-cta,
    .slide-cta-dark {
        padding: 8px 16px !important;
        font-size: 0.78rem !important;
    }

    .slide-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .prev-btn, .next-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .slide-dots {
        bottom: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* === NOTICE STRIP === */
    .notice-strip {
        overflow: hidden;
        width: 100%;
    }

    .notice-strip-inner {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 10px 16px;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
        align-items: center;
    }

    .notice-strip-badge {
        flex-shrink: 0;
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .notice-strip-text {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        font-size: 0.78rem;
        box-sizing: border-box;
    }

    .notice-strip-text span.notice-marquee {
        white-space: nowrap;
        display: inline-block;
    }

    .notice-strip-date {
        display: none;
    }

    .notice-strip-full {
        padding: 10px 16px;
        font-size: 0.82rem;
        word-wrap: break-word;
        white-space: normal;
    }

    /* === SECTIONS === */
    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.85rem;
    }

    /* === WHY CHOOSE === */
    .why-choose-section {
        padding: 40px 0 30px;
    }

    .wc-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wc-title {
        font-size: 1.6rem;
    }

    .wc-subtitle {
        font-size: 0.85rem;
    }

    .wc-card {
        padding: 24px 20px 22px;
    }

    .wc-cta-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    /* === PROGRAMS === */
    .prog-grid,
    .gallery-grid,
    .gallery-grid.gallery-two {
        grid-template-columns: 1fr;
    }

    .prog-hero {
        padding: 40px 0 50px;
    }

    .prog-hero h1 {
        font-size: 1.6rem;
    }

    .prog-hero p {
        font-size: 0.85rem;
    }

    .prog-section {
        padding: 30px 0 40px;
    }

    .prog-card {
        padding: 24px 20px 22px;
    }

    .prog-card-title {
        font-size: 1.2rem;
    }

    .prog-cta-banner {
        padding: 30px 0;
    }

    .prog-cta-banner h2 {
        font-size: 1.3rem;
    }

    .prog-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .prog-cta-call,
    .prog-cta-email {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* === BLOG === */
    .blog-section {
        padding: 40px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-card {
        padding: 0;
        border-radius: 12px;
    }

    .blog-card-img {
        height: 140px;
        border-radius: 12px 12px 0 0;
    }

    .blog-card-body {
        padding: 1rem 1.2rem 1.2rem;
    }

    .blog-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        display: none;
    }

    .blog-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .blog-card p {
        font-size: 0.82rem;
        line-height: 1.6;
        margin-bottom: 0.6rem;
    }

    .blog-date {
        font-size: 0.75rem;
    }

    /* === CONTACT === */
    .contact-section {
        padding: 40px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info p,
    .contact-info a {
        font-size: 0.85rem;
    }

    /* === GALLERY === */
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-item img {
        border-radius: 10px;
    }

    /* === ABOUT PAGE === */
    .about-section,
    .mission-section,
    .history-section {
        padding: 40px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .about-text {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .about-text h2 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    /* === GENERAL SECTIONS === */
    .container {
        padding: 0 16px;
    }

    section {
        overflow-x: hidden;
    }

    /* === FOOTER === */
    .footer-v2 {
        padding: 30px 0 0;
    }

    .footer-v2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 20px;
    }

    .footer-v2-col h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .footer-v2-col h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .footer-v2-underline {
        margin-bottom: 12px;
    }

    .footer-v2-col ul li {
        margin-bottom: 4px;
    }

    .footer-v2-col ul li a {
        font-size: 0.82rem;
    }

    .footer-v2-item {
        font-size: 0.82rem;
        gap: 8px;
        margin-bottom: 8px;
    }

    .footer-v2-item svg {
        width: 16px;
        height: 16px;
    }

    .footer-v2-bottom {
        padding: 14px 0;
    }

    .footer-v2-bottom p {
        font-size: 0.72rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .footer-section ul li {
        display: block;
    }

    .footer-v2-col {
        text-align: center;
    }

    .footer-v2-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .footer-v2-item {
        justify-content: center;
    }

    /* === FORMS === */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* === AUTH / LOGIN === */
    .auth-container {
        margin: 12px auto;
        border-radius: 16px;
    }

    .auth-tabs {
        padding: 4px;
    }

    .auth-tab {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .auth-form {
        padding: 1.2rem 1.2rem;
    }

    .auth-header {
        margin-bottom: 1rem;
    }

    .auth-icon {
        width: 44px;
        height: 44px;
        margin: 0 auto 8px;
        border-radius: 12px;
        font-size: 1.3rem;
    }

    .auth-header h2 {
        font-size: 1.15rem;
        margin-bottom: 2px;
    }

    .auth-header p {
        font-size: 0.78rem;
    }

    .auth-form .form-group {
        margin-bottom: 0.7rem;
    }

    .auth-form .form-group label {
        margin-bottom: 3px;
        font-size: 0.78rem;
    }

    .auth-form .form-group input,
    .auth-form .form-group select,
    .auth-form .form-group textarea {
        padding: 9px 12px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .auth-form .form-fieldset {
        padding: 12px;
        margin-bottom: 0.8rem;
    }

    .auth-form .form-fieldset legend {
        font-size: 0.8rem;
        padding: 0 6px;
    }

    .auth-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .btn-submit {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .auth-footer {
        margin-top: 0.8rem;
        font-size: 0.8rem;
    }

    /* === DASHBOARD === */
    .dashboard-section {
        padding: 24px 0 60px;
    }

    .dashboard-header {
        padding: 1.2rem 1rem;
    }

    .dashboard-header h2 {
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 1.2rem 1rem;
    }

    .stat-icon svg {
        width: 26px;
        height: 26px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .dashboard-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .dashboard-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .card-actions {
        width: 100%;
        flex-direction: column;
    }

    .search-input {
        width: 100%;
    }

    .filter-select {
        width: 100%;
    }

    .card-body {
        padding: 1rem;
    }

    .data-table th,
    .data-table td {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .modal-detail-grid {
        grid-template-columns: 1fr;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .parent-info-grid {
        grid-template-columns: 1fr;
    }

    .modal-student-header {
        flex-direction: column;
        text-align: center;
    }

    /* === NOTICE PAGE === */
    .notice-page-card {
        padding: 20px;
    }

    .notice-page-card h3 {
        font-size: 1.1rem;
    }

    /* === STAFF SECTION (About page) === */
    #teachersGrid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }

    #principalCard {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .banner-logo h1 {
        font-size: 0.95rem;
    }

    .banner-logo p {
        font-size: 0.6rem;
    }

    .top-banner-right {
        gap: 4px;
    }

    .top-btn {
        padding: 4px 10px;
        font-size: 0.6rem;
    }

    .slideshow-container {
        height: 280px;
    }

    .slide-content h2 {
        font-size: 1rem;
    }

    .slide-cta,
    .slide-cta-dark {
        padding: 7px 14px !important;
        font-size: 0.72rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .stat-card {
        padding: 0.8rem 0.6rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-icon svg {
        width: 22px;
        height: 22px;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    .wc-title {
        font-size: 1.3rem;
    }

    #teachersGrid {
        grid-template-columns: 1fr !important;
    }

    .dashboard-header h2 {
        font-size: 1.1rem;
    }

    .btn-sm {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }

    .data-table {
        font-size: 0.72rem;
    }

    .data-table th,
    .data-table td {
        padding: 6px 8px;
        font-size: 0.72rem;
    }
}
