/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0B63C6; /* Janta555 Blue */
    --primary-hover: #094c99;
    --bg-light: #ffffff;
    --bg-card: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --gradient-blue: linear-gradient(135deg, #0B63C6, #094c99);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Section */
.header_section {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #0B63C6;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.navbar-toggler {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Banner Section */
.banner_section {
    padding: 150px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #f0f4f8 0%, #ffffff 100%);
    position: relative;
}

.banner_content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.banner_taital {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 10px rgba(11, 99, 198, 0.1);
}

.banner_text {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn_main {
    display: flex;
    justify-content: center;
}

.about_bt {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-blue);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(11, 99, 198, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about_bt:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(11, 99, 198, 0.5);
    color: #fff;
}

/* Results Section */
.results_section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section_title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.table-responsive {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.results-table th, .results-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.results-table th {
    font-size: 18px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
}

.results-table tbody tr {
    transition: background-color 0.3s ease;
}

.results-table tbody tr:hover {
    background-color: rgba(11, 99, 198, 0.05);
}

.result-badge {
    background: var(--gradient-blue);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(11, 99, 198, 0.3);
}

/* Footer Section */
.footer_section {
    padding: 60px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer_text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* Copyright Section */
.copyright_section {
    background: #0B63C6;
    padding: 20px 0;
    text-align: center;
}

.copyright_text {
    color: #ffffff;
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-light);
        padding: 20px;
        border-top: 1px solid var(--border-color);
        display: none;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .navbar-collapse.show {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .banner_taital {
        font-size: 40px;
    }

    .banner_text {
        font-size: 16px;
    }
}
