body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8;
    color: #1a202c;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the body takes at least the full viewport height */
}
.container {
    max-width: 1280px;
}
.header {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-link:hover {
    color: #2563eb;
    transform: translateY(-2px);
    transition: transform 0.2s ease, color 0.2s ease;
}
.banner-section {
    background: inherit;
    filter: blur();
    color: white;
    position: relative;
    overflow: hidden;
}
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.main-content {
    flex-grow: 1; /* This will make the main content area expand to fill available space */
}
.footer-bg {
    background-color: #1a202c;
    color: #a0aec0;
    margin-top: auto; /* Pushes the footer to the bottom */
}
.footer-link:hover {
    color: #cbd5e0;
}
.button-primary {
    background-color: #2563eb;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.39);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}
.registration-link {
    transition: transform 0.2s ease;
}
.registration-link:hover {
    transform: scale(1.05);
}
.glow-effect {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5), 0 0 30px rgba(37, 99, 235, 0.3);
}
.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;  
    background-position: center;
    min-height: 400px; /* Adjust height for better visibility on all devices */
}
.slider-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}
.slider-nav-button:hover {
    color: #cbd5e0;
}
.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 50;
}
.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.412);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}
.slider-dot.active {
    background-color: #ffffff;
}
/* News Ticker Styles */
.news-ticker {
    background-color: #2c5292;
    color: white;
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 900;
}
.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-animation 40s linear infinite;
}
.ticker-content:hover {
    animation-play-state: paused;
}
.ticker-item {
    margin-right: 2rem;
    font-weight: 500;
}
@keyframes ticker-animation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Responsive adjustments for the table */
@media (max-width: 640px) {
    .table-auto thead {
        display: none;
    }
    .table-auto, .table-auto tbody, .table-auto tr, .table-auto td {
        display: block;
        width: 100%;
    }
    .table-auto tr {
        margin-bottom: 1rem;
        background-color: white;
        border: 1px solid #e2e8f0;
        border-radius: 0.75rem;
    }
    .table-auto td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid #e2e8f0;
    }
    .table-auto td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 1rem;
        font-weight: bold;
        text-align: left;
        color: #2c5292;
    }
}

/*rule*/
 .rule-list {
            list-style: none;
            padding-left: 0;
        }
        .rule-list li::before {
            content: "•";
            color: #2563eb;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }