    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      overflow-x: hidden !important;
      overflow-y: hidden !important;
      width: 100% !important;
      font-family: 'Cairo', sans-serif;
    }

    body {
      direction: rtl;
      overflow-y: auto !important;
      scrollbar-gutter: right !important;
      max-width: 100% !important;
    }

    .navbar {
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
      color: #333 !important;
      font-weight: 800;
      font-size: 1.2rem !important;
    }

    .nav-link.active {
      color: #397C8F !important;
      font-weight: bold !important;
      border-bottom: #397C8F solid 2px;
    }

    @media (max-width: 991.98px) {
    

      .navbar-brand {
        margin-bottom: 10px;
      }
    }

    .hero-section {
      min-height: 100vh;
      display: flex; 
      flex-direction: column; 
      align-items: center !important;
      justify-content: center !important;
      background-color: #f0f4f8;
      padding: 120px 5% 60px;
      gap: 40px;
      position: relative;
    }

    .hero-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      display: flex; 
      justify-content: center !important;
      align-items: center; 
    }

    .hero-text {
      max-width: 500px;
      padding: 50px 0% 0px;

    }

    .hero-text h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #397C8F;
    }

    .hero-text p {
      font-size: 1rem;
      color: #333;
      margin-top: 1rem;
    }

    .btn-logo {
      background-color: #397C8F !important;
      color: #fff !important;
    }
    .btn-logo:hover {
      background-color: #7a9ea8 !important;
      color: #000000 !important;
    }


    .custom-image-frame {
      position: relative;
      width: 380px;
      height: 300px;
    }

    .image-border {
      position: absolute;
      top: 15px;
      left: 15px;
      width: 100%;
      height: 100%;
      border: 5px solid #88b8ff;
      border-radius: 15px;
      z-index: 1;
    }

    .main-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
      z-index: 2;
      transition: opacity 1s;
    }

    .main-img.animate-out {
      animation: explodeOut 0.5s forwards;
    }

    .main-img.animate-in {
      animation: fadeInNew 0.8s forwards;
    }

    .stats-row {
      background-color: white;
      padding: 15px 0;
      display: flex;
      justify-content: center;
      gap: 60px;
      box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.08);
      flex-wrap: wrap;
      width: 100%;
      max-width: 1000px;
      margin-top: 40px;
      border-radius: 15px;
    }

    .stat {
      text-align: center;
      min-width: 100px;
    }

    .stat i {
      font-size: 1.5rem;
      color: #397C8F;
      margin-bottom: 0.3rem;
    }

    .stat-number {
      font-size: 1.6rem;
      font-weight: bold;
      color: #000;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #555;
    }

    @keyframes explodeOut {
      0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: blur(0px);
      }
      100% {
        transform: scale(1.4) rotate(15deg);
        opacity: 0;
        filter: blur(8px);
      }
    }

    @keyframes fadeInNew {
      0% {
        opacity: 0;
        transform: scale(1.2);
        filter: blur(4px);
      }
      100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
      }
    }

    @media (max-width: 768px) {
      html, body {
      
      overflow-y:auto !important;
      
    }
      .hero-section {
        padding: 140px 5% 80px;
      
      }

  .hero-content {
    
    flex-direction: column;
    
    gap: 25px;
  }

      .custom-image-frame {
        width: 90%;
        height: 230px;
      }

      .hero-text h2 {
        font-size: 1.6rem;
      }

      .hero-text p {
        font-size: 0.9rem;
      }

      .stats-row {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
        border-radius: 10px;
      }
    }

    .facebook-float {
    position: fixed;
    bottom: 20px;
    right: 20px; 
    background-color: #3b5998; 
    color: white;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    z-index: 999;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
  }

  .facebook-float:hover {
    background-color: #2d4373;
    text-decoration: none;
  }




  /* صفحة ال login */


