 /* BODY */
    body {
      font-family: "Poppins", Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: url("image/the_magnificence_of_white_mosque_exploring_spiritual_majesty_architectural_marvel_sereni-removebg-preview.png")
        no-repeat center center fixed;
      background-size: cover;
      transition: all 0.3s ease;
      padding-top: 120px;
    }

    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.4);
      pointer-events: none;
      z-index: -1;
    }

    /* HEADER */
    header {
      background: rgba(16, 141, 99, 0.6);
      color: #fff;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      /* padding: 15px 20px; */
      backdrop-filter: blur(6px);
    }

    .header-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .logo-container {
      flex: 0 0 auto;
      align-items: center;
    }

    .site-logo {
      width: 351px;
      height: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .site-logo:hover {
      transform: scale(1.05);
    }

    /* LANGUAGE BUTTON */
    .lang-container {
      display: flex;
      align-items: center;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .lang-label {
      font-weight: 600;
      color: #fff;
      font-size: 14px;
    }

    .lang-toggle {
      background: transparent;
      color: #ffffff;
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .lang-toggle:hover {
      color: #fff;
    }

    /* BANNER */
    .banner-section {
      background: rgba(16, 141, 99, 0.6);
      color: white;
      padding: 20px 5px;
      text-align: center;
      border-radius: 16px;
      margin: 4.5% auto;
      width: 96%;
      max-width: 1100px;
      overflow: hidden;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(6px);
    }

    /* ✨ Polished Font Styles */
    .banner-heading {
      font-family: "Poppins", "Tajawal", sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      line-height: 1.4;
      letter-spacing: 0.5px;
      color: #ffffff;
      margin-bottom: 1rem;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    }

    .banner-text {
      font-family: "Poppins", "Tajawal", sans-serif;
      font-size: 1.15rem;
      font-weight: 400;
      line-height: 1.8;
      max-width: 800px;
      margin: 0 auto;
      color: #f3f4f6;
      letter-spacing: 0.2px;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    }

    html[lang="ar"] .banner-heading,
    html[lang="ar"] .banner-text {
      font-family: "Tajawal", sans-serif;
      letter-spacing: 0;
    }

    .highlight {
      color: #ffd700;
      font-weight: 600;
    }

    .cta-heading {
      color: #3b4cd9;
      font-weight: 900;
      font-size: 1.4rem;
      display: inline-block;
    }

    .whatsapp-text {
    color: #0b5c03;
      font-weight: 900;
      cursor: pointer;
       font-size: 1.4rem;
    }

    /* .banner-divider {
      margin: 25px auto;
      width: 70%;
      border: none;
      height: 1px;
      background: rgba(255, 255, 255, 0.6);
    } */

    /* PRICING */
    .pricing-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
    }

    .pricing-card {
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(4px);
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      padding: 30px 20px;
      width: 300px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 4px solid #108d63;
      text-align: center;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    }

    .pricing-card i {
      font-size: 40px;
      color: #108d63;
      margin-bottom: 12px;
    }

    .pricing-card h3 {
      font-size: 22px;
      color: #108d63;
      margin-bottom: 10px;
    }

    .mini-badge {
      display: inline-block;
      background: #b5e3cd;
      color: #034d32;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      text-align: left;
      margin: 20px 0;
    }

    .pricing-card ul li {
      margin: 10px 0;
      font-size: 15px;
      line-height: 1.6;
    }

    .btn {
      display: inline-block;
      text-decoration: none;
      background: #108d63;
      color: #fff;
      padding: 10px 18px;
      border-radius: 8px;
      font-weight: 500;
      transition: background 0.3s;
    }

    .btn:hover {
      background: #0c724f;
    }

    /* FOOTER */
    #footerText {
      color: #fff;
    }

    footer {
      background: #0a5e43;
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-top: 50px;
    }

    footer p a {
      color: #00ffae;
      text-decoration: none;
      font-weight: 500;
    }

    footer p a:hover {
      color: #9effc2;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .site-logo {
        width: 225px;
      }

      .lang-container {
        position: absolute;
        top: 8px;
        right: 28px;
        transform: none;
      }

      .lang-toggle {
        padding: 4px 10px;
        font-size: 12px;
      }

      .header-content {
        justify-content: center;
      }

      .banner-heading {
        font-size: 1.6rem;
        line-height: 1.3;
      }

      .banner-text {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 10px;
      }
    }