/* صفحه خدمات */
nav {
    flex: 2;
    text-align: center;
    margin: 0 0 0 21.2rem;
    
}
.service-intro {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0b2282, #1e3a8a);
    color: white;
    margin-top: 80px;
}

.service-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.service-intro p {
    font-size: 1.2rem;
    color: #e0e7ff;
}

.service-content {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.9;
    text-align: justify;
    color: #333;
    font-size: 1.1rem;
}

.service-content ul {
    list-style: none;
    padding-right: 20px;
    margin: 20px 0;
}

.service-content li {
    position: relative;
    padding-right: 25px;
    margin: 10px 0;
}

.service-content li::before {
    content: "•";
    color: #e26413;
    font-weight: bold;
    position: absolute;
    right: 0;
    width: 20px;
    text-align: center;
}

.service-content p {
    margin: 20px 0;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #1f2937;
    color: #d1d5db;
    margin-top: 80px;
}

.footer-bottom {
    font-size: 0.9rem;
}
footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px; 
    color: white;
    text-align: right;

}

.footer-column p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;

}

.footer-links li {
    margin-bottom: 10px;
    
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
}

.footer-links a:hover {
    color: #9ca3af;
}

.contact-info-footer {
    list-style: none;
}

.contact-info-footer li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #d1d5db;
}

.contact-info-footer i {
    margin-left: 10px;
    color: #9ca3af;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #374151;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #4b5563;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.9rem;
}

