
body {
    font-family: 'Poppins', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 transparent;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 transparent;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #94a3b8; /* slate-400 */
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #64748b; /* slate-500 */
    }

.gradient-border {
    background: linear-gradient(to right, #f97316 35%, #ffffff 35%, #ffffff 59%, #16a34a 59%);
    height: 4px;
}

.gradient-border {
    background: linear-gradient(to right, #f97316 35%, #ffffff 35%, #ffffff 59%, #16a34a 59%);
    height: 4px;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Submenu Animation */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

    .submenu.open {
        max-height: 2000px;
        /* Large height for long menus */
    }

/* Desktop Dropdown Hover */
.dropdown-group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Custom Utilities */
.gradient-border {
    background: linear-gradient(to right, #f97316 35%, #ffffff 35%, #ffffff 59%, #16a34a 59%);
    height: 4px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animation Utilities */
.accordion-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

    .accordion-content.active {
        opacity: 1;
    }

.tab-btn {
    transition: all 0.3s ease;
}
/* Decorative background */
.bg-decor {
    pointer-events: none;
    opacity: 0.5;
}

/* Tabs */
.tab-btn {
    position: relative;
    z-index: 10;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    color: #0369a1;
    transition: all 0.3s ease;
}

    .tab-btn.active {
        color: #fff;
    }

#tab-highlight {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    width: calc(50% - 6px);
    background: #0369a1;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Section title */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0369a1;
}

.icon-orange {
    color: #f97316;
    width: 2rem;
    height: 2rem;
}

.icon-sky {
    color: #0369a1;
    width: 2rem;
    height: 2rem;
}

/* Cards */
.card {
    background: transparent;
    padding: 1.5rem;
    border-radius: 1.75rem;
    text-align: center;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 150px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    }

    .card span {
        font-size: 1.05rem;
        font-weight: 500;
        line-height: 1.3;
    }


.login-card {
    background: transparent;
    padding: .75rem;
    border-radius: .75rem;
    text-align: center;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 70px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Color Variants */
.card-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.card-sky {
    background: linear-gradient(135deg, #0369a1, #075985);
}

/* Icon Wrapper */
.card-icon {
    background: rgba(255, 255, 255, 0.22);
    padding: 0.85rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-icon svg {
        width: 34px;
        height: 34px;
        color: #ffffff;
    }



/* -------------------------- */


/* Section Box */
.section-box {
    background: #ffffff;
    border-radius: 2rem;
    padding: 1.5rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Heading */
.section-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.heading-bar {
    width: 6px;
    height: 40px;
    background: #15803d;
    border-radius: 9999px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0369a1;
}

.heading-icon {
    width: 32px;
    height: 32px;
    color: #15803d;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Cards */
.process-card {
    background: linear-gradient(135deg, #16a34a, #15803d);
    padding: 1.5rem;
    border-radius: 1.75rem;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 150px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .process-card:hover {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    }

    .process-card span {
        font-size: 1.05rem;
        font-weight: 500;
        line-height: 1.3;
    }

/* Icon */
.process-icon {
    background: rgba(255, 255, 255, 0.22);
    padding: 0.85rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .process-icon svg {
        width: 32px;
        height: 32px;
        color: #ffffff;
    }

/* Slow spin animation */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spinSlow 3s linear infinite;
}

/* Layout */
.notice-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .notice-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
}

/* Common Box */
.notice-box,
.date-box {
    background: #ffffff;
    border-radius: 2rem;
    padding: 1.5rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.notice-box {
    flex: 2;
}

.date-box {
    flex: 1;
}

/* Headers */
.notice-header,
.date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.notice-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .notice-title h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0369a1;
        font-family: Poppins, sans-serif;
    }

.bar {
    width: 6px;
    height: 32px;
    border-radius: 9999px;
}

.bar-green {
    background: #15803d;
}

.bar-orange {
    background: #f97316;
}

/* Links */
.link-green {
    color: #15803d;
    font-size: 0.875rem;
    font-weight: 500;
}

.link-orange {
    color: #f97316;
    font-size: 0.875rem;
    font-weight: 500;
}

    .link-green:hover,
    .link-orange:hover {
        text-decoration: underline;
    }

/* Notice list */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notice-item {
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.3s ease;
}

    .notice-item:hover {
        background: #fafafa;
    }

@media (min-width: 640px) {
    .notice-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.notice-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.notice-text p {
    font-size: 0.75rem;
    font-weight: 600;
    color: #71717a;
}

/* PDF Button */
.pdf-btn {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #f97316;
    color: #f97316;
    font-size: 0.75rem;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .pdf-btn:hover {
        background: #f97316;
        color: #ffffff;
    }

/* Dates */
.date-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.date-item {
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

    .date-item:hover {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

.date-left {
    min-width: 60px;
    border-right: 1px solid #e5e7eb;
    padding-right: 1rem;
    text-align: center;
}

.date-day {
    font-size: 2.25rem;
    font-weight: 700;
    color: #f97316;
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 600;
    color: #15803d;
}

.date-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.date-range {
    font-size: 0.625rem;
    font-weight: 600;
    color: #71717a;
}


