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

body {
    font-family: "Calibri", sans-serif;
    background-color: #f5f5f5;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-header {
    background-color: #0617399d;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.email-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.email,
.phone {
    display: flex;
    align-items: center;
    gap: 5px;
}

.socialMedia {
    display: flex;
    align-items: center;
    gap: 10px;
}
.socialMedia a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 5px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

/* Background colors for each platform */
.socialMedia a:nth-child(2) {
    background-color: #3b5998; /* Facebook */
}

.socialMedia a:nth-child(3) {
    background-color: #0e76a8; /* LinkedIn */
}

.socialMedia a:nth-child(4) {
    background-color: #e4405f; /* Instagram */
}

.socialMedia a:nth-child(5) {
    background-color: #1da1f2; /* Twitter */
}

.bottom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    flex-wrap: wrap;
}

.header-logo img {
    height: 65px;
    width: 65px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #003366;
}

.header-content {
    display: block;
}

.header-content ul {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-content ul li {
    position: relative;
    cursor: pointer;
    padding: 8px 12px;
    transition: background 0.3s;
}

.header-content ul li:hover {
    background-color: #f0f0f0;
    border-radius: 4px;
}

.header-content ul li ul.dropdown {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex-direction: column;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.header-content ul li:hover ul.dropdown {
    display: flex;
    gap: 2px;
}

.header-content ul li ul.dropdown li {
    padding: 10px;
    white-space: nowrap;
}

.login-btn {
    background-color: #0639319d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background-color: #0055aa;
}
a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

@media (max-width: 1323px) {
    .menu-toggle {
        display: block;
    }

    .header-content {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        width: 100%;
        height: auto;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .header-content.active {
        transform: translateX(0);
    }

    .header-content ul {
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
    }

    .header-content ul li {
        padding: 10px 20px;
    }

    .header-content ul li ul.dropdown {
        position: static;
        box-shadow: none;
        border: none;
        margin-top: 5px;
    }

    .menu-toggle.active i {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }
}
