:root{
    --primaryColor:#000000;
    --middleColor:#393E46;
    --helperColor:#954C2E;
    --lightHelper:#EAE4D5;
    --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);
    /* padding: 10px 0; */
    text-align: center;
    background-color: var(--white);
    height: 10vh;
    display: flex;
    justify-content: center; 
    align-items: center; 
    text-align: center; 
}

.navbarContact-container {  
    width: 95%;
    margin: 10px auto 10px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ankor tag */
.phone-icon1 {
    font-size: large;
    /* font-weight: bold; */
    text-decoration: none;
    color: var(--primaryColor);
    display: flex;
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    border: 2px solid transparent; /* قم بتعيين حد شفاف */
    border-image: linear-gradient(190deg,var(--lightHelper) 0%,var(--primaryColor) 73%) 1; /* تطبيق التدرج كصورة للحد */
    border-radius: 10px;
    margin:5px;
    padding: 5px;   
    transition: all 0.6s ease-out;
}

/* .phone-icon1 i {
    color: var(--primaryColor);
} */

.phone-icon1:hover{
    transform: scale(1.2);
    border: none;
    background: linear-gradient(190deg,var(--lightHelper) 0%,var(--primaryColor) 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: 10px; 
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.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; 
        /* padding: 15px 0; */
        text-align: center;
    }

    .navbarContact-container {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    /* .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 ; 
        border-radius: 50%;
        width: 15px;
        height: 15px;
    } */

    .phone-icon1 {
        
        justify-content: center;
        width: 70%;
        padding: 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;
    }
}