/* إعدادات عامة */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
  }
  
  body {
    background-color: #f4f9f8;
    color: #333;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color:rgba(0,0,0,0.05); ;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header h1 {
    color: #2a9d8f;
    font-size: 28px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #2a9d8f;
  }
  
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 50px;
    background-color: yellow;
    flex-wrap: wrap;
  }
  
  .hero-text {
    max-width: 50%;
  }
  
  .hero-text h2 {
    font-size: 42px;
    color: #264653;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .hero-text button {
    background-color: #2a9d8f;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .hero-text button:hover {
    background-color: #21867a;
  }
  
  .hero-img img {
    width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .products {
    padding: 50px;
    background-color: #ffffff;
  }
  
  .products h3 {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .product-item {
    background-color: #f8fdfa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .product-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-info h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .product-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .product-info button {
    background-color: #2a9d8f;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .product-info button:hover {
    background-color: #21867a;
  }
  
  footer {
    background-color: #264653;
    color: #eee;
    text-align: center;
    padding: 25px;
    font-size: 14px;
  }
  
  footer p {
    margin: 5px 0;
  }
  



  .products {
    padding: 80px 50px;
    background-color: #f4f9f8;
  }
  
  .products h3 {
    font-size: 36px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }
  
  .products h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #2a9d8f;
    margin: 20px auto 0;
    border-radius: 2px;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }
  
  .product-item {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
  }
  
  .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  }
  
  .product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .product-item:hover img {
    transform: scale(1.05);
  }
  
  .product-info {
    padding: 25px 20px;
    text-align: center;
  }
  
  .product-info h4 {
    color: #264653;
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .product-info p {
    color: #7a7a7a;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .product-info button {
    background-color: #2a9d8f;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .product-info button:hover {
    background-color: #21867a;
    transform: translateY(-2px);
  }
  
  .product-info button:active {
    transform: scale(0.95);
  }
  




  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #FFD60A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
  }
  
  header h1 {
    font-size: 28px;
    color: #333333;
    font-weight: 700;
  }
  
  header h1 span {
    color: #ffffff;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  nav ul li a:hover {
    background-color: #333333;
    color: #FFD60A;
  }
  
  /* حقل البحث */
  .search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 10px;
  }
  
  .search-container input[type="text"] {
    width: 220px;
    padding: 10px 15px 10px 45px;
    border-radius: 50px;
    border: 2px solid #333333;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .search-container input[type="text"]:focus {
    outline: none;
    border-color: #21867a;
    box-shadow: 0 0 8px rgba(33, 134, 122, 0.3);
  }
  
  .search-container button {
    position: absolute;
    left: 10px;
    background: none;
    border: none;
    color: #333333;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .search-container button:hover {
    color: #21867a;
  }
  
  /* زر اطلب الآن */
  .cta-button {
    background-color: #333333;
    color: #FFD60A;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .cta-button:hover {
    background-color: #FFD60A;
    color: #333333;
    border: 1px solid #333333;
  }
  
  /* استجابة لشاشات الجوال */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      gap: 15px;
      padding: 20px;
    }
  
    nav ul {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .search-container input[type="text"] {
      width: 100%;
    }
  }
  


  
  .products {
    padding: 50px;
    background-color: #333;
  }

  .white{
    color: #f8fdfa;
  }

  footer {
    background-color: #2a9d8f; /* لون خلفية الفوتر الأزرق الأخضر الداكن */
    color: #ffffff; /* النص باللون الأبيض لسهولة القراءة */
    padding: 40px 50px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #FFD60A; /* لون أصفر للشعار/ العنوان */
  }
  
  .footer-info .description,
  .footer-info .partnerships {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #f1f1f1; /* نص باللون الرمادي الفاتح */
  }
  
  .footer-info .partnerships {
    font-weight: bold;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin: 10px 0;
  }
  
  .footer-links ul li a {
    text-decoration: none;
    color: #f1f1f1; /* اللون الرمادي الفاتح للنصوص */
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .footer-links ul li a:hover {
    color: #FFD60A; /* اللون الأصفر عند التمرير فوق الرابط */
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
  }
  
  .footer-bottom p {
    margin: 0;
  }
  .galal{
    color: black ; 
    font-weight: bold;
    font-size: 40px;
  }
  .ad {
    margin-bottom: 15px;
  }

  .se {
    margin-top: 20px;
  }