
.box-right p{
    font-size: 15px;
    color: #828282;
    line-height: 30px;
}
.contact-form .item-soc{
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.soc .social-media{
    background-color: unset ;
}
.contact-form .item-soc i{
    color: white;
    font-size:25px;
}
.box-social-contact h4{
    color: #858585;
    font-size: 19px;
}

.bl{
    border-left: 1px solid;
    margin: 0 10px;
    padding-left: 5px;
}
.imgs{
    width: 48px;
    height: 48px;
}
.imgs svg{
    width: 28px;
}
.content-phon h4{
    font-size: 24px;

}
.content-phon a{
color: #7a7a7a;
font-size: 14px;
text-decoration: none;
}
.contact-form .content-header {
    box-shadow: 0px 0px 29px 0px rgba(104.99999999999999, 130.00000000000003, 141, 0.2);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 16px;
}
.content-phon h3 {
    font-size: 20px;
    color: #3c64aa;
    margin-bottom: 10px;
}
.imgs {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3c64aa;
    border-radius: 50%;
    margin-right: 25px;
    padding: 15px;
}
.ltr{
    direction: rtl !important;
}
.imgs svg { 
fill: white;
}
.youtube{
    background-color: #1ec149;
}
i.fa-solid.fa-phone {
    font-size: 20px;
}
.facebook{
    background-color: #3b5998;
}
.twitter{
    background-color: #1da1f2;
}
input#validationServer01, #validationServer02, #validationServer03 {
    background-image: unset;
    border: 1px solid #dee2e6;
}
.form-label {
    font-size: 14px;
    color: #7A7A7A;
}
form .btn {
    background-color: #3c64aa;
    padding: 8px 25px;
    border-radius: 5px;
}

.flash-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.flash-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.flash-modal-bg-blur {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.flash-modal-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2),
    0 0 80px rgba(0, 255, 255, 0.2);
    animation: fadeInScale 0.6s ease forwards;
    width: 350px;
    color: #fff;
}

.flash-modal.success .flash-modal-content {
    border: 2px solid #00ffb3;
    box-shadow: 0 0 20px #00ffb360, 0 0 60px #00ffc260;
}

.flash-modal.error .flash-modal-content {
    border: 2px solid #ff4d6d;
    box-shadow: 0 0 20px #ff4d6d60, 0 0 60px #ff4d6d80;
}

.animated-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.checkmark-svg {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

.checkmark-circle {
    stroke: #00ffb360;
    stroke-width: 4;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: draw-circle 0.6s ease forwards;
}

.checkmark-check {
    stroke: #00ffb3;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: draw-check 0.6s 0.4s ease forwards;
}

@keyframes draw-circle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}