



.ac-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ac-container-header{
    width: 100%;
    padding-inline: 5%;
    height: 40vh;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ac-container-header h1{
    font-size: clamp(var(--mediumf));
    font-family: "Noto Sans Arabic", sans-serif;
    font-weight: 600;
    color: var(--text);
    direction: rtl;
    margin-top: 150px;
}
.ac-wave{
    width: 100%;
    position: absolute;
    top: calc(100% - 2px);
    left: 0px;
}

.ac-container-body{
    width: 100%;
    padding-inline: 5%;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 300px;
    padding-bottom: 150px;
    gap: 150px;
}
.contact-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    color: var(--text);
}
.contact-box h2{
    font-size: clamp(var(--bigf));
    font-family: "Noto Sans Arabic", sans-serif;
    font-weight: 600;
    color: var(--text);
}
.contact-box-body{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.contact-box-women , .contact-box-men , .contact-box-gneral{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;

}
.contact-box-women h3 , .contact-box-men h3 , .contact-box-gneral h3{
    font-size: clamp(var(--mediumf));
    font-family: "Noto Sans Arabic", sans-serif;
    font-weight: 600;
    color: var(--text);
    border-bottom: 2px solid var(--accent);
}
.contact-box-women-body , .contact-box-men-body{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.contact-item{
    width: 160px;
    height: 160px;
    border-radius: 10px;
    border: 2px solid var(--text);
    padding: 20px;
    position: relative;
    text-decoration: none;
    color: var(--text);
}
.contact-item svg{
    opacity: 0.8;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70px;
    height: 70px;
}
.contact-item p{
    
}
.telegram{
    font-size: clamp(var(--xxsmallf));
    font-family: "Roboto Mono", monospace;
    font-weight: 600;
    background: linear-gradient(
    45deg,
    #1c92d2,#f2fcfe
  );
  color: var(--background) !important; 
}
.whatsapp{
    font-size: clamp(var(--xxsmallf));
    font-family: "Noto Sans Arabic", sans-serif !important;
    font-weight: 600 !important;
    background: linear-gradient(
    45deg,
    #00E676,#EDF8F5
  );
  color: var(--background) !important; 
}
.instagram{
    font-size: clamp(var(--xxsmallf));
    font-family: "Roboto Mono", monospace;
    font-weight: 600;
    background: linear-gradient(
    45deg,
    #f9ce34,  #ee2a7b ,  #6228d7
  );
  color: var(--background) !important; 
}
.call{
    background-color: var(--successclr);
    
}
.call p{
    color: var(--text) !important;
    font-size: clamp(var(--xsmallf)) !important;
    font-family: "Noto Sans Arabic", sans-serif !important;
    font-weight: 600 !important;
}




.about-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--text);
}
.about-box h2{
    font-size: clamp(var(--bigf));
    font-family: "Noto Sans Arabic", sans-serif;
    font-weight: 600;
    color: var(--text);
}
.about-box-body{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.about-box-body p{
    font-size: clamp(var(--xsmallf));
    font-family: "Noto Sans Arabic", sans-serif;
    font-weight: 300;
    color: var(--text);
    opacity: 0.8;
    direction: rtl;
}

@media (max-width:768px){
    .contact-box-women-body , .contact-box-men-body{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}