@font-face {
    font-family: "Vazir";
    src: url("https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font/dist/Vazir.ttf");
}

body {
    margin: 0;
    padding: 0;
    font-family: "Vazir", sans-serif;
    direction: rtl;
    background: #f5f5f5;
}

.hero {
    position: relative;
    background-image: url("https://parspng.com/wp-content/uploads/2022/01/345.png");
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    top: 0;
    left: 0;
}

.title {
    font-size: 48px;
    z-index: 2;
}

.subtitle {
    font-size: 22px;
    z-index: 2;
}

.about-box, .contact-box {
    background: white;
    width: 70%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h2 {
    margin-top: 0;
}
