.ltr-text {
  direction: ltr !important;
  text-align: left !important;
}

.rtl-text {
  direction: rtl !important;
  text-align: right !important;
}

body {
    margin: 0;
    padding: 0;
    display: flex; 
    flex-direction: column;
    min-height: 100vh;
}

.header-container {
    width: 100%; 
    max-width: 960px; 
    margin: 0 auto; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.blue-bar {
    width: 100%; 
    height: 120px;
    background-color: #0085fe;
    border-radius: 100px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 20px;
    margin: 25px;
}

.logo-box {
    width: 75px; 
    height: 75px; 
    display: flex;
    justify-content: center; 
    align-items: center;
    transition: 0.2s ease-in-out;
}

.logo-box:hover {
    transform: scale(1.0);
    margin-left: 5px;
}

.contact-button {
    background-color: #ffffff;
    color: #0085fe;
    font-family: 'ray';
    font-weight: 800;
    font-size: 24px;
    border: none;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 100px;
    cursor: pointer;
    transition:  0.2s ease-in-out;
}

.contact-button:hover {
    background-color: #bfeeff;
    transform: scale(1.0);
    margin-right: 5px; 
}
.contact-button svg {
    width: 30px;
    height: 30px;
    margin-left: auto;
    vertical-align: middle;
}

.icon-box{
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 20px;
}

.x svg,
.youtube svg,
.instagram svg,
.telegram svg,
.whatsapp svg,
.linkedin svg {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.x,
.youtube,
.instagram,
.telegram,
.whatsapp,
.linkedin {
    color: #ffffff;
    border-radius: 5px;
    padding: 5px;
    transition: 0.1s ease-in-out;
}

.x:hover,
.youtube:hover,
.instagram:hover,
.telegram:hover,
.whatsapp:hover,
.linkedin:hover {
    color: #0085fe;
    background-color: #ffffff;
    transform: scale(1.2);
    border-radius: 5px;
    padding: 5px;  
}

@media (max-width: 768px) { 
    .blue-bar {
        flex-direction: column; 
        height: auto; 
        padding: 20px;
        margin-top: 15px;
        margin-bottom: 15px;
        margin-left: 35px;
        margin-right: 35px;
        border-radius: 25px;
    }
    .logo-box {
       margin-top: 5px;
        margin-bottom: 15px; 
    }
    .contact-button:hover {
        transform: scale(1.05);
        margin-right: 0px;
    }
    .logo-box:hover {
        transform: scale(1.05);
        margin-left: 0px;
    }
    .icon-box {
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .blue-bar {
        margin-left: 15px;
        margin-right: 15px;
    }
    .youtube,
    .instagram,
    .x,
    .telegram,
    .whatsapp,
    .linkedin {
    color: #ffffff;
    border-radius: 5px;
    padding: 5px;
    transition: 0.2s ease-in-out;
     }
    .icon-box{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        margin-bottom: 20px;
    }
    .contact-button {
        font-size: 22px;
        padding: 15px 35px;
    }
}
@media (max-width: 320px) { 
    .header-container {
    width: 100%; 
    max-width: 250px; 
    }
    .contact-button {
        padding: 15px 30px;
    }
    .contact-button svg {
        width: 25px;
        height: 25px;
      }
    .icon-box{
        gap: 5px;
    }
    .x svg,
    .youtube svg,
    .instagram svg,
    .telegram svg,
    .whatsapp svg,
    .linkedin svg {
        width: 30px;
        height: 30px;
    }
}