*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f4f6f9;
  color:#0A1F35;
}

.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:9999;
  background:#FFC107;
  color:#0A1F35;
  text-align:center;
  padding:10px 14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0px;
  text-transform:uppercase;
}

/* Prevent the bar from covering the page */
body{
  padding-top:0px;
}

.hero{
  background:url('../images/banners/hero-bg-light.jpg') center center/cover no-repeat;
  min-height:90vh;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  text-align:center;
  padding:24px;
  padding-top:40px;
  position:relative;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(10,31,53,0.10); /* تم تخفيف التعتيم */
}

.hero-content{
  position:relative;
  color:#0A1F35;
  max-width:900px;
  width:100%;
}

.logo{
  width:380px;
  max-width:85vw;
  margin:0 auto 34px auto;
  display:block;
}

h1{
  font-size:22px;
  font-weight:600;
  line-height:1.3;
  margin-bottom:16px;
}

p{
  font-size:15px;
  line-height:1.6;
  margin:0 auto 24px auto;
  max-width:700px;
  opacity:0.95;
}

.btn{
  display:inline-block;
  background:#ffffff;
  color:#0A1F35;
  padding:14px 36px;
  font-weight:700;
  text-decoration:none;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.35);
  cursor:pointer;
  transition:0.2s ease;
}

.btn:hover{
  transform:translateY(-1px);
  background:#e2e8f0;
}

.footer{
  text-align:center;
  padding:18px 14px;
  background:#0A1F35;
  color:#ffffff;
  font-size:13px;
}


@media (max-width:768px){
  h1{font-size:20px}
  p{font-size:13px}

  .logo{
    width:260px;
  }

  .hero{
    padding-top:60px;
    min-height:80vh;
    
  }
  
  .footer{
  text-align:center;
  padding:18px 14px;
  background:#0A1F35;
  color:#ffffff;
  font-size:8px;
}
}

.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  justify-content:center;
  align-items:center;
  z-index:99999;
}

.modal-box{
  background:#ffffff;
  padding:30px;
  width:90%;
  max-width:400px;
  border-radius:12px;
  position:relative;
  text-align:left;
}

.modal-box h2{
  margin-bottom:20px;
  color:#0A1F35;
  font-size:20px;
}

.modal-box input,
.modal-box textarea{
  width:100%;
  margin-bottom:15px;
  padding:10px;
  border:1px solid #ddd;
  border-radius:6px;
  font-family:'Poppins',sans-serif;
}

.modal-box button{
  width:100%;
  padding:12px;
  background:#0A1F35;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.close{
  position:absolute;
  top:12px;
  right:15px;
  font-size:22px;
  cursor:pointer;
  color:#999;
}