      
      .solar-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
      }
  
      .solar-box {
        background: #ffffff;
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
      }
  
      .solar-box:hover {
        transform: translateY(-5px);
      }
  
      .solar-image {
        width: 100%;
        height: 180px;
        background: #eaeaea;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 10px;
      }
  
      .solar-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      .solar-title {
        font-size: 18px;
        margin: 10px 0;
        color: #222;
      }
  
      .solar-desc {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
      }
  
      .solar-specs {
        padding: 0;
        margin: 0 0 10px 0;
        list-style: none;
      }
  
      .solar-specs li {
        font-size: 14px;
        color: #333;
        margin-bottom: 5px;
      }
  
      .solar-price {
        font-weight: bold;
        color: #0a7c3a;
        margin-bottom: 12px;
      }
  
      .solar-btn {
        display: block;
        text-align: center;
        background: #ff9800;
        color: #fff;
        padding: 10px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
      }
  
      .solar.-btn:hover {
        background: #e68900;
      }
    :root {
      --main: #f9b233;
      --dark: #1e1e1e;
      --light: #f5f5f5;
      --blue: #0088cc;
      --green: #25D366;
      --red: #e53935;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Cairo', sans-serif; }
    body { background: var(--light); color: var(--dark); line-height: 1.9; }

    header { background: linear-gradient(to left, #f9b233, #ffd36a); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; animation: slideDown 1s ease; }
    header h1 { font-size: 26px; font-weight: 700; }
    .menu-btn { display: none; font-size: 28px; cursor: pointer; }
    nav { display: flex; gap: 18px; }
    nav a { text-decoration: none; font-weight: 600; color: #000; }

    .hero { padding: 100px 20px; text-align: center; background: linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)), url('../png/images\ \(11\).jpeg') center/cover; color: white; animation: fadeIn 2s ease; }
    .hero h2 { font-size: 42px; margin-bottom: 15px; }

    section { padding: 70px 20px; max-width: 1200px; margin: auto; }
    h2 { text-align: center; margin-bottom: 40px; }

    .cards, .plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
    .card, .plan { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.12); text-align: center; transition: .4s; animation: fadeUp 1.2s ease; }
    .card:hover, .plan:hover { transform: translateY(-10px); }
    .plan.popular { border: 4px solid var(--main); }
    .plan h3 { font-size: 22px; margin-bottom: 10px; }
    .old-price { color: var(--red); text-decoration: line-through; font-size: 18px; }
    .price { font-size: 30px; font-weight: bold; color: var(--main); margin: 10px 0; }
    .plan ul { list-style: none; margin: 20px 0; }
    .plan ul li { margin: 8px 0; }
    .btn { display: inline-block; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: bold; margin-top: 15px; color: white; }
    .order { background: var(--main); color: #000; }
    .telegram { background: var(--blue); }
    .whatsapp { background: var(--green); }
    .call { background: #000; }
    .contact-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
    .faq { background: white; margin: 15px 0; border-radius: 14px; padding: 18px; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .faq p { display: none; margin-top: 10px; }
    .about, .info { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); margin-bottom: 40px; }
    .info h3 { color: var(--main); margin-bottom: 15px; }
    footer { background: var(--dark); color: white; text-align: center; padding: 25px; }
    .whatsapp-float { position: fixed; bottom: 20px; left: 20px; background: var(--green); color: white; font-size: 26px; padding: 15px 18px; border-radius: 50%; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,.3); animation: pulse 2s infinite; z-index: 2000; }

    @keyframes fadeIn { from {opacity:0} to {opacity:1} }
    @keyframes fadeUp { from {opacity:0; transform:translateY(40px)} to {opacity:1; transform:none} }
    @keyframes slideDown { from {transform:translateY(-100%)} to {transform:none} }
    @keyframes pulse { 0%{transform:scale(1)} 50%{transform:scale(1.1)} 100%{transform:scale(1)} }

    @media (max-width: 768px) {
      nav { display: none; flex-direction: column; background: white; width: 100%; position: absolute; top: 60px; right: 0; }
      nav.show { display: flex; }
      .menu-btn { display: block; }
      .hero h2 { font-size: 28px; }
    }
    .products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    direction: rtl;
    font-family: Arial, sans-serif;
}

.section-title {
    grid-column: 1 / -1;
    font-size: 22px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #222;
}

.product-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-box h3 {
    margin: 0 0 5px;
}

.product-box p {
    font-size: 14px;
    color: #555;
}

.product-box ul {
    padding: 0;
    list-style: none;
    margin: 10px 0;
}

.product-box ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

.price {
    display: block;
    font-weight: bold;
    color: #0a7c3a;
    margin-bottom: 10px;
}

.btn {
    display: block;
    text-align: center;
    background: #ff9800;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}
