:root {
    --primaryColor: #212223;
    --middleColor: #323234;
    --helperColor: #FED300;
    --lightHelper: #FFF2B2;
    --hrColor: rgb(222, 184, 135);
    --transparentColor: rgba(0, 0, 0, 0.699);
    --shadow: rgba(189, 188, 188, 0.514);
    /* --------------------------------- */
    --whatsappColor: #25D366;
    --white: #ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray: #f8f8f8;
}

.navbar-contact {
    color: var(--primaryColor);
    text-align: center;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.navbarContact-container {
    width: 97%;
    margin: 8px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ankor tag */
.phone-icon1 {
    font-size: large;
    text-decoration: none;
    color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 2px solid transparent;
    /* قم بتعيين حد شفاف */
    border-image: linear-gradient(190deg, #FFFFFF0D 0%, #04154C 73%) 1;
    /* تطبيق التدرج كصورة للحد */
    border-radius: 10px;
    padding: 5px;
    transition: all 0.6s ease-out;
    gap: 8px;
}

/* .phone-icon1 i {
    color: var(--primaryColor);
} */

.phone-icon1:hover {
    transform: scale(1.2);
    border: none;
    background: linear-gradient(190deg, #FFFFFF0D 0%, #04154C 73%);
    color: var(--white);
}

/* ============================================================ */
.social-icons a {
    text-decoration: none;
    margin-right: 10px;

}

/* span that contain whats app icon */
.whatsapp {
    display: inline-flex;
    justify-content: center;
    box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.493);
    align-items: center;
    background-color: #25D366;
    padding: 8px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
}

.whatsapp .fa-whatsapp {
    color: #ffffff;
    font-size: 25px;
}

.facebook {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #1877F2;
    padding: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.493);

}

.facebook .fa-facebook {
    color: #fff;
    font-size: 25px;
}

.instagram {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.493);

}

.instagram .fa-instagram {
    color: #fff;
    font-size: 25px;
}


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 760px) {

    .navbar-contact {
        height: auto;
        text-align: center;
    }

    .navbarContact-container {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .phone-icon1 {
        width: 35%;
        gap: 8px;
        background-color: var(--primaryColor);
        border: none;
        border-radius: 10px;
        color: var(--white);
    }
}

/* @media (max-width: 320px) {
    .phone-icon1 {
      font-size: 14px;
    }

    .whatsapp{
        display: inline-flex;
        justify-content: center; 
        box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.493);
        align-items: center;
        background-color: #25D366 ; 
        padding: 10px 5px; 
        border-radius: 50%;
        width: 5px;
        height: 5px;
    }
  
    .facebook .fa-facebook,
    .whatsapp .fa-whatsapp {
      font-size: 15px;
    }
} */