body{margin:0;font-family:Arial;background:#f5f7fa;}

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition: all 0.8s ease;
}

/* لما يظهر */
.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* Variations (اختياري) */
.reveal-left{
  transform:translateX(-50px);
}

.reveal-right{
  transform:translateX(50px);
}

.reveal.active.reveal-left,
.reveal.active.reveal-right{
  transform:translateX(0);
}

nav{
  position:absolute;
  top:20px;
  right:20px;
  z-index:10;
}

/* لما اللغة عربي */
body[dir="rtl"] nav{
  right:auto;
  left:20px;
}
nav a{color:white;margin-left:15px;text-decoration:none;font-weight:bold;}
nav button{margin-left:15px;padding:6px 12px;border:none;border-radius:20px;cursor:pointer;font-weight:bold;}

/* HERO */
.hero{
  height:70vh;
  background:#0B1F3B;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  position:relative;
}
.hero::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
}
.hero-content{position:relative;z-index:2;}

.logo{width:220px;margin-bottom:20px;cursor:pointer;}

.btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 26px;
  background:#F28C28;
  color:white;
  border-radius:30px;
  text-decoration:none;
}

.section{padding:80px 20px;text-align:center;background:white;}
.section-dark{background:#f5f7fa;}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr); /* 3 كروت في الصف */
  gap:20px;
}

/* RESPONSIVE */
@media (max-width:1024px){
  .grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:600px){
  .grid{
    grid-template-columns:1fr;
  }
}

/* CARD */
.card{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  text-decoration:none;
  color:white;
}

/* الصورة */
.card-img{
  width:100%;
  height:180px; /* 👈 حجم ثابت */
}

.card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}

/* overlay */
.card-overlay{
  position:absolute;
  bottom:0;
  width:100%;
  padding:15px;
  background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* hover */
.card:hover img{
  transform:scale(1.1);
}

.card{
  background:white;
  padding:25px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* RTL */
body[dir="rtl"]{text-align:right;}

.footer{
  background:#0B1F3B;
  color:white;
  text-align:center;
  padding:25px 15px;
  margin-top:50px;
}

.footer-content p{
  margin:5px 0;
}

.tm{
  font-size:12px;
  opacity:0.7;
  letter-spacing:1px;
}

.section{
  padding:60px 10%;
}

.section h2{
  margin-bottom:25px;
  font-size:28px;
  color:#0B1F3B;
  position:relative;
}

/* خط تحت العنوان */
.section h2::after{
  content:"";
  width:60px;
  height:3px;
  background:#F28C28;
  display:block;
  margin-top:10px;
}

.card-img{
  aspect-ratio: 16 / 10;
}

.card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
