﻿body {
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    background-color: #f9fafb;
    color: #333;
    line-height: 1.6;
}

section {
    padding: 60px 0;
}

.hero {
    background: linear-gradient(135deg, #4a90e2 0%, #357ABD 100%);
    color: white;
}

.brand-color {
    color: #1e88e5; /* آبی مدرن‌تر */
}


.hero h1 {
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p.lead {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #1d4ed8;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.about p {
    max-width: 700px;
    margin: auto;
    font-size: 1.2rem;
}




.about-img-wrapper {
    height: 80%;
    min-height: 350px;
    max-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.object-fit-cover {
    object-fit: cover;
}






#services .fa {
    margin-bottom: 15px;
    color: #3b82f6;
}

#services h4 {
    margin-bottom: 10px;
    font-weight: 700;
}

.portfolio p {
    font-size: 1.1rem;
    color: #555;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn-outline-dark {
    border: 2px solid #333;
    color: #333;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #333;
    color: white;
}


.img-hover-zoom {
    overflow: hidden;
    border-radius: 0.5rem;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
    will-change: transform;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}







