﻿:root {
    --wb-green: #006A4E; /* Official Govt Green */

    --wb-red: #D32F2F; /* Accent Red */

    --wb-cream: #FFF8E1; /* Light Background */

    --wb-gold: #FFC107;
    --wb-text: #212121;
    --font-header: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}



body {
    font-family: var(--font-body);
    color: var(--wb-text);
}



h1, h2, h3, h4, h5 {
    font-family: var(--font-header);
}



/* --- ANIMATIONS --- */

.hover-scale {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}



    .hover-scale:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,106,78,0.2) !important;
    }



.fade-in-up {
    animation: fadeInUp 1s ease-out;
}



@@keyframes fadeInUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }



    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- HEADMISTRESS SECTION ENHANCED CSS --- */
.hm-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.hm-premium-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    padding: 50px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hm-premium-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 60px rgba(0, 106, 78, 0.08); /* Soft green shadow */
    }

/* Giant Background Quote Watermark */
.hm-watermark {
    position: absolute;
    top: -40px;
    right: 30px;
    font-size: 18rem;
    font-family: var(--font-heading, serif);
    color: var(--wb-green, #059669);
    opacity: 0.04;
    line-height: 1;
    z-index: 0;
    user-select: none;
}

/* Image Wrapper & Decorative Ring */
.hm-img-container {
    position: relative;
    display: inline-block;
    padding: 10px;
}

.hm-img-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px dashed var(--wb-gold, #F59E0B);
    transform: translate(-10px, 10px);
    z-index: 0;
    transition: transform 0.5s ease;
}

.hm-premium-card:hover .hm-img-decor {
    transform: translate(0, 0) rotate(15deg);
}

.hm-custom-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 8px solid white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.hm-premium-card:hover .hm-custom-img {
    transform: scale(1.03);
}

/* Content Styling */
.hm-content {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.hm-subtitle {
    color: var(--wb-red, #DC2626);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.hm-title {
    color: var(--th-primary, #0F172A);
    font-size: 2.2rem;
    font-family: var(--font-heading, serif);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hm-divider {
    width: 60px;
    height: 4px;
    background: var(--wb-green, #059669);
    margin-bottom: 25px;
    border-radius: 2px;
}

.hm-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin-bottom: 30px;
    font-family: var(--font-heading, serif);
    font-weight: 500;
}

.hm-author-box {
    background: rgba(5, 150, 105, 0.05); /* Very light green */
    padding: 15px 25px;
    border-left: 4px solid var(--wb-green, #059669);
    border-radius: 0 10px 10px 0;
    display: inline-block;
}

.hm-author-name {
    color: var(--wb-green, #059669);
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading, serif);
    margin-bottom: 4px;
}

.hm-author-title {
    color: #64748B;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Adjustments */
@@media (max-width: 960px) {
    .hm-content {
        padding-left: 0;
        text-align: center;
        margin-top: 30px;
    }

    .hm-divider {
        margin: 0 auto 25px auto;
    }

    .hm-watermark {
        right: 50%;
        transform: translateX(50%);
        top: 0;
    }

    .hm-author-box {
        display: block;
        text-align: left;
    }
}

/* --- WELCOME HERO --- */

.school-hero {
    background: linear-gradient(rgba(0, 50, 30, 0.85), rgba(0, 106, 78, 0.7)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
}



    .school-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: linear-gradient(to top, white, transparent);
    }

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #E2E8F0;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.12);
    }

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotateY(180deg) scale(1.1);
}

.fc-blue .feature-icon-wrapper {
    background: #EFF6FF;
    color: var(--th-secondary);
}

.fc-green .feature-icon-wrapper {
    background: #ECFDF5;
    color: var(--th-green);
}

.fc-red .feature-icon-wrapper {
    background: #FEF2F2;
    color: var(--th-red);
}


/* --- STATS CARDS --- */

/* Section Background Pattern */
.infra-section {
    padding: 100px 0;
    background-color: white;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 30px 30px; /* Subtle dot pattern */
}

/* Card Base Style */
.infra-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    /* Top Border Animation Line */
    .infra-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--wb-green), var(--wb-gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    /* Hover Lift Effect */
    .infra-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 106, 78, 0.15);
    }

        .infra-card:hover::before {
            transform: scaleX(1);
        }

/* Icon Box Design */
.icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.5s ease;
    background: rgba(0, 106, 78, 0.06); /* Light Green Bg */
    color: var(--wb-green);
}

/* Icon Rotate Animation on Hover */
.infra-card:hover .icon-box {
    background: var(--wb-green);
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(0, 106, 78, 0.3);
}

/* Variant Colors for Icons */
.icon-box.red-theme {
    background: rgba(211, 47, 47, 0.06);
    color: var(--wb-red);
}

.infra-card:hover .icon-box.red-theme {
    background: var(--wb-red);
    color: white;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.icon-box.gold-theme {
    background: rgba(255, 193, 7, 0.1);
    color: #F59E0B;
}

.infra-card:hover .icon-box.gold-theme {
    background: #F59E0B;
    color: white;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.icon-box.blue-theme {
    background: rgba(15, 23, 42, 0.06);
    color: var(--th-primary);
}

.infra-card:hover .icon-box.blue-theme {
    background: var(--th-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}

/* --- ACADEMICS SECTION ENHANCED CSS --- */
.academics-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

/* Card Styling */
.stream-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

    .stream-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    }

/* Image & Zoom Effect */
.stream-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.stream-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.stream-card:hover .stream-img {
    transform: scale(1.1);
}

/* Floating Badges */
.stream-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-blue {
    background: rgba(30, 58, 138, 0.85);
    color: white;
}

.badge-green {
    background: rgba(5, 150, 105, 0.85);
    color: white;
}

.badge-red {
    background: rgba(220, 38, 38, 0.85);
    color: white;
}

/* Content Area & Animated Border */
.stream-content {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .stream-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 4px;
        transition: width 0.4s ease;
    }

.stream-card:hover .stream-content::before {
    width: 100%;
}

/* Specific Stream Colors */
.card-blue .stream-content::before {
    background: var(--th-secondary, #1E3A8A);
}

.card-green .stream-content::before {
    background: var(--th-green, #059669);
}

.card-red .stream-content::before {
    background: var(--th-red, #DC2626);
}

/* Text Typography */
.stream-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--th-primary, #0F172A);
    margin-bottom: 12px;
    font-family: var(--font-heading, 'Playfair Display', serif);
}

.stream-desc {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Animated Link/Button */
.stream-link {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: gap 0.3s ease;
    letter-spacing: 1px;
}

.stream-card:hover .stream-link {
    gap: 15px; /* Arrow pushes right on hover */
}

.link-blue {
    color: var(--th-secondary, #1E3A8A);
}

.link-green {
    color: var(--th-green, #059669);
}

.link-red {
    color: var(--th-red, #DC2626);
}

/* Number Typography */
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1;
    font-family: var(--font-header);
    /* Gradient Text */
    background: -webkit-linear-gradient(45deg, var(--wb-text), #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 8px;
}

.stat-desc {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.5;
}

.stat-card {
    background: white;
    border-radius: 12px;
    border-bottom: 4px solid var(--wb-green);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}



    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: var(--wb-cream);
        transition: 0.4s;
        z-index: 0;
    }



    .stat-card:hover::before {
        height: 100%;
    }



.stat-content {
    position: relative;
    z-index: 1;
}



.stat-icon {
    font-size: 3rem;
    color: var(--wb-green);
    margin-bottom: 15px;
}

.section-padding {
    padding: 90px 0;
}

.section-subtitle {
    color: var(--th-red);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .section-subtitle::before {
        content: "";
        width: 40px;
        height: 2px;
        background: var(--th-red);
    }

.section-title {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 40px;
}

/* About Image */
.about-image-wrapper {
    position: relative;
}

    .about-image-wrapper img {
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        width: 100%;
        border: 8px solid white;
        transition: 0.5s;
    }

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--th-green), #047857);
    color: white;
    border-radius: 50%;
    text-align: center;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(5, 150, 105, 0.4);
    border: 6px solid white;
    animation: floatUpDown 4s ease-in-out infinite;
}

/* Buttons */
.btn-green {
    background: linear-gradient(45deg, var(--th-green), #047857) !important;
    color: #fff !important;
    padding: 12px 35px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4) !important;
    letter-spacing: 1px;
}

    .btn-green:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(5, 150, 105, 0.6) !important;
    }

/* --- HEADMISTRESS SECTION --- */

.hm-card {
    background: #fff;
    border-left: 6px solid var(--wb-red);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 40px;
    position: relative;
}



.hm-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--wb-cream);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

    .gallery-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 106, 78, 0.15); /* Greenish shadow */
        border-color: var(--wb-green);
    }

.img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Zoom Effect on Hover */
.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

/* Icon Overlay */
.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255,255,255,0.9);
    color: var(--wb-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.gallery-card:hover .overlay-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-info {
    padding: 20px;
    position: relative;
}

.event-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--wb-text);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-desc {
    font-size: 0.85rem;
    color: #64748B;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit text to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================
       CAMPUS LIFE SLIDER PREMIUM UI
       ========================================= */
.campus-slider-wrapper {
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: white;
}

/* Image Panel */
.campus-img-panel {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

    /* Subtle gradient overlay to blend image edge */
    .campus-img-panel::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(to right, transparent 50%, rgba(255,255,255,0.05) 100%);
    }

/* Text Content Panel */
.campus-content-panel {
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

    /* Green Left Border Accent */
    .campus-content-panel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(to bottom, var(--wb-green), #047857);
    }

    /* Abstract Background Watermark Pattern */
    .campus-content-panel::after {
        content: '';
        position: absolute;
        right: -30px;
        bottom: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(255,255,255,0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

.campus-badge {
    display: inline-flex;
    align-items: center;
    background: #FEF2F2;
    color: var(--wb-red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.campus-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--th-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.campus-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-align: justify;
}

/* Customizing MudBlazor Carousel Navigation */
::deep .mud-carousel-transition-slide .mud-icon-button {
    background: rgba(255, 255, 255, 0.8) !important;
    color: var(--wb-green) !important;
    backdrop-filter: blur(4px);
}

    ::deep .mud-carousel-transition-slide .mud-icon-button:hover {
        background: var(--wb-green) !important;
        color: white !important;
    }

/* --- NOTICE BOARD --- */
/* --- NOTICE BOARD ENHANCED CSS --- */
.notice-section-bg {
    background-color: #F8FAFC; /* Soft background */
    padding: 90px 0;
    position: relative;
}

.notice-panel-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.notice-header-modern {
    background: linear-gradient(135deg, var(--wb-green), #03543F);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Pulse Animation for 'Live' feel */
.pulse-live {
    width: 10px;
    height: 10px;
    background: #4ADE80;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(74, 222, 128, 0.4);
    animation: pulse-animation 2s infinite;
}

@@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

/* Custom Scrollbar */
.notice-list-scroll {
    height: 420px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .notice-list-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .notice-list-scroll::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    .notice-list-scroll::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }

        .notice-list-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--wb-green);
        }

/* Interactive List Items */
.notice-list-item {
    padding: 20px 25px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .notice-list-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--wb-red);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .notice-list-item:hover {
        background-color: white;
        transform: translateX(8px); /* Slides Right */
        box-shadow: -5px 5px 15px rgba(0,0,0,0.03);
        z-index: 1;
    }

        .notice-list-item:hover::before {
            transform: scaleY(1);
        }
/* Shows Red Line */

/* Calendar Style Date Badge */
.calendar-badge {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    min-width: 65px;
    flex-shrink: 0;
}

.calendar-month {
    background: var(--wb-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 0;
    letter-spacing: 1px;
}

.calendar-day {
    background: white;
    color: var(--wb-text);
    font-size: 1.5rem;
    font-weight: 900;
    padding: 6px 0;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    line-height: 1;
}

/* Notice Text content */
.notice-text-content {
    flex: 1;
}

.notice-text-title {
    font-weight: 700;
    color: var(--wb-text);
    font-size: 1.05rem;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
    line-height: 1.4;
}

.notice-list-item:hover .notice-text-title {
    color: var(--wb-green);
}

.notice-text-meta {
    font-size: 0.85rem;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Button Style */
.btn-notice {
    background-color: var(--wb-primary);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

    .btn-notice:hover {
        background-color: var(--wb-green);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,106,78,0.2);
        color: white;
    }

.notice-panel {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}



.notice-header {
    background: var(--wb-green);
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.notice-list {
    height: 400px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}



.notice-item {
    padding: 15px 20px;
    border-bottom: 1px dashed #bdbdbd;
    transition: 0.2s;
    cursor: pointer;
    display: flex;
    gap: 15px;
}



    .notice-item:hover {
        background-color: var(--wb-cream);
        border-left: 4px solid var(--wb-red);
        padding-left: 25px;
    }



.date-badge {
    background: var(--wb-red);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    text-align: center;
    min-width: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/* --- EVENT GALLERY GRID --- */

.gallery-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    cursor: pointer;
}



.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transition: 0.4s;
}



.gallery-img-container:hover .gallery-img {
    transform: scale(1.1);
}



.gallery-img-container:hover .gallery-overlay {
    bottom: 0;
}



/* --- CONTACT & MAP --- */

.contact-info-box {
    background: var(--wb-green);
    color: white;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}



.map-frame {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Hero Wrapper */
.hero-wrapper {
    position: relative;
    height: 85vh; /* Full screen height pray */
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Carousel (Pichone thakbe) */
.hero-bg-carousel {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Dark Overlay (Text jate pora jay) */
.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(217, 119, 6, 0.7)) z-index: 1;
}

/* Content (Sobcheye upore thakbe) */
.hero-static-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.footer-area {
    background: #0B1120;
    color: #94A3B8;
    padding-top: 80px;
    font-size: 0.95rem;
    border-top: 4px solid var(--th-red);
}

/* =========================================
               7. CONTACT (IMPROVED GLASSMORPHISM)
               ========================================= */
.contact-wrapper {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #E2E8F0;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--th-primary) 0%, var(--th-secondary) 100%);
    color: #fff;
    padding: 60px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
    /* Abstract overlay pattern for contact */
    .contact-info-panel::before {
        content: '';
        position: absolute;
        right: -50px;
        bottom: -50px;
        width: 250px;
        height: 250px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

.contact-form-panel {
    padding: 60px 50px;
}

.form-input-rounded .mud-input-slot {
    border-radius: 12px;
}

/* Buttons */
.btn-green {
    background: linear-gradient(45deg, var(--th-green), #047857) !important;
    color: #fff !important;
    padding: 12px 35px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4) !important;
    letter-spacing: 1px;
}

    .btn-green:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(5, 150, 105, 0.6) !important;
    }
