
body {
    background-color: #f8f9fa;
    color: #000;
    font-family: 'Segoe UI', Arial, sans-serif; 
    margin: 0;
}
.contact-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact {
    background-color: #fff;
    padding: 45px; 
    border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
    max-width: 550px; 
    width: 90%; 
    margin: 40px auto; 
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

h2 {
    margin-bottom: 30px;
    font-weight: 700;
    color: #198754;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.1); /* تأثير ناعم عند التركيز */
    outline: none;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
#contactForm {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.btn-success {
    background-color: #198754;
    border: none;
    border-radius: 10px;
    padding: 12px 50px; 
    width: fit-content; 
    margin: 10px auto 0 auto !important; 
    display: flex; 
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #146c43;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
}
.footer {
    background-color: #198754;
    padding: 40px 0;
    width: 100%;
    margin-top: 50px;
}

.footer a {
    font-size: 22px;
    transition: 0.3s;
    display: inline-block;
}

.footer a:hover {
    color: #d4edda;
    transform: scale(1.1);
}
.mb-3 {
    margin-bottom: 1.5rem !important;
}
/* ================= Mobile Responsive ================= */

@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }
    
    .nav-link {
        margin: 5px 0;
    }

    .search-box form {
        width: 100% !important; 
        justify-content: center;
    }

    .hero-title {
        font-size: 35px; 
        text-align: center;
    }

    .hero-text {
        font-size: 20px;
        text-align: center;
    }

    .hero-section {
        padding-top: 50px;
        text-align: center;
    }

    .btn-success {
        display: block;
        margin: 20px auto !important; 
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 18px;
    }

    .contact-card {
        padding: 20px; 
    }

    .btn {
        margin-left: 0 !important; 
        width: 100%; 
    }
}