:root{
  --primaryColor:black;
  --middleColor:#444444;
  --helperColor:#ce000c;
  --lightHelper:#FDFBEE;
  --hrColor:rgb(222, 184, 135);
  --transparentColor:#00d0848f;
  --shadow:rgba(189, 188, 188, 0.514);
  --text-header: #b1b1b1;
 /* --------------------------------- */
  --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;
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 20px; 
}

/* ankor tag */
.phone-icon1 {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f3f3f3;
  padding: 8px 15px;
  border-radius: 30px;
  color: #000;
  
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.phone-icon1 i {
  font-size: 20px;
  color: var(--blue);
}

.phone-icon1 .phone-text {
  direction: ltr;
  unicode-bidi: embed;
}



.phone-icon1:hover i {
  color: #fff;
}

/* ============================================================ */
.social-icons a{
text-decoration: none;
margin-right: 10px;

}
/* span that contain whats app icon */
.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #e8f5e9;
  padding: 8px 15px;
  border-radius: 30px;
  color: #000;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-link i {
  font-size: 20px;
  color: #25d366;
}

.whatsapp-number {
  direction: ltr;
  unicode-bidi: embed;
}

.whatsapp-link:hover {
  background-color: #25d366;
  color: #fff;
}

.whatsapp-link:hover i {
  color: #fff;
}


.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;
    }
}

@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;
    }
}