/* Reset margin and padding */

*
{
      font-family: "Cairo", sans-serif;

}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Cairo", sans-serif;
}



.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
    background-color: #f8981b;
    

}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Better video centering */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg_layer
{
              background-color: #f8981b;

    
}
.content {

  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  height: 100vh; /* Ensure content takes full viewport height */
  display: flex; /* Enable flexbox */
  flex-direction: column; /* Stack children vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  padding: 20; /* Remove padding-top since we're using flexbox centering */

}

.intro
{
    width: 90%;
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
    color: black; /* Explicit white text color */
  margin: 0 auto; /* Center block */
padding: 15px;
 text-shadow: 
    -1px -1px 0 white,  
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
     
       word-break: break-word; /* Prevent overflow */

}


@media (min-width: 768px) {
  .intro {
    width: 80%;
    font-size: 24px;
    line-height: 1.6;
    text-align: justify;
    margin-left: 30px;
    margin-right: 30px;
  }
}




.header-section {
  position: relative;
  z-index: 1000;
  width: 100%;
  padding: 1rem 0;
}


.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.navbar {
    background: #5b6474;
      background: rgba(90, 100, 120, 0.5); /* semi-transparent background for readability 

  /*background: rgba(0, 0, 0, 0.5); /* semi-transparent background for readability */
  border-radius: 10px;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.navbar .nav-link.active {
  color: #ffd700 !important; /* highlight active link */
}

.navbar-brand img {
  max-height: 60px;
  width: auto;
}