 .form-container {
   background: #fff;
   padding: 40px;
   border-radius: 16px;
   max-width: 500px;
   width: 100%;
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
 }

 .form-header {
   text-align: center;
   margin-bottom: 20px;
 }

 .form-header img {
   width: 50px;
   height: 50px;
   border-radius: 50%;
 }

 .form-header h2 {
   color: #4b0082;
   font-size: 26px;
   margin-top: 15px;
 }

 label {
   display: block;
   font-weight: 500;
   margin-bottom: 6px;
   color: #333;
   font-size: 13px;
 }

 input,
 textarea {
   width: 100%;
   padding: 12px;
   margin-bottom: 20px;
   border: 1px solid #ccc;
   border-radius: 8px;
   font-size: 14px;
   outline: none;
   transition: 0.2s;
 }

 input:focus,
 textarea:focus {
   border-color: #5A66D0;
   box-shadow: 0 0 0 2px rgba(90, 102, 208, 0.2);
 }

 textarea {
   resize: none;
   height: 100px;
 }

 .clear-btn {
   font-size: 13px;
   font-weight: 400;
   color: #4b0082;
   cursor: pointer;
   background: none;
   border: none;
   margin: 0px 20px;
 }

 .submit-btn {
   background: linear-gradient(90deg, #5A66D0, #7a2cbf);
   border: none;
   color: #fff;
   font-size: 13px;
   font-weight: 400;
   padding: 12px 20px;
   border-radius: 8px;
   cursor: pointer;
   transition: 0.3s;
 }

 .submit-btn:hover {
   opacity: 0.9;
 }

 .status-dot {
   height: 10px;
   width: 10px;
   background: #00c853;
   border-radius: 50%;
   display: inline-block;
 }

 .contactContainer {
   background: #FFFFFF;
   border-radius: 20px;
   padding: 30px;
   margin-top: 40px;
   z-index: 1000;
 }

 .form-footer {
   padding-top: 20px;
   display: flex;
   float: right;
   align-items: center;
   margin-top: 10px;
 }
.form-footer:dir(rtl){
   float: left;
}
.contact h2:dir(rtl) {
  left: unset;
  right: 9px !important;
}
.contactus .cards p:dir(rtl){
  margin-left: unset;
  margin-right: 10px;
}

 .border-top {
   border-top: 1px solid #eee;
 }

 .success-message {
   display: none;
   text-align: center;
   padding: 30px;
 }

 .success-message h3 {
   color: #4b0082;
   margin-bottom: 10px;
 }

 .success-message p {
   color: #333;
 }

 @media (max-width: 768px) {
   .form-footer {
     display: block;
     text-align: center;

     .submit-btn {
       margin-top: 5px;
     }
   }
 }