/* contact.php */
         body {
            font-family: 'Cairo', sans-serif;
            background-color: #f8f9fa;
        }
        .contact-info i {
            font-size: 1.2rem;
            color: #b83a3aff;
            margin-left: 5px;
        }
        .contact-form {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
        }
        .contact-form:hover {
            transform: translateY(-5px);
            transition: 0.3s;
        }
        .map-container {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
        }
        .social-links a {
            text-decoration: none;
        }

    

    /* about.php */

        .img-box {
    width: 100%;
    height: 200px;          /* ارتفاع ثابت للديسكتوب */
    overflow: hidden;
    border-radius: 1rem;    /* نفس rounded-4 */
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* قص ذكي بدون تشويه */
}

/* موبايل */
@media (max-width: 768px) {
    .img-box {
        height: 150px;
    }
}