body{
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #333;
    color: #007BFF;
}

.links a {
    color: white;
    text-decoration: none;
    margin: 0 3rem;
}

.icons a {
    color: white;
    text-decoration: none;
    margin-left: 3rem;
}

.icons i {
    font-size: 1.5rem;
}

.header {
    text-align: baseline;
    padding: 2rem;
    backdrop-filter: blur(5px);
    height: 100vh;
    background: url('./Images/istockphoto-1481370371-612x612.jpg') no-repeat center center/cover;
}

.header h1 {
    font-size: 150px;
    margin-top: 20rem;
    margin-left: 30rem;
    color: white;
}

.image-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
    padding-bottom: 10rem;
    padding-top: 5rem;
    height: 800px;
    width: auto;
    background-color: #333;
    margin: 4rem;
    color: white;
    font: 50px Arial, sans-serif;
}
.image-card img {
    width: 450px;
    height: 450px;
    border-radius: 10px;
}

text {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    min-height: 350px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

button {
    padding: 1rem 2rem;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.arrowleft, .arrowright {
    padding: 1rem 2rem;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    height: 100px;
    width: 100px;
    margin-right: 5rem;
    margin-left: 5rem;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer .social-icons a {
    color: #007BFF;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.5rem;
}

footer p {
    margin: 0.5rem 0;
    font: 100% Arial, sans-serif;
    font-size: 1rem;
}

.dark-mode {
    background-color: #121212;
    color: white;
}
.dark-mode nav,
.dark-mode .image-card,
.dark-mode footer {
    background-color: #222 !important;
    color: white !important;
}
.dark-mode .links a,
.dark-mode .icons a,
.dark-mode .icons i,
.dark-mode footer .social-icons a {
    color: #90caf9 !important;
}
.contact-form {
    background-color: #222;
    padding: 2.5rem 5rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 6rem auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form h2 {
    text-align: center;
    color: white;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-form label {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
    align-self: center;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 1rem 1.5rem;
    border: 1px solid #444;
    border-radius: 8px;
    background: #333;
    color: white;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.2s, background 0.2s;
    margin: 0.5rem 0;
    width: 80%;
    display: block;
    text-align: center;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007BFF;
    background: #222;
}

.contact-form button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.15rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
    align-self: center;
    width: 60%;
    text-align: center;
}

.contact-form button:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 16px rgba(0,123,255,0.15);
}

.contact-form .form-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    color: #bbb;
}

.contact-form .form-footer a {
    color: #90caf9;
    text-decoration: underline;
    margin-left: 0.5rem;
    transition: color 0.2s;
}

.contact-form .form-footer a:hover {
    color: #007BFF;
}

.universities{
    text-align: center;
    padding: 2rem;
    height: 100%;
    overflow: auto;
}

/* width */
.universities::-webkit-scrollbar {
  width: 20px;
}

/* Track */
.universities::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.universities::-webkit-scrollbar-thumb {
  background: #007BFF;
  border-radius: 10px;
}

a{
    text-decoration: none;
    color: #007BFF;
}

br{
    margin-bottom: 1rem;
    color: white;
}