
.navbar-contact {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    text-align: center;
    display: flex;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-contact.scrolling {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.navbarContact-container {  
    width: 100%;
    display: flex;
    justify-content: center; /* تغيير من space-between إلى center */
    align-items: center;
    background-color: #5DBAF2;
    border-radius: 0 0 30px 30px;
    padding:8px;
}
.container-nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* ضمان الوسطية */
    align-items: center;
}

.phone-icon1 {
    font-size: 22px; /* زيادة من 18px إلى 22px */
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center; 
    justify-content: center;
    padding: 0 10px;
    gap: 5px;
    font-weight: 600; /* إضافة وزن للخط لجعله أبرز */
}


.phone-icon1:hover{
  
    color: var(--primaryColor);
}
/* ============================================================ */
.social-icons{
    width: auto; /* تغيير من 10% إلى auto */
    justify-content: center;
    display: flex;
    margin-left: 20px; /* مسافة من المحتوى الرئيسي */
}
.social-icons a{
text-decoration: none;
padding: 5px;

}
.whatsapp{
   
    justify-content: center; 
    align-items: center;
   padding: 3px; 
    border-radius: 20%;
    width: 20px;
    height: 20px;
}
.facebook{
  
    justify-content: center; 
    align-items: center;
    padding: 3px; 
    border-radius: 20%;
   width: 20px;
    height: 20px;
}
.youtube{
   
    justify-content: center; 
    align-items: center;
    padding: 3px; 
    border-radius: 20%;
  width: 20px;
    height: 20px;
}
.whatsapp:hover{
    background-color: #25D366 ; 
        box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.493);
}

.facebook:hover{
  background-color:#1877F2  ; 
        box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.493);
}
.youtube:hover{
  background-color:#d12215  ; 
        box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.493);
}

.whatsapp .fa-whatsapp{
    color:#ffffff ;
    font-size: 20px;    
}
.facebook .fa-facebook-f{
    color:#ffffff ;
    font-size: 20px;    
}
.youtube .fa-youtube{
    color:#ffffff ;
    font-size: 20px;    
}


.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;
}


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

/* الديسكتوب - إظهار navbar مع scroll behavior */
@media (min-width: 1024px) {
    .navbar-contact {
        display: flex;
    }
    
    .main-header {
        top: 10px !important;
    }
}

/* التابلت والموبايل - إخفاء navbar */
@media (max-width: 1023px) {
    .navbar-contact {
        display: none !important;
    }
    
    .main-header {
        top: 0 !important;
    }
}