body {
    font-family: IRANYekanX, sans-serif;
    background: #6badda;
    color: #1f2937;
}

.section {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(220, 220, 220, 0.5));
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero {
    background: linear-gradient(to top, rgba(107, 173, 218, 1), rgba(107, 173, 218, 0)), url('/images/hero_bg.jpg') no-repeat center center;
    background-size: cover;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero > div {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    transform: translateY(50%); /* جابه‌جایی به سمت پایین برای قرار گرفتن در 75% */
}

.nav-item:hover {
    background-color: #3b82f6;
    color: white;
    transition: all 0.3s ease;
}

.portfolio-item img {
    width: 100%;
    aspect-ratio: 1/1; /* نسبت ابعاد 1:1 برای ایجاد مربع */
    object-fit: cover; /* تصویر به‌صورت کامل در مربع جا می‌شود */
    border-radius: 0.5rem; /* حفظ گوشه‌های گرد */
}
.text-lg {
    line-height: 2.5rem;
}