html {
    scroll-behavior: smooth;
}

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

body {
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-weight: 400;
}

/* Top Bar Styles */
.top-bar {
    background-color: #f9c74f;
    padding: 8px 0;
    border-bottom: 1px solid #e8b440;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.search-container {
    position: relative;
}

.search-input {
    padding: 6px 35px 6px 12px;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    width: 220px;
    font-size: 12px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #0d1b3d;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 12px;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0d1b3d;
}

.career-link {
    color: #0d1b3d !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.career-link:hover {
    color: #ffffff !important;
}

/* Main Navigation Styles */
.main-nav {
    background-color: #0d1b3d;
    padding: 0;
    border-bottom: 3px solid #f9c74f;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Spacer to prevent content jump when nav becomes sticky */
.nav-spacer {
    display: none;
    height: 63px;
}

.main-nav.sticky + .nav-spacer {
    display: block;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 60px;
}

.logo {
    margin-right: 25px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 24px 0;
    transition: color 0.3s ease;
    position: relative;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.nav-link:hover,
.nav-link.active {
    color: #f9c74f !important;
    border-bottom: 3px solid #f9c74f;
}

.dropdown-arrow {
    font-size: 8px;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0d1b3d;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: none;
    display: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item:hover .dropdown-menu-custom {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item-custom {
    display: block;
    padding: 12px 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.dropdown-item-custom:hover {
    background-color: #f9c74f;
    color: #0d1b3d;
}

.dropdown-item-custom:last-child {
    border-bottom: none;
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    outline: none;
}

.mobile-menu-toggle:focus {
    outline: none;
    box-shadow: none;
}

.mobile-menu-toggle i {
    display: inline-block;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nav-item {
        margin-right: 20px;
    }
    
    .logo {
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 12px 0;
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .top-left {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: stretch;
    }
    
    .search-container {
        align-self: center;
    }
    
    .search-input {
        width: 200px;
        font-size: 14px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 20px;
    }
    
    .social-icons a {
        font-size: 16px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo {
        margin-right: 20px;
    }
    
    .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0d1b3d;
        flex-direction: column;
        padding: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.show {
        display: flex !important;
    }
    
    .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 15px 20px;
        font-size: 14px;
        letter-spacing: 0.5px;
        justify-content: space-between;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .nav-item.dropdown-open .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .mobile-menu-toggle {
        display: block !important;
        margin-left: auto;
        z-index: 1001;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
        border-radius: 4px;
    }
    
    .mobile-menu-toggle:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    .mobile-menu-toggle i {
        display: block;
    }
    
    .dropdown-menu-custom {
        position: static;
        box-shadow: none;
        display: none;
        margin: 0;
        background-color: rgba(0,0,0,0.2);
        border-radius: 0;
    }
    
    .dropdown-menu-custom.show {
        display: block;
    }
    
    .dropdown-item-custom {
        padding: 12px 30px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .dropdown-item-custom:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        padding: 0 10px;
    }
    
    .search-input {
        width: 100%;
        max-width: 180px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .dropdown-item-custom {
        padding: 10px 25px;
        font-size: 12px;
    }
}

/* Full Screen Slideshow Section */
.slideshow-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.fullscreen-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.fs-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.fs-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transition: opacity 1.2s ease-in-out 0.3s, visibility 1.2s ease-in-out 0.3s;
}

.fs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Content Overlay */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff !important;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

@media (max-width: 768px) {
    .slide-content {
        top: 40%;
        transform: translate(-50%, 0);
        max-width: 90%;
    }
}

.slide-content * {
    color: #ffffff !important;
}

.fs-slide.active .slide-content {
    opacity: 1;
    transition: opacity 0.8s ease-in-out 0.5s;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #f9c74f;
    opacity: 0;
    animation: typing 1s steps(40, end) 1s, blink-caret 0.75s step-end 1s infinite, hide-caret 0s 2s forwards, fadeIn 0s 1s forwards;
}

h2.slide-title {
    color: #ffffff !important;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #f9c74f }
}

@keyframes hide-caret {
    to { border-color: transparent }
}

.slide-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #f9c74f;
    opacity: 0;
    animation: typing 1s steps(50, end) 2s, blink-caret 0.75s step-end 2s infinite, hide-caret 0s 3s forwards, fadeIn 0s 2s forwards;
}

p.slide-desc {
    color: #ffffff !important;
}

@keyframes fadeIn {
    to { opacity: 1 }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 32px;
        white-space: normal;
        animation: none;
        border-right: none;
        opacity: 1;
    }

    .slide-desc {
        font-size: 16px;
        white-space: normal;
        animation: none;
        border-right: none;
        opacity: 1;
    }

    /* Mobile typing cursor effect */
    .slide-title.typing,
    .slide-desc.typing {
        border-right: 3px solid #f9c74f;
        animation: blink-caret 0.75s step-end infinite;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 24px;
    }
    
    .slide-desc {
        font-size: 14px;
    }
}



/* Slide indicators/dots */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

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

.slide-dot.active {
    background-color: #f9c74f;
    transform: scale(1.2);
}

.slide-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .slideshow-section {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .slideshow-section {
        height: 300px;
    }
}

/* Notice Board Section */
.notice-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

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

.notice-header {
    text-align: center;
    margin-bottom: 25px;
}

.notice-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0d1b3d;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.notice-header .divider {
    width: 60px;
    height: 3px;
    background-color: #f9c74f;
    margin: 0 auto;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.notice-item {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 3px solid #0d1b3d;
}

.notice-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.notice-item.new {
    border-left-color: #f9c74f;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f9c74f 0%, #e8b440 100%);
    color: #0d1b3d;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(249, 199, 79, 0.4);
    animation: pulse 2s infinite;
}

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

.notice-title {
    font-size: 13px;
    font-weight: 600;
    color: #0d1b3d;
    margin-bottom: 5px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    line-height: 1.3;
    padding-right: 50px;
}

.notice-date {
    font-size: 11px;
    color: #666;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

@media (max-width: 768px) {
    .notice-section {
        padding: 40px 0;
    }
    
    .notice-header h2 {
        font-size: 28px;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .notice-section {
        padding: 30px 0;
    }

    .notice-header h2 {
        font-size: 24px;
    }

    .notice-item {
        padding: 15px;
    }

    .notice-title {
        font-size: 14px;
    }

    #staff .section-container {
        padding: 0 15px;
    }

    .staff-slide {
        flex: 0 0 calc(100% - 20px);
    }

    .staff-image img {
        height: 180px;
    }
}

/* Modal Dialog Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    max-width: 75%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-close-top {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 16px;
    color: #333;
}

.modal-close-top:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px;
    padding-top: 50px;
    text-align: center;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-body::-webkit-scrollbar {
    display: none;
}

/* Reusable Dialog Styles */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dialog-overlay.show {
    opacity: 1;
    visibility: visible;
}

.dialog-content {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.8) translateY(-50px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dialog-overlay.show .dialog-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.dialog-content.large {
    width: 90%;
    max-width: 1000px;
}

.dialog-content.medium {
    width: 80%;
    max-width: 700px;
}

.dialog-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 16px;
    color: #333;
}

.dialog-close:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.dialog-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #0d1b3d;
}

.dialog-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.dialog-body {
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.dialog-body::-webkit-scrollbar {
    width: 8px;
}

.dialog-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dialog-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.dialog-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Dialog Loading Spinner */
.dialog-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 200px;
}

.dialog-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #f9c74f;
    border-radius: 50%;
    animation: dialogSpin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes dialogSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dialog-loading-text {
    color: #666;
    font-size: 16px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    animation: dialogPulse 1.5s ease-in-out infinite;
}

@keyframes dialogPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Dialog Content Fade In */
.dialog-content-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: dialogFadeIn 0.5s ease-out forwards;
}

@keyframes dialogFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .dialog-content.large,
    .dialog-content.medium {
        width: 95%;
        max-width: none;
    }

    .dialog-title {
        font-size: 20px;
    }

    .dialog-header {
        padding: 15px;
    }

    .dialog-body {
        padding: 15px;
    }
}

.modal-image {
    width: 95%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b3d;
    margin-bottom: 8px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.modal-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}


@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 20px;
        padding-top: 50px;
    }
    
    .modal-image {
        max-height: 300px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-text {
        font-size: 14px;
    }
    

}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0d1b3d;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    font-size: 18px;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #f9c74f;
    color: #0d1b3d;
    transform: translateY(-3px);
}

/* Footer Styles */
.footer {
    background-color: #0d1b3d;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

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

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f9c74f;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.footer-links a:hover {
    color: #f9c74f;
}

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

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #cccccc;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.footer-contact i {
    color: #f9c74f;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background-color: #f9c74f;
    color: #0d1b3d;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cccccc;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-alt {
    background-color: #f8f9fa;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0d1b3d;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.section-header .divider {
    width: 80px;
    height: 4px;
    background-color: #f9c74f;
    margin: 0 auto;
}

/* Admission Section */
.admission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.admission-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #f9c74f;
}

.admission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.admission-icon {
    width: 70px;
    height: 70px;
    background-color: #f9c74f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #0d1b3d;
}

.admission-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b3d;
    margin-bottom: 15px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.admission-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0d1b3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.btn-primary:hover {
    background-color: #f9c74f;
    color: #0d1b3d;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0d1b3d;
    margin-bottom: 20px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.about-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #f9c74f;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: #f9c74f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d1b3d;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0d1b3d;
    margin-bottom: 5px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.author-info span {
    font-size: 13px;
    color: #666;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

/* Infrastructure Section */
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(320px, 1fr));
    gap: 30px;
}

@media (max-width: 1400px) {
    .infrastructure-grid {
        grid-template-columns: repeat(3, minmax(300px, 1fr));
    }
}

@media (max-width: 1000px) {
    .infrastructure-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media (max-width: 600px) {
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
}

.infrastructure-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.infrastructure-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.infrastructure-icon {
    width: 70px;
    height: 70px;
    background-color: #0d1b3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #f9c74f;
}

.infrastructure-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
}

.infrastructure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.infrastructure-item:hover .infrastructure-image img {
    transform: scale(1.05);
}

.infrastructure-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b3d;
    margin-bottom: 15px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.infrastructure-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

/* Staff Section */
#staff {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

#staff .section-container {
    max-width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
    width: 100%;
}

.staff-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
}

.staff-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.staff-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.staff-slide {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    opacity: 0.3;
    transition: opacity 0.5s ease-in-out;
}

.staff-slide.active {
    opacity: 1;
}

.staff-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.staff-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.staff-info {
    padding: 20px;
    text-align: center;
}

.staff-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b3d;
    margin-bottom: 5px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.staff-role {
    font-size: 14px;
    color: #f9c74f;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.staff-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

/* Gallery Section */
.gallery-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.gallery-category-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.gallery-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.gallery-category-cover {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gallery-category-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-category-card:hover .gallery-category-cover img {
    transform: scale(1.08);
}

.gallery-category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d1b3d 0%, #1a2d5e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9c74f;
    font-size: 48px;
}

.gallery-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

.gallery-category-count {
    color: white;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-category-info {
    padding: 15px;
}

.gallery-category-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f9c74f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d1b3d;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b3d;
    margin-bottom: 10px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.contact-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.contact-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0d1b3d;
    margin-bottom: 25px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f9c74f;
}

.form-group textarea {
    resize: vertical;
}

/* Responsive Styles for Sections */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    #staff .section-container {
        padding: 0 30px;
    }
    
    .staff-slider-container {
        padding: 0;
    }
    
    .staff-slide {
        flex: 0 0 calc(50% - 20px);
    }
    
    .staff-image img {
        height: 200px;
    }
    
    .gallery-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }

    .gallery-category-cover {
        height: 160px;
    }
}

/* Notices Section Styles */
.notices-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

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

.notices-title {
    font-size: 28px;
    font-weight: 700;
    color: #0d1b3d;
    text-align: center;
    margin-bottom: 30px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.notices-title i {
    color: #f9c74f;
    margin-right: 10px;
}

.notices-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notice-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0d1b3d;
    transition: all 0.3s ease;
}

.notice-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.notice-title {
    font-size: 18px;
    font-weight: 600;
    color: #0d1b3d;
    margin: 0;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.notice-date {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.notice-content {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.notice-file {
    margin-top: 10px;
}

.notice-file-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #0d1b3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.notice-file-link:hover {
    background-color: #f9c74f;
    color: #0d1b3d;
}

.no-notices {
    text-align: center;
    font-size: 16px;
    color: #666;
    padding: 30px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

@media (max-width: 768px) {
    .notices-section {
        padding: 30px 0;
    }

    .notices-title {
        font-size: 24px;
    }

    .notice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .notice-item {
        padding: 15px;
    }

    .notice-title {
        font-size: 16px;
    }
}

/* Notice and Events Grid Layout */
.notice-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
    align-items: start;
}

.notice-grid {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.notice-grid-header {
    margin-bottom: 20px;
}

.notice-grid-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.notice-grid-header .divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #f9c74f 0%, #f8961e 100%);
    border-radius: 2px;
}

.events-grid {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.events-header {
    margin-bottom: 20px;
}

.events-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.events-header .divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #f9c74f 0%, #f8961e 100%);
    border-radius: 2px;
}

/* Notice Meta Layout */
.notice-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.notice-date {
    color: #6c757d;
    font-size: 13px;
    margin: 0;
}

.new-badge,
.event-badge {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Event Badge Styles */
.event-badge {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.upcoming-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.past-badge {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

/* Responsive Design for Side-by-Side Layout */
@media (max-width: 768px) {
    .notice-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .notice-grid,
    .events-grid {
        min-height: auto;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid .notice-item {
        grid-column: 1 / -1;
    }
}

/* Notice Detail Page Styles */
.notice-detail-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #f9c74f;
}

.notice-detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.notice-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d1b3d;
    margin-bottom: 15px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.notice-detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notice-detail-date {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.notice-detail-date i {
    color: #f9c74f;
    margin-right: 5px;
}

.notice-detail-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.notice-detail-file {
    margin-bottom: 30px;
}

.notice-detail-back {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .notice-detail-card {
        padding: 25px;
    }

    .notice-detail-title {
        font-size: 24px;
    }

    .notice-detail-content {
        font-size: 14px;
    }
}

/* Notice Dialog Content Styles */
.notice-dialog-content {
    padding: 0;
}

.notice-dialog-header {
    background: linear-gradient(135deg, #0d1b3d 0%, #1a2d5c 100%);
    padding: 25px 30px;
    margin: -20px -20px 20px -20px;
    border-bottom: 3px solid #f9c74f;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-dialog-header-left {
    flex: 1;
}

.notice-dialog-header-right {
    flex-shrink: 0;
}

.notice-dialog-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    line-height: 1.3;
}

.notice-dialog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-dialog-date {
    font-size: 14px;
    color: #f9c74f;
    font-weight: 600;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    letter-spacing: 0.3px;
}

.notice-dialog-date i {
    color: #ffffff;
    margin-right: 6px;
}

.notice-dialog-body {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    max-height: 450px;
    overflow-y: auto;
    padding: 0 5px;
}

.notice-dialog-body::-webkit-scrollbar {
    width: 8px;
}

.notice-dialog-body::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 4px;
}

.notice-dialog-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0d1b3d 0%, #1a2d5c 100%);
    border-radius: 4px;
}

.notice-dialog-body::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #f9c74f 0%, #e8b440 100%);
}

.btn-small {
background: linear-gradient(135deg, #f9c74f 0%, #e8b440 100%);
padding: 8px 16px;
font-size: 12px;
border-radius: 4px;
text-decoration: none;
color: #0d1b3d;
font-weight: 600;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 6px;
}

.btn-small:hover {
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
color: #ffffff;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.notice-dialog-error {
text-align: center;
padding: 50px 30px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border-radius: 8px;
margin: 20px 0;
    border-radius: 8px;
    margin: 20px 0;
}

.notice-dialog-error i {
    font-size: 56px;
    color: #f9c74f;
    margin-bottom: 18px;
    display: block;
}

.notice-dialog-error h4 {
    font-size: 20px;
    color: #0d1b3d;
    margin-bottom: 12px;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-weight: 700;
}

.notice-dialog-error p {
    font-size: 15px;
    color: #6c757d;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    line-height: 1.6;
}
