.contact-box {
    width: 80%;
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333333;
}
.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.contact-box input:focus,
.contact-box textarea:focus {
    border-color: dimgray;
    outline: none;
}
.contact-box textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-box button {
    width: 100%;
    padding: 12px;
    background-color: #25D366;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact-box button:hover {
    background-color: #1EBE5D;
}
.contact-box button:active {
    transform: scale(1);
}
@media (max-width: 768px) {
    .contact-box {
        width: 90%;
        padding: 20px;
    }
}
.image {
    background-image: url('Pic2.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: white;
}
.whatsapp-container {
    margin-top: 20px;
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.whatsapp-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.whatsapp-btn:hover {
    background: #1EBE5D;
}
[dir="rtl"] .whatsapp-btn img {
    margin-left: 10px;
    margin-right: 0;
}
/* ✅ Fix for all input fields in RTL mode */
[dir="rtl"] input,
[dir="rtl"] textarea {
    text-align: right !important;
}