.nurseco-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-family: "Tajawal", sans-serif;
}

.header-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    width: 192.896px;
    height: 98.271px;
}

.cta-button {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15px;
}

.language-switcher .language-select {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 14px;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: border 0.3s;
}

.language-switcher .language-select:hover {
    border-color: #007bff;
}

.visit-btn {
    display: flex;
    width: 155px;
    height: 51px;
    padding: 17px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #121c52;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 100% */
    transition: background 0.3s;
    text-decoration: none;
}

.visit-btn:hover {
    background-color: #24a2dc;
    color: #fff;
    text-decoration: none;
}

.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

.main-nav ul li a {
    color: #121c52;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20.16px; /* 134.4% */
    text-transform: capitalize;
    text-decoration: none;
    transition: ease all 0.3s;
}

.main-nav ul li a:hover {
    color: #24a2dc;
    text-decoration: none;
}

.main-nav ul li a.active {
    color: #24a2dc;
}

.contact-info {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
    color: #001f4b;
    direction: ltr;
}

.contact-info .icon img {
    width: 30px;
    height: 30px;
}

.contact-info .text span {
    display: block;
    color: #7a8a9e;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 21.6px; /* 180% */
}

.contact-info .text strong {
    font-size: 14px;
    color: #001f4b;
}

.language-btn {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius:10px ;
    padding: 5px 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background-color: #24a2dc; /* or any brand color */
    color: #fff;
    border-color: #24a2dc;
}

/* Extra Small Devices (phones, <576px) */
@media (max-width: 575.98px) {
    .header-top,
    .header-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .logo img {
        width: 140px;
        height: auto;
    }

    .visit-btn {
        width: auto;
        padding: 12px 25px;
        font-size: 13px;
    }

    .main-nav ul {
        gap: 15px;
        align-items: center;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }

    .contact-info .icon img {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 575.98px) {
}

/* Small Devices (576px–767.98px) */
@media (min-width: 576px) and (max-width: 950.98px) {
    .header-top,
    .header-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .logo img {
        width: 160px;
        height: auto;
    }

    .main-nav ul {
        gap: 20px;
        align-items: center;
    }

    .visit-btn {
        width: auto;
        padding: 14px 30px;
        font-size: 13px;
    }
}

/* Medium Devices (768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .main-nav ul {
        gap: 20px;
    }

    .visit-btn {
        padding: 15px 30px;
    }

    .logo img {
        width: 170px;
        height: auto;
    }
}

/* Large Devices (992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .main-nav ul {
        gap: 25px;
    }

    .logo img {
        width: 180px;
        height: auto;
    }

    .visit-btn {
        padding: 16px 36px;
    }
}
