@font-face {
    font-family: "Vazir";
    src: url("Vazir-Medium.ttf"),
}
/* Basic Reset */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

body {
    font-family: 'Vazir', sans-serif;
    background: linear-gradient(135deg, #ffff, #ffff);
    color: black;
    direction: rtl;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

header {    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f2f2f2;
}

.sign-in a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 100px 50px; */
    direction: rtl;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    direction: rtl;
}
.hero-logo{
    width: 60px;
}
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    margin-left: 40px;
    direction: rtl;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    direction: rtl;
}

.hero-buttons .btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    color: white;
    margin-right: 10px;
    transition: background 0.3s;
    direction: rtl;
}

.hero-buttons .primary {
    background-color: #2b3094;
}

.hero-buttons .primary:hover {
    background-color: #eb4641;
}

.hero-buttons .secondary {
    background-color: transparent;
    border: 1px solid #2b3094;
       color: #2b3094;
}

.hero-buttons .secondary:hover {
    background-color: #2b3094;
        color: #ffffff;
}

.hero-image img {
    max-width: 90%;
    height: auto;
        margin-left: 15px;
        margin-right: 15px;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
   
    .hero-content {
        max-width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        align-items: center;
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
        margin-left: 15px;
        margin-right: 15px;
        
    }

    .hero-content h1 {
        font-size: 36px;
    }
}