/* === GENERAL NAVBAR STYLES === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px; /* increased height */
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
  }
  
  .logo img {
    height: 65px; /* bigger logo */
  }
  
  /* === MENU STYLING === */
  .menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    margin: 0 20px;
  }
  
  .menu li {
    margin: 0 15px;
  }
  
  .menu li a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .menu li a:hover {
    color: #4caf50;
  }
  
  /* === LANGUAGE BUTTON + TOGGLE === */
  .nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .lang-toggle {
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .menu-toggle {
    display: none;
    font-size: 36px;
    cursor: pointer;
    color: #333;
  }
  
  /* === MOBILE STYLING === */
  @media (max-width: 767px) {
    .navbar {
      height: 75px; /* increase mobile navbar height */
      padding: 0 15px;
    }
  
    .logo img {
      height: 60px;
    }
  
    .lang-toggle {
      font-size: 18px;
      padding: 8px 18px;
    }
  
    .menu-toggle {
      display: block;
      font-size: 36px; /* bigger icon */
    }
  
    .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100px; /* match new navbar height */
      left: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 8px 15px rgba(0,0,0,0.1);
      padding: 15px 0;
      z-index: 999;
    }
  
    .menu.open {
      display: flex;
    }
  
    .menu li {
      text-align: center;
      margin: 10px 0;
    }
  
    .menu li a {
      font-size: 20px;
      padding: 12px;
    }
  }


  #products {
    background: #f9fafb;
    padding: 80px 20px;
  }
  
  #products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 50px;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .product-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  }
  
  .product-card img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
  }
  
  .product-card:hover img {
    transform: scale(1.05);
  }
  
  .product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
  }
  
  .product-card p {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 4px 0;
  }
  
  .order-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .order-btn:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: translateY(-2px);
  }
  
  .en, .ar {
    display: block;
  }
  
  .view-all {
    margin-top: 60px;
    text-align: center;
  }

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f6fa;
    color: #333;
    margin-top: 40px;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  section {
    padding: 70px 20px;
    scroll-margin-top: 90px;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
  }
  
  section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0a3d62;
  }
  
  /* SLIDER */
  .slider {
    position: relative;
    height: 60vh;
    min-height: 300px;
    max-height: 600px;
    overflow: hidden;
    border-radius: 15px;
    background: #dfe6e9;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slider-prev,
  .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 2.5em;
    padding: 0 12px;
    transition: color 0.3s;
    z-index: 10;
  }
  
  .slider-prev:hover,
  .slider-next:hover {
    color: #74b9ff;
  }
  
  .slider-prev {
    left: 10px;
  }
  
  .slider-next {
    right: 10px;
  }
  


  
  
  /* FOOTER */
  .footer {
    background-color: #0a3d62;
    color: #ffffff;
    padding: 40px 20px 25px;
    text-align: center;
    margin-top: 80px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .footer-links a {
    color: #dfe6e9;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #74b9ff;
  }
  
  .footer-links i {
    margin-inline-end: 6px;
  }
  
  .footer-social a {
    color: #dfe6e9;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
  }
  
  .footer-social a:hover {
    color: #00a8ff;
  }
  
  .footer-copy {
    margin-top: 20px;
    font-size: 13px;
    color: #b2bec3;
  }
  
  /* LANGUAGE SUPPORT */
  body.arabic {
    direction: rtl;
  }
  
  body.arabic .en {
    display: none;
  }
  
  body:not(.arabic) .ar {
    display: none;
  }
  
  /* RESPONSIVE MAP HEIGHT */
  @media (min-width: 768px) {
    .map iframe {
      height: 400px;
    }
  }
  