@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Oswald&family=Poppins:wght@300;600&family=Roboto+Slab&family=Roboto:wght@400;500;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to left, rgba(1, 11, 75, 0.4), rgba(5, 1, 66, 0.2)), url('../Images/NormalBg.jpeg');
    background-size: cover;
    font-family: "Poppins";
    margin: 0;
    padding: 0;
}
.logo img {
    margin: 0;
    padding: 0;
    align-items: center;
    width: 50px;
    height: 50px;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    background-color: darkblue;
    color: #fff;
    padding: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.header h1 {
    margin: 0;
    font-size: 24px;
}

.content {
    padding: 20px;
}

.new {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.content :hover {
    box-shadow: 0 10px 10px gray;
    transition: 0.4s ease-in-out;

}

.service-item strong {
    color: darkblue;
    font-size: 18px;
}

.service-item p {
    color: #333;
    font-size: 16px;
}


nav {
    padding: 30px;
    width: 100%;
    height: 100px;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    font-size: 2rem;
    letter-spacing: 2px;
    font-family: inherit;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    position: relative;
}

.menu a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-bottom: 2px solid darkblue;
    transition: 0.4s linear;
}

.menu a:hover:before {
    width: 90%;
}

.contact-us {
    background-color: darkblue;
    color: white;
}

.Register a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    background: darkblue;
    border-radius: 10px;
}

.Register a:hover {
    color: darkblue;
    background: white;
    transition: 0.4s linear;
}

header {
    background: darkblue;
    color: #fff;
    padding: 20px;
    text-align: center;
}

section {
    background: lightblue;
    color: #333;
    padding: 40px 20px;
    text-align: center;
}

h2 {
    color: #333;
}

p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

li {
    display: inline-block;
    margin: 0 15px;
    transition: transform 0.3s ease-in-out;
}

li:hover {
    transform: scale(1.2);
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

footer {
    background: darkblue;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}