#preloader{
  background: #000 url(/image/Loader.gif) no-repeat center center;
  background-size: 10%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}


.aref-ruqaa-regular {
    font-family: "Aref Ruqaa", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .aref-ruqaa-bold {
    font-family: "Aref Ruqaa", serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .noto-naskh-arabic-1 {
    font-family: "Noto Naskh Arabic", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .background {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('/image/Background.png') no-repeat center center/cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .content {
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    margin-right: 5%;
    width: 55%;
  }

/* Ensures the image is responsive */
.responsive-img {
    width: 100%; /* Makes the image scale to the container's width */
    height: auto; /* Maintains the original aspect ratio */
    max-width: 100%; /* Prevents the image from exceeding its original size */
  }
  
  /* Optionally, style the container */
  .image-container {
    width: 100%; /* Adjusts the size of the container (can be any percentage or fixed size) */
    margin: 0 auto; /* Centers the container horizontally */
  }
  
  
  .main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 17px;
  }
  
  .subtitle {
    font-size: 2rem;
  }
  
  .description {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  
  .highlight {
    color: red;
    font-weight: bold;
  }
  
  .countdown{
    font-size: 4rem;
    margin-bottom: 30px;
    word-spacing: 15px;
}

footer {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: flex-end; /* Align items to the right */
  position: absolute; /* Position it on the right side */
  right: 1%;
  top: auto;
  gap: 1.5rem; 
  align-items: center;
}
a {
  color: black; /* Normal state */
  text-decoration: none; /* Optional: removes underline */
  transition: all 0.3s ease; /* Smooth transition for all properties */
}

a:hover {

  transform: scale(1.1); /* Slightly increase size */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add a shadow effect */
}

a:active {
  color: black; /* Active state */
}

a:visited {
  color: black; /* Visited state */
}
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted rgba(95, 90, 90, 0.784);
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: rgba(95, 90, 90, 0.784);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -5px;
  right: 125%;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(95, 90, 90, 0.784);
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}


/* Dropdown Alert */
.dropdown-alert {
  position: fixed;
  top: -333px;
  left: 50%;
  transform: translateX(-50%);
  width: 38rem;
  max-width: 38rem;
  background: linear-gradient(90deg, #3cb371, #f4a460);
  /* background-image: url(/image/video.jpg); */
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  z-index: 1000;
  transition: top 0.5s ease-in-out;
}

/* Show alert */
.dropdown-alert.show {
  top: 20px; /* Visible position */
}

/* Arrow button */
.arrow-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/* Rotate arrow upward when alert is visible */
.arrow-btn.up {
  transform: rotate(180deg); /* Arrow points upward */
}


/* Style for the toggleArrow */
#toggleArrow {
  position: absolute; /* Position it absolutely */
  top: 343px; /* Adjust the top value as needed */
  left: 45%; /* Position it at the horizontal center */

}

.aspect-ratio{
  width:560;
  height: 315
}
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .background {
        justify-content: center;
        
    }
    .content {
      width: 75%;
    }
  
    .main-title {
      font-size: 3rem;
      margin-bottom: 20px;
    }
  
    .subtitle {
      font-size: 2rem;
    }
  
    .description {
      font-size: 2rem;
    }
  
    .countdown {
      font-size: 4rem;
      word-spacing: normal;
    }
  }

  #myiframe {
    width: 560px;
    height: 315px;
 }
  
  @media (max-width: 480px) {
    #myiframe {
      width: auto;
      height: auto ;
   }
    .dropdown-alert {
      top: -170px; /* Hidden by default */
      width: 23rem;
      max-width: 23rem;
    }
    #toggleArrow {
      top: 175px; /* Adjust the top value as needed */
    }
    .background {
        justify-content: center;
    }
    .content {
      padding: 10px;
      width: 90%;
    }
  
    .main-title {
      font-size: 2rem;
    }
  
    .subtitle {
      font-size: 1.5rem;
    }
  
    .description {
      font-size: 1.3rem;
    }
  
    .countdown {
      font-size: 2.3rem;
      word-spacing: normal;
    }
  }


  