
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding:0px;
    margin:0px;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0px;
    background-color:#111148;/* Background color for the navbar */
    color: #ffffff;
    font-family: Arial, sans-serif;
   
}

/* Logo on the right side */
.logo {
    font-size: 1em;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

/* Nav Links on the left side */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

/* Hover Effect */
.nav-links a:hover {
    color: #4A2E00; /* Darker color for hover effect */
    background-color: #ffffff;
    border-radius: 5px;
    padding: 5px 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}


    overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Styling for Banner Images */
        .banner-images img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out; /* Transition for dissolve effect */
        }

        /* Display the current image */
        .banner-images img.active {
            opacity: 1;
            z-index: 1;
        }

        /* Banner Controls Styling */
        .banner-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .banner-controls button {
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            color: #ffffff;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .banner-controls button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .banner {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Styling for Banner Images */
        .banner-images img {
           
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out; /* Transition for dissolve effect */
        }

        /* Display the current image */
        .banner-images img.active {
            opacity: 1;
            z-index: 1;
        }

        /* Banner Controls Styling */
        .banner-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .banner-controls button {
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            color: #ffffff;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .banner-controls button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .banner {
        height: 250px;
    }
    .banner-controls button {
        font-size: 1.2em;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 200px;
    }
    .banner-controls button {
        font-size: 1em;
        padding: 6px;
    }
}

header {
    background-color: #111148;;
    color: #fff;
    padding: 1em 0;
}

h1 {
    margin: 0;
}

#timer {
    font-size: 1.5em;
    margin-top: 0.5em;
}

.container {
    width: 80%;
    margin: 2em auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    margin: 1em 0;
    border-collapse: collapse;
}

th, td {
    padding: 1em;
    border: 1px solid #ddd;
    text-align: center;
}

th {
    background-color: #333;
    color: #fff;
}
