body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
}

header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    width: 100%;
    text-align: center;
}

nav ul {
    margin-top: 10px;
    margin-bottom: -5px;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding:5px;
    letter-spacing: 1px;
    word-spacing: 2px;
    /* border-radius: 2px; */
    /* transition: 0.4s; */
}

nav a:hover{
    /* background-color: white;
    color: black; */
    border-bottom: 2px solid white;
}

nav .comp img{
    display: flex;
    position: absolute;
    left:10px;
    top:10px;
    height: 60px;
}

nav .sco img{
    display: flex;
    position: absolute;
    right:10px;
    top:10px;
    height: 60px;
}

#schedule>div{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-left: 10px;

}
#schedule h2{
    text-align: center;
    font-size: 35px;
}
#schedule>div>div{
    margin-top: 20px;
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
#schedule h3{
    font-size: 15px;
    font-weight: bolder;
}
#schedule>div img{
    height: 50px;
    width: 40px;
    align-items: center;
    justify-content: center;
}
#schedule p{
    margin-top: -15px;
    font-size: 14px;
    font-weight: lighter;
    color:  rgb(67, 67, 67);
}

.content{
    margin-left: 10px;
}

.content h1{
    margin-top: 50px;
    margin-bottom: 30px;
}
.content h3{
    text-decoration: underline;
}
.content h3::before {
    content: "";
    display: inline-block;
    width: 4px; /* Adjust thickness */
    height: 1em; /* Adjust height */
    background-color: blue; /* Change to your preferred color */
    margin-right: 8px; /* Adjust spacing */
    vertical-align: middle;
}


.card ,.cardmem{
    padding: 5px;
    width: auto;
    margin-left: 15px;
    margin-right: 10px;
    word-spacing: 2px;
    letter-spacing: 1px;
    line-height: 25px;
    text-align: justify;
}


.card li{
    padding-bottom: 20px;
}

.card li>a{
    border-radius: 50px;
    background-color: rgb(87, 87, 255);
    padding: 5px;
    color: white;
    text-decoration: none;
    margin-bottom: -10px;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #e0e0e0;
    font-weight: bold;
}

tr:hover {
    background: #f1f1f1;
}

@media (max-width: 500px) {
    .card{
        width: 80%;
    }
    nav ul{
        margin-top: 10px;
        margin-bottom: -5px;
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: center;
        gap:0.5px;
        font-size: 7px;
    }
    #schedule>div{
        display: flex;
        flex-direction: column;
        margin-left: 10px;
    
    }
    .logo{
        margin-bottom: 15px;
    }
    .logo h4{
        margin-top: 0px;
        font-size: 10px;
    }

    .logo .comp img{
        margin-top: -10px;
        height: 50px;
        width: 50px;
    }

    .logo .sco img{
        height: 30px;
    }
}

.payment{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 30px;
    margin-right: 30px;
}
.payment-methods {
    background-color: rgba(0, 115, 230, 0.2);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    margin-bottom: 30px;

}

.payment-methods h3 {
    color: #0073e6;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.payment-methods ul {
    padding: 0;
    list-style-type: none;
}

.payment-methods li {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.payment-methods li::before {
    content: "• ";
    color: #0073e6; /* Bullet point color */
    font-weight: bold;
}

.register-section {
    text-align: center;
}

.register-section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.register-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.register-btn {
    display: inline-block;
    background-color: #0073e6; /* Red button */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.register-btn:hover {
    background-color: #0058b0;
}

.sponsors-section {
    text-align: center;
    background-color: #f0f4f8; /* Light background */
    padding: 40px 20px;
}

.sponsors-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.sponsors-container {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Aligns items vertically */
    gap: 50px; /* Adds space between logos */
    flex-wrap: wrap; /* Ensures responsiveness */
}

.sponsor {
    text-align: center;
    width: 250px; /* Adjust width for better alignment */
}

.sponsor img {
    width: 120px; /* Set image size */
    height: auto;
    display: block;
    margin: 0 auto 10px; /* Centers image */
    mix-blend-mode: multiply;
}

.sponsor p {
    font-size: 14px;
    margin-top: 5px;
}


.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-top: 0px;
    border-top: 1px solid #ddd;
    background-color: #1a1a1a;
    color: white;
}
.footer-left {
    max-width: 50%;
}
.footer-left h3 {
    font-size: 18px;
    font-weight: bold;
}
.footer-left p {
    font-size: 14px;
    width: 70%;
}
.footer-left a {
    color: #9664c8;
    text-decoration: none;
    font-weight: bold;
}
.footer-left a:hover {
    text-decoration: underline;
}
.footer-right {
    text-align: right;
}
.footer-mid img {
    width: 120px;
}

.footer-right p {
    font-size: 14px;
}
.contact-info {
    font-size: 14px;
    font-weight: bold;
}
.contact-info a {
    color: #0073e6;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}