html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 150px;
    background: linear-gradient(to right, #e62314, #f19e18);
    position: relative;
    z-index: 10;

}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 1000;
    color: #b52323; /* White font color for header text */
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}
.left-logos, .menu-container {
    display: flex;
    align-items: center;
}

.left-logos, .right-logos {
    display: flex;
    align-items: center;
}
.left-logos .logo {
    margin-right: 10px; /* Adjust spacing between left logos */
}

.right-logos .logo {
    margin-left: 10px; /* Adjust spacing between right logos */
}

.logo {
    height: 70px;
    margin-right: 10px;
    transition: height 0.3s;
}

.logo-label {
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}



.nav-links {
    display: flex;
    gap: 20px; /* Adjusts spacing between navigation links */
    margin-right: 20px; /* Adds space between the last logo and the menu */
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    font-size: 1.2rem;
}

.nav-links a:hover {
    color: #02066f;
    transform: scale(1.05); /* Slightly enlarges the text */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: yellow;
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 50%;
}


.menu-toggle {
    display: none;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff; /* White color for menu toggle button */
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Media Queries for Smaller Screens */
@media (max-width: 1024px) {
    .container {
        padding: 15px 10px;
    }
}
/* Media Queries for Small Screens */
@media (max-width: 768px) {
    header {
        padding: 0px 0;
    }

    .logo {
        height: 50px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-container {
        display: none;
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #e62314, #f19e18);
        flex-direction: column;
        opacity: 0.95;
        transition: transform 0.3s;
    }

    .menu-container.show {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-links a {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-label {
        font-size: 10px;
        line-height: 1.1;
    }

    .logo {
        height: 40px;
    }

    .menu-container {
        width: 100%;
    }

    .nav-links a {
        font-size: 1rem;
    }
}



.registration-banner {
    background: url('Images/\ 1.png') center center/cover no-repeat;
    color: rgb(0, 0, 0);
    padding: 100px 20px;
    text-align: center;
    background-blend-mode: overlay; /* Optional: to blend the image with a color */
}

.banner-content h1 {
    font-size: 48px;
    margin: 0 0 20px;
}

.banner-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.banner-button {
    background-color: #e53e3e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.notice-section {
    background-color: #ffeded;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #e53e3e;
}

.register-section {
    text-align: center;
    padding: 50px 20px;
}

.register-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.register-section form {
    max-width: 600px;
    margin: 0 auto;
}

.register-section label {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.proceed-button,
.decline-button {
    background-color: #e53e3e;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.decline-button {
    background-color: #ccc;
    color: #333;
}

.proceed-button:hover,
.decline-button:hover {
    background-color: #ed8936;
}

.privacy-link {
    display: block;
    margin-top: 20px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #001f3f; /* Navy Blue Background */
    color: #ffffff; /* White Text */
    font-family: Arial, sans-serif;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 200px;
}

/* Footer Column Headings */
.footer-column h4 {
    font-size: 20px; /* Larger Text */
    margin-bottom: 15px;
    color: #1e90ff; /* Dodger Blue for Headings */
    text-align: center; /* Center the headers only */
}


/* Logos Section */
.footer-logos img {
    max-width: 80px; /* Slightly Larger Logos */
    margin: 10px;
    display: inline-block;
}

/* Contact Information Section */
.footer-info a {
    color: #1e90ff; /* Dodger Blue for Links */
    text-decoration: none;
    font-size: 16px; /* Larger Text */
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-info p {
    margin-bottom: 12px;
    font-size: 16px; /* Larger Text */
}

/* Social Media Links Section */
/* Social Media Section */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.social-icon img {
    width: 40px; /* Adjust size as needed */
    height: 40px;
}

.social-icon p {
    margin: 0;
    font-size: 16px; /* Text size */
    color: #ffffff; /* White text for contrast */
}


/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    background-color: #000a1a; /* Darker Navy for Bottom Section */
    padding: 15px 20px;
    color: #ffffff;
    font-size: 16px; /* Larger Text */
}

.footer-bottom a {
    color: #1e90ff; /* Dodger Blue Links */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-logos img {
        margin: 0 10px;
    }

    .footer-social {
        align-items: center;
    }
}

