* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: #f9f9f9;
    color: #333;
  }
/* Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background: url('../img/factory/1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 3rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
  }
  
  .hero-content p {
    color: #fff;
    font-size: 1.2rem;
  }
  .contact-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 40px; /* Space between form and info */
    padding-top: 40px;
    background-color: #f9f9f9;
  }
  /* Contact Form Section */
  .contact-form {
    flex: 1 1 45%;
    max-width: 45%;
    background-color: #f9f9f9;    
  }
  
  .contact-form .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 5px;
    font-size: 1rem;
  }
  
  .contact-form input, .contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-form button {
    padding: 10px 20px;
    background-color: #0b175f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #1a2a80;
  }
  .contact-info {
    background-color: #f9f9f9; /* Light gray background */
    font-family: 'Cairo', sans-serif;
    direction: rtl; /* RTL layout */
    flex: 1 1 45%;
    max-width: 45%;
  }
  
  /* Container to align text properly */
  .contact-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Heading styling */
  .contact-info h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* Paragraphs for contact details */
  .contact-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
  }
  
  /* Social icons container */


  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  .contact-info .social-icons{
    background-color: #c0c0c0;
    padding: 20px;
    border-radius: 40px;
  }
  /* Individual social icon link styling */
  .social-icons a {
    font-size: 24px;
    color: #007bff;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }
  
  /* Hover effect for social icons */
  .social-icons a:hover {
    color: #0056b3;
    transform: scale(1.1); /* Slight scale up effect */
  }
  
  /* Responsive styles for mobile */
  @media (max-width: 768px) {
    .contact-info h2 {
      font-size: 28px;
    }
  
    .contact-info p {
      font-size: 16px;
    }
  
    .social-icons {
      gap: 15px;
    }
  
    .social-icons a {
        font-size: 32px; /* Increased size from 24px */
        color: #007bff;
        transition: color 0.3s ease, transform 0.3s ease;
        display: inline-block;
      }
  }
  @media (max-width: 768px) {
    .contact-info,
    .contact-form {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
  /* Map Section */
  .map {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .map iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
  }



/* General form styling */
.fs-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Cairo', sans-serif;
    direction: rtl; /* Assuming RTL layout */
  }
  
  /* Form field labels */
  .fs-label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
  }
  
  /* Form field input */
  .fs-input,
  .fs-textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    color: #333;
    transition: border-color 0.3s ease;
  }
  
  .fs-input:focus,
  .fs-textarea:focus {
    border-color: #007bff; /* Highlight color on focus */
    outline: none;
  }
  
  /* Textarea specific styles */
  .fs-textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  /* Submit button styling */
  .fs-button {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
  }
  
  .fs-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
  }
  
  /* Button group */
  .fs-button-group {
    text-align: center;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .fs-form {
      margin: 20px;
      padding: 15px;
    }
  }
  