/* ================= RESET ================= */
*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:'Poppins',sans-serif;
  background:#f6f8fc;
  color:#111;
  line-height:1.6;
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
.container{width:92%;max-width:1200px;margin:auto}

/* ================= HEADER ================= */
.main-header{
  background:#0b57ff;
  position:sticky;
  top:0;
  z-index:999;
}
.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:64px;
}
.logo{
  color:#fff;
  font-size:22px;
  font-weight:700;
}
.logo span{opacity:.8}
.nav{
  display:flex;
  gap:18px;
}
.nav a{
  color:#fff;
  font-size:14px;
  font-weight:500;
}
.nav-btn{
  background:#fff;
  color:#0b57ff!important;
  padding:8px 16px;
  border-radius:20px;
  font-weight:600;
}

/* ================= GLOBAL SECTIONS ================= */
section{padding:70px 0}

/* ================= BUTTONS ================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  transition:.3s;
}
.btn.primary{
  background:linear-gradient(135deg,#0b57ff,#003ecb);
  color:#fff;
  box-shadow:0 14px 30px rgba(11,87,255,.35);
}
.btn.outline{
  background:#fff;
  color:#0b57ff;
  border:2px solid #0b57ff;
}
.btn.whatsapp{
  background:linear-gradient(135deg,#25d366,#1da851);
  color:#fff;
}
.btn:hover{transform:translateY(-3px)}

/* ================= HERO ================= */
.hero{padding:80px 0 60px}
.hero-flex{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}
.hero-badge{
  display:inline-flex;
  gap:8px;
  background:#e9f0ff;
  color:#0b57ff;
  padding:8px 14px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  margin-bottom:14px;
}
.hero h1{
  font-size:44px;
  font-weight:700;
  line-height:1.2;
}
.hero h1 span{color:#0b57ff}
.hero-sub{
  color:#0b57ff;
  font-weight:600;
  margin:14px 0;
}
.hero-text{
  color:#555;
  margin-bottom:26px;
}
.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.hero-image{
  position:relative;
  display:flex;
  justify-content:center;
}
.hero-image img{
  max-width:380px;
  border-radius:18px;
  box-shadow:0 35px 70px rgba(0,0,0,.35);
}
.rating-box{
  position:absolute;
  bottom:14px;
  left:14px;
  background:#fff;
  padding:10px 14px;
  border-radius:12px;
  font-size:13px;
  font-weight:600;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* ================= STATS ================= */
.stats{background:#fff}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.stat{
  background:#f0f4ff;
  padding:30px;
  border-radius:18px;
  text-align:center;
  transition:.3s;
}
.stat i{
  font-size:26px;
  color:#0b57ff;
  margin-bottom:10px;
}
.stat:hover{transform:translateY(-6px)}

/* ================= SERVICES ================= */
.services h2,
.section-title{
  text-align:center;
  font-size:34px;
  margin-bottom:8px;
}
.section-sub{
  text-align:center;
  color:#666;
  margin-bottom:40px;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.service-card{
  background:#fff;
  padding:30px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  transition:.3s;
}
.service-card i{
  font-size:28px;
  color:#0b57ff;
  margin-bottom:14px;
}
.service-card:hover{transform:translateY(-8px)}

/* ================= VIDEO (PORTRAIT) ================= */
.video-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:40px;
}
.video-card{
  aspect-ratio:9/16;
  background:#000;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(0,0,0,.25);
  transition:.3s;
}
.video-card iframe{
  width:100%;
  height:100%;
  border:none;
}
.video-card:hover{transform:translateY(-6px)}

/* ================= TESTIMONIAL ================= */
.testimonial{
  background:#0b57ff;
  color:#fff;
  text-align:center;
}
.testimonial-card{
  background:rgba(255,255,255,.15);
  padding:30px;
  border-radius:18px;
  max-width:600px;
  margin:30px auto 0;
}

/* ================= CTA ================= */
.cta{text-align:center}

/* ================= FOOTER ================= */
.footer{
  background:#0c1220;
  color:#cfd3ff;
  padding:60px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}
.footer h3,.footer h4{color:#fff;margin-bottom:14px}
.footer a{display:block;color:#cfd3ff;margin-bottom:6px}
.copyright{
  text-align:center;
  margin-top:30px;
  font-size:13px;
  opacity:.7;
}
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  background:#25d366;
  color:#fff;
  padding:14px;
  border-radius:50%;
  font-size:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .hero-flex{grid-template-columns:1fr;text-align:center}
  .hero-buttons{justify-content:center}
  .stats-grid,.service-grid,.video-grid,.footer-grid{grid-template-columns:1fr}
  .hero h1{font-size:32px}
}
