@font-face {
    font-family: "vazirmatn";
    src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "vazirmatn";
    src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display:swap;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "vazirmatn";
}
body{
    background: white;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.site-header{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 85px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
}
.logo{
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.logo img{
    width: auto;
    display: block;
    height: 60px;
    
}
.nav ul{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}
.nav a{
    text-decoration: none;
    color: blue;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
    transition: 0.3s ease;
    border-radius: 6px;
}
.nav ul li a:hover {
    background-color: rgba(0, 0, 255, 0.973); 
    color: #ffff;
}
.hamburger{
    display: none;
}
.hamburger img{
    width: 40px;
    height: auto;
}
@media (max-width:900px){
    .nav{
        position: fixed;
        top: 85px;
        left: -100%;
        width: 280px;
        height:100dvh;
        background-color: white;
        padding-top: 20px;
        transition: 0.4;
    }
    .nav ul {
        flex-direction: column;
        padding-right: 30px;
        gap: 25px;
    }
    .nav.active{
        left: 0;
    }
    .hamburger{
        display: block;
    }
    .nav a{
        color: blue;
    }
}
.contact-wrapper{
    max-width: 1200px;
    width: 100%;
    background: #ffff;
    border-radius: 32px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
}
.info-section{
    background: rgb(5, 33, 192);
    color: white;
    flex: 1.2;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}
.info-section h1{
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
}
.info-section .sub{
    font-size: 18px;
    opacity: 0.9;
}
.phone-box{
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    padding: 16px 20px;
    border-radius: 60px;
    width: fit-content;
    margin-top: 12px;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.form-section{
    flex: 1.5;
    padding: 48px 40px;
}
.form-section h2{
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 8px;
}
.form-section .greeting{
    color: #5b6e8c;
    margin-bottom: 32px;
    border-right: 3px solid #2b4a8a;
    padding-right: 12px;
}
.input-field{
    margin-bottom: 24px;
}
.input-field label{
    display: block;
    font-weight: 500;
    color: #0f172a;
    font-size: 16px;
}
.input-wrapper{
    display: flex;
    align-items: center;
    border:  1.5px solid #5b6e8c;
    border-radius: 24px;
    background:#fefefe ;
    transition: all 0.2s;
    overflow: hidden;
}
.input-wrapper:focus-within{
    border-color: #2b4a8a;
    box-shadow: 0 0 0 3px rgba(43, 74, 138, 0.2);
}
.input-icon{
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-right: 1px solid #e2e8f0;
    
}
.input-icon img{
    width: 20px;
    height: 20px;
    display: block;
}
.input-wrapper input,
.input-wrapper textarea{
    flex: 1;
    padding: 14px 16px;
    font-size: 16px;
    border: none;
    outline: none;
    resize: vertical;
}
.input-wrapper textarea{
    min-height: 100px;
}
.message-icon{
    margin-bottom: 45px;
}
.submit-btn{
    background: #0521c0;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 16px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}
.submit-btn:hover{
    transform: scale(0.98);
    background: linear-gradient(95deg, #1441d3,#001b94b6);
}
@media(max-width:768px){
    .contact-wrapper{
        flex-direction: column;
    }
    .info-section{
        text-align: center;
        align-items: center;
    }
    .phone-box{
        justify-content: center;
        margin: 0 auto;
    }
    .form-section{
        padding: 32px 24px;
    }
    .info-section h1{
        font-size: 28px;
    }
}
@media(max-width:480px){
    .form-section h2{
        font-size: 24px;
    }
    .phone-box{
        font-size: 16px;
        padding: 12px 16px;
    }
    body{
        padding: 14px;
    }
}
.footer{
    width: 100%;
    background-color: rgb(5, 33, 192);
    border-radius: 30px 30px 0 0;
    margin-top: 30px;
}
.footer-info-flex{
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 50px;
    gap: 20px;
}
.footer-info-flex-details{
    line-height: 2;  
    color: white;
}
.footer-info-flex-details li{
    list-style: none;
}
.footer-info-flex-details h4{
    margin-bottom: 15px;
}
@media (max-width: 768px){
    .footer-info-flex{
        flex-direction: column;
        height: auto;
    }
    .footer{
        margin-bottom: -14px;
    }
}
.footer-icon-png{
    width: 20px;
    height: 20px;
}
.footer-icon{
    display: flex;
    flex-direction: row;
    gap: 6px;
}
.footer-icon li{
    cursor: pointer;
}



