*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#0a0f15;
  color:white;
  overflow-x:hidden;
}

/* HEADER */
.header{
  position:fixed;
  width:100%;
  padding:20px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(5,10,20,0.6);
  backdrop-filter:blur(15px);
  z-index:1000;
}

.logo img{ width:150px; }

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 25px;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(8px);
  z-index:1000;
}

.logo{
  font-size:20px;
  font-weight:bold;
  color:white;
}

.menu-toggle{
  font-size:26px;
  color:white;
  cursor:pointer;
  display:block;
}

/* menu mkhabi par défaut */
.nav-links{
  position:absolute;
  top:70px;
  right:0;
  background:#111;
  width:200px;
  list-style:none;
  padding:20px;
  display:none;
  flex-direction:column;
  gap:15px;
}

.nav-links li a{
  color:white;
  text-decoration:none;
}

/* ki yet7ell */
.nav-links.active{
  display:flex;
}
/* HERO */
.hero{
  height:60vh;
  background:
  linear-gradient(rgba(0,20,40,0.75),rgba(0,20,40,0.75)),
  url("assets/IMG-20260213-WA0029.jpg") center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
}

.hero::after{
  content:"";
  position:absolute;
  bottom:0;
  width:100%;
  height:200px;
  background:linear-gradient(to top,#0a0f15,transparent);
}

.hero h1{
  font-size:65px;
  font-weight:700;
  letter-spacing:2px;
  text-shadow:0 0 25px rgba(0,195,255,0.6);
}

.hero span{
  color:#00c3ff;
  display:block;
  margin-top:10px;
  text-shadow:0 0 20px rgba(0,195,255,0.8);
}

.hero p{
  margin-top:25px;
  max-width:750px;
  opacity:0.9;
}

/* STATS BAR */
.stats{
  background:linear-gradient(to right,#0e1824,#0a0f15);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:50px 0;
  gap:140px;
  box-shadow:0 -10px 30px rgba(0,0,0,0.8);
}

.stat{
  text-align:center;
  position:relative;
}

.stat:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-70px;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:60px;
  background:rgba(255,255,255,0.15);
}

.stat h2{
  font-size:48px;
  color:#00c3ff;
  text-shadow:0 0 15px rgba(0,195,255,0.7);
}

.stat p{
  margin-top:5px;
  font-size:14px;
  opacity:0.7;
}

/* SERVICES SECTION */
.services{
  padding:140px 80px;
  background:
  linear-gradient(rgba(0,15,30,0.85),rgba(0,15,30,0.85)),
  url("assets/IMG-20260213-WA0029.jpg") center/cover fixed;
  position:relative;
}

.section-title{
  text-align:center;
  font-size:50px;
  margin-bottom:100px;
  color:#00c3ff;
  text-shadow:0 0 20px rgba(0,195,255,0.6);
}

/* LIGHT WAVE EFFECT */
.section-title::after{
  content:"";
  display:block;
  margin:20px auto 0;
  width:200px;
  height:4px;
  background:linear-gradient(to right,transparent,#00c3ff,transparent);
  border-radius:5px;
}

.services-container{
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
}

/* CINEMATIC CARDS */
.service-card{
  width:330px;
  background:linear-gradient(145deg,#1a2635,#0e141d);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.9);
  transition:0.5s;
  position:relative;
}

.service-card::after{
  content:"";
  position:absolute;
  bottom:-20px;
  left:50%;
  transform:translateX(-50%);
  width:80%;
  height:40px;
  background:radial-gradient(rgba(0,195,255,0.4),transparent);
  filter:blur(15px);
}

.service-card:hover{
  transform:translateY(-20px) scale(1.07);
  box-shadow:0 40px 100px rgba(0,195,255,0.4);
}

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

.service-card p{
  padding:25px;
  font-size:14px;
  opacity:0.9;
}

/* WHATSAPP */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  left:25px;
  background:#25D366;
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:28px;
  color:white;
  box-shadow:0 15px 35px rgba(0,0,0,0.6);
  transition:0.3s;
}

.whatsapp-float:hover{
  transform:scale(1.15);
}

/* FOOTER */
footer{
  background:#05080d;
  text-align:center;
  padding:40px;
  font-size:14px;
  opacity:0.6;
}
