@font-face {
    font-family: "IRANYekan";
    src: url("./IRANYekanXFaNum-Medium.woff") format("woff");
    font-weight: 500;
}

@font-face {
    font-family: "IRANYekanBold";
    src: url("./IRANYekanXFaNum-Bold.woff") format("woff");
    font-weight: 800;
}

body {
    font-family: "IRANYekan", sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #1a1a1a;
}

.header {
    text-align: center;
    padding: 130px 20px 20px;
}

.title {
    font-family: "IRANYekanBold";
    font-size: 1.8rem;
    margin: 20px 0 10px;
    font-weight: 800 !important;
}

.subtitle {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
}

.products {
    margin: 0px auto;
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    text-align: center;
    width: 298px;
    min-width: 298px;
    max-width: 298px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.card-container {
    width: 100%;
    border: solid 1px #E4E7EC;
    border-radius: 20px;
    max-width: 200px;
    padding: 20px 10px;
    margin: 20px;
    text-decoration: none;
}


.card-logo {
    margin-bottom: 15px;
}

.card-title {
    font-family: "IRANYekanBold";
    font-size: 20px;
    margin: 10px 0 5px;
    font-weight: 400;
}

.card-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

.card-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e63f8;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

.btn:hover {
    background: #0e4ed3;
}

.footer {
    position: absolute;
    bottom: 0px;
    padding: 35px 45px;
    color: #444;
    width: 90%;
}

@media (max-width : 767px) {
    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

}

@media (max-width : 632px) {
    .footer {
        position: relative;
    }
}

@media (max-height : 850px) {
    .footer {
        position: relative;
    }
}