/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #161D6F;
    color: white;
}

.logo img {
    height: 40px;
}

.language-signin a {
    text-decoration: none;
    color: #009688;
    margin-left: 15px;
}

.signin-btn {
    color: white;
    background-color: #0B2F9F;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: linear-gradient(to bottom, #0B2F9F, #161D6F);
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    animation: slide-in 1.5s ease-out forwards;
}

@keyframes slide-in {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.hero .overlay {
    background: rgba(22, 29, 111, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.search-bar {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar input {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-bar button {
    padding: 10px 15px;
    background-color: #009688;
    border: none;
    color: #161D6F;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* Tiles Section */
.tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #009688;
}

.tile {
    text-align: center;
    padding: 20px;
    margin: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 25%;
    transition: transform 0.3s, border-color 0.3s;
    border: 2px solid #009688;
}

.tile:hover {
    transform: translateY(-5px);
    border-color: #0B2F9F;
}

.tile img {
    height: 50px;
    margin-bottom: 10px;
}

.tile h3 {
    margin-bottom: 10px;
    color: #161D6F;
}

.tile p {
    color: #0B2F9F;
}

/* Footer Section */
.contact-section {
    background: #161D6F;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer-content h2 {
    margin-bottom: 20px;
}

.contact-details p {
    margin: 10px 0;
    font-size: 16px;
}

.footer-logos {
    margin: 20px 0;
}

.social-icon {
    height: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-credits {
    margin-top: 20px;
    font-size: 14px;
    color: #009688;
}
.social-icon{
    background-color: white;
}
