/**
 * Institutional College Management Web Portal
 * Custom Design System & CSS Framework Extensions
 * Colors: Academic Navy (#0b2545), Royal Blue (#134074), Heritage Gold (#d4af37)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary-navy: #0b2545;
    --primary-navy-dark: #06172d;
    --primary-navy-light: #134074;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b89326;
    --accent-gold-light: #fdf8e7;
    --accent-maroon: #8b0000;
    --bg-light: #f8fafc;
    --card-border: rgba(11, 37, 69, 0.08);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(11, 37, 69, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(11, 37, 69, 0.08);
    --shadow-lg: 0 20px 35px -5px rgba(11, 37, 69, 0.12);
}

/* Global Reset & Base */
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-navy);
}

a {
    color: var(--primary-navy-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-gold-hover);
}

/* ==========================================================================
   Top Utility Bar
   ========================================================================== */
.topbar {
    background: var(--primary-navy-dark);
    color: #e2e8f0;
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 2px solid var(--accent-gold);
}

.topbar a {
    color: #cbd5e1;
}

.topbar a:hover {
    color: var(--accent-gold);
}

.topbar-divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

/* ==========================================================================
   Main Header & Branding
   ========================================================================== */
.main-header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.college-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.college-title-main {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 3px;
    letter-spacing: -0.5px;
}

.college-title-sub {
    font-size: 0.85rem;
    color: var(--accent-maroon);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.college-affiliation-tag {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Header Quick Contact Info */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-gold-light);
    color: var(--accent-gold-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar-institutional {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.15);
    padding: 0;
}

.navbar-institutional .nav-link {
    color: #f1f5f9 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 18px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-institutional .nav-link:hover,
.navbar-institutional .nav-link.active {
    color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.06);
}

.navbar-institutional .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-institutional .nav-link:hover::after,
.navbar-institutional .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.navbar-institutional .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    background: #ffffff;
    border-top: 3px solid var(--accent-gold);
    animation: fadeInMenu 0.25s ease forwards;
}

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

.navbar-institutional .dropdown-item {
    padding: 9px 16px;
    font-size: 0.9rem;
    color: var(--text-main);
    border-radius: 6px;
    transition: var(--transition);
}

.navbar-institutional .dropdown-item:hover {
    background: var(--accent-gold-light);
    color: var(--primary-navy);
    padding-left: 20px;
}

.btn-nav-portal {
    background: var(--accent-gold);
    color: var(--primary-navy) !important;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    transition: var(--transition);
    border: none;
}

.btn-nav-portal:hover {
    background: #ffffff;
    color: var(--primary-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Live News & Notice Ticker
   ========================================================================== */
.ticker-wrap {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    height: 44px;
    box-shadow: var(--shadow-sm);
}

.ticker-heading {
    background: var(--accent-maroon);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0 20px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.ticker-heading::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 10px solid var(--accent-maroon);
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.ticker-marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marqueeAnimation 28s linear infinite;
}

.ticker-marquee:hover {
    animation-play-state: paused;
}

@keyframes marqueeAnimation {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    margin-right: 35px;
    font-size: 0.88rem;
    color: var(--text-main);
}

.ticker-item:hover {
    color: var(--accent-maroon);
    text-decoration: underline;
}

/* Flashing Badge */
.badge-flashing {
    background-color: #ef4444;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    animation: flash 1.2s infinite alternate;
    margin-right: 6px;
}

@keyframes flash {
    0% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* ==========================================================================
   Hero Banner Slider (Fixed Dimensions & High Contrast)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    background: #06172d;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 520px;
    min-height: 480px;
    max-height: 540px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 23, 45, 0.94) 0%, rgba(6, 23, 45, 0.78) 55%, rgba(6, 23, 45, 0.45) 100%);
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.hero-content {
    color: #ffffff;
    max-width: 820px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.25);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 2.65rem;
    font-weight: 800;
    line-height: 1.22;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.5);
    font-family: 'Outfit', sans-serif;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: #e2e8f0;
    margin-bottom: 25px;
    line-height: 1.65;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    max-width: 720px;
}

/* Hero Carousel Indicators */
.hero-carousel .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.hero-carousel .carousel-indicators .active {
    width: 32px;
    border-radius: 8px;
    background-color: var(--accent-gold);
    opacity: 1;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    background: rgba(11, 37, 69, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 25px;
    opacity: 0.85;
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    z-index: 5;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    opacity: 1;
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.08);
}

@media (max-width: 991px) {
    .hero-carousel .carousel-item {
        height: 440px;
        min-height: 400px;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 42px;
        height: 42px;
        margin: 0 10px;
    }
}

@media (max-width: 767px) {
    .hero-carousel .carousel-item {
        height: 380px;
        min-height: 340px;
    }
    .hero-title {
        font-size: 1.55rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-badge {
        font-size: 0.72rem;
        padding: 4px 12px;
    }
}

/* ==========================================================================
   Quick Stats Counters
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #17426c 100%);
    color: #ffffff;
    padding: 40px 0;
    position: relative;
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
    padding: 15px;
    position: relative;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 2px;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Section Headers & UI Cards
   ========================================================================== */
.section-title-wrap {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.section-subtitle {
    color: var(--accent-maroon);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
}

.section-main-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-navy);
    position: relative;
    padding-bottom: 15px;
}

.section-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.section-main-title.text-start::after {
    left: 0;
    transform: none;
}

/* ==========================================================================
   Principal's Message Desk
   ========================================================================== */
.principal-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}

.principal-img-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 3px solid #ffffff;
    outline: 2px solid var(--accent-gold);
}

.principal-img-frame img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: var(--transition);
}

.principal-quote-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.25);
    line-height: 1;
    margin-bottom: 10px;
}

.principal-badge {
    display: inline-block;
    background: var(--accent-gold-light);
    color: var(--accent-gold-hover);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* ==========================================================================
   Academic Courses & Programs
   ========================================================================== */
.course-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.course-card-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    color: #ffffff;
    padding: 20px;
    position: relative;
}

.course-badge {
    background: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.course-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    background: #f1f5f9;
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* ==========================================================================
   Notice Board & Downloads Section
   ========================================================================== */
.notice-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.notice-box-header {
    background: var(--primary-navy);
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-list {
    max-height: 480px;
    overflow-y: auto;
}

.notice-item {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notice-item:hover {
    background: #f8fafc;
    border-left: 4px solid var(--accent-gold);
}

.notice-date-badge {
    min-width: 58px;
    text-align: center;
    background: var(--accent-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    padding: 6px 4px;
}

.notice-date-day {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.notice-date-month {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-maroon);
    text-transform: uppercase;
}

/* ==========================================================================
   Faculty Directory Cards
   ========================================================================== */
.faculty-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    text-align: center;
    padding: 25px 20px;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.faculty-avatar-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    outline: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.faculty-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.faculty-designation {
    font-size: 0.85rem;
    color: var(--accent-maroon);
    font-weight: 600;
    margin-bottom: 8px;
}

.faculty-qual {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* ==========================================================================
   Facilities & Infrastructure Cards
   ========================================================================== */
.facility-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.facility-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.facility-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-img-wrap img {
    transform: scale(1.08);
}

.facility-icon-tag {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    border: 2px solid #ffffff;
}

/* ==========================================================================
   Photo Gallery Grid
   ========================================================================== */
.gallery-filter-btn {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: var(--text-main);
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
    margin: 4px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-navy);
    color: #ffffff;
    border-color: var(--primary-navy);
}

.gallery-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    background: #000;
    height: 240px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
    opacity: 0.85;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.9) 0%, rgba(11, 37, 69, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.gallery-category-tag {
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-play-center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(220, 38, 38, 0.92);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    padding-left: 4px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-card:hover .video-play-center-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #e11d48;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-institutional {
    background: var(--primary-navy-dark);
    color: #cbd5e1;
    padding-top: 60px;
    border-top: 4px solid var(--accent-gold);
}

.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-bottom {
    background: #030d1a;
    padding: 18px 0;
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating Helpline Button */
.floating-helpline {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.floating-helpline:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.6);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Responsive adjustments & Mobile Ergonomics */
@media (max-width: 991.98px) {
    .college-title-main {
        font-size: 1.3rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-carousel .carousel-item {
        height: 420px;
    }
    .navbar-institutional .nav-link {
        padding: 10px 15px !important;
    }
}

@media (max-width: 576px) {
    .notice-item {
        padding: 12px 14px;
        gap: 12px;
    }
    .notice-date-badge {
        min-width: 50px;
        padding: 4px 2px;
    }
    .notice-date-day {
        font-size: 1.1rem;
    }
    .notice-date-month {
        font-size: 0.65rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.78rem;
    }
    .floating-helpline {
        bottom: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .main-header {
        padding: 14px 0;
    }
    .college-logo-img {
        width: 55px;
        height: 55px;
    }
}
