/* Reset some default styles for better consistency across browsers */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: black;
    background-color: #f0f0f0;
}

header {
    background-color: #333;
    color: black;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    color: black;
}

.menu ul {
    list-style: none;
    display: flex;
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
}

.menu li {
    margin-right: 20px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.menu a:hover {
    color: #2fafd3;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.logo img {
    max-width: 300px;
    height: auto;
    margin-left: 10px;
    margin-top: 10px;
}

.landing-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.landing-image {
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.overlay-text {
    color: white;
    font-size: 55px;
    font-weight: bold;
    text-shadow: 2px 2px 2px gray;
}

.hero {
    text-align: center;
    background-color: #f2f2f2;
    padding: 20px;
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    color: #333;
}

.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
    color: white;
}

.service-tile {
    width: 25%;
    padding: 10px;
    margin: 10px;
    background-color: #196890;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 30px;
}

.service-tile:hover {
    background-color: #2fafd3;
    color: white;
}

.service-description {
    /*display: none;*/
    margin-top: 10px;
}

.footer {
    text-align: center;
    padding: 50px 20px;
    background-color: #333;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
}


.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    font-size: 16px; /* Adjust the font size as needed */
    color: #fff;
    margin-bottom: 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    gap: 6px;
    text-align: center;
    justify-content: center;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-column h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
    color:#2fafd3;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    font-size: 16px; /* Adjust the font size as needed */
    color: #fff;
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    color: #fff;
}

.footer-column a:hover {
    text-decoration: underline;
}

.all-rights {
    color: #2fafd3 !important;
    text-align: center;
    font-size: 16px; /* Adjust the font size as needed */
}

.terms-and-conditions {
    padding: 10px;
}

.privacypolicy {
    padding: 10px;
}

.code-of-conduct {
    padding: 10px;
}

.user-registration {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.user-registration h1 {
    text-align: center;
    color: #333;
}

form {
    display: grid;
    gap: 15px;
}

label {
    font-weight: bold;
    color: #333;
}

input,
select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #196890;
    color: white;
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

button:hover {
    background-color: #2fafd3;
}

#ckreg {
    width: 5%;
}

.slideshow {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.slideshow img.active {
    display: block;
}

.partners {
    background-color: white;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.partner {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
    margin: 10px;
    flex: 1; /* Equal width for both columns */
    /*border:1px solid black;*/
}

.partner img {
    max-width: 60%; /* Adjust the max-width as needed */
    height: auto;
    background-color: white;
    border-radius: 2px;
}

.partner p {
    margin: 10px 0 0;
    color: #333;
    font-weight: bold;
}

.partners h1 {
    color: #333;
}

.job-posting-section {
    margin: 0 10%;
}

.job-posting-section form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.job-list-section{
	padding: 20px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        margin-top: 10px;
    }

    .menu ul {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
    }

    .menu li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 20px;
        color: white;
    }

    .menu ul.show {
        max-height: 200px;
    }

    .overlay-text {
        color: white;
        font-size: 30px;
        font-weight: bold;
        text-shadow: 3px 3px 3px gray;
    }

    .services {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .service-tile {
        width: 80%;
        margin-bottom: 20px;
    }

    .logo {
        text-align: center;
    }

    .logo img {
        max-width: 90%;
        height: auto;
        display: block;
        margin: 2px auto;
    }


    .footer-column {
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr; /* Restore three columns for larger screens */
        grid-gap: 3px;
        text-align: Left;
    }

    .footer-column h2 {
        font-size: 14px;
    }

    .footer-column li{
    	font-size: 13px;
    }
    .all-rights {
        font-size: 14px !important;
    }
    .partner {
        flex-basis: calc(80% - 20px); /* Adjust width for smaller screens */
    }
}
