/* General Section Styling */
.map-section {
    margin-top: 120px;
    background-color: #f9f9f9;
    padding-top: 40px;
    
    direction: rtl; /* Support for Arabic text */
    text-align: center;
  }
  
  .container {
    
    margin: 0 auto;
  }
  
  /* Header Section */
  .header .logo {
    width: 100px;
    margin: 0 auto 15px;
  }
  
  .header .description {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 20px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    font-size: 1.2rem;
    color: #fca038;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #ff7f00;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    color: #777;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color: #fca038;
  }
  
  /* Map Content */
  .map-content {
    margin-top: 40px;
    display: flex;
    align-items: center;
    
  }
  
  .section-title {
    font-size: 1.8rem;
    color: #fca038;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .map-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
  }
  
  .map-image {
    max-width: 100%;
    border-radius: 10px;
  }
  
  .legend {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .legend-item {
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 15px;
    color: #333;
    display: flex;
    
  }
  
  .office {
    border-radius: 50%;
    width: 17px;
    height: 17px;
    margin-left: 10px;
    background-color: #ffc107;
    
  }
  
  .active1 {
    border-radius: 50%;
    width: 17px;
    height: 17px;
    margin-left: 10px;
    background-color: #17a2b8;
  }
  
  .linked {
    border-radius: 50%;
    width: 17px;
    height: 17px;
    margin-left: 10px;
    background-color: #6f42c1;
  }
  
  /* Regions Section */
  .regions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
  }
  
  .regions button {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .regions button:hover {
    background-color: #fca038;
    color: #fff;
  }
  
  .regions-description {
    font-size: 1rem;
    color: #777;
  }
  .ssmap{
    margin-right: 140px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .copyright{
    border-top: #b4b4b4 1px solid;
    padding-top: 10px;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    color: #7a7a7a;
  }

  @media screen and (max-width: 1024px) {
    .map-image {
      max-width: 80%;
      border-radius: 10px;
    }
    .map-content {
      margin-top: 40px;
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      justify-content: center;
    
      
    }
    .ssmap{
      margin-right: 0px;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: start;
    }
    
  }
  
  @media screen and (max-width: 768px) {
    .map-content {
      margin-top: 40px;
      display: flex;
      align-items: center;
      
    }
  }
  
  @media screen and (max-width: 480px) {
    .copyright{
      font-size: 11px;
    }
    .regions {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 20px 0;
    }
      
  .regions button {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 0.8rem;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .section-title {
    font-size: 1.4rem;
    color: #fca038;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  
  }