:root{
  --primary:#183058;
  --primary-dark:#10213d;
  --secondary:#7e99bd;
  --gray:#aeaeb5;
  --soft:#f7f9fc;
  --text:#1f2937;
  --muted:#6b7280;
  --white:#ffffff;
  --border:#e8edf4;
  --shadow:0 18px 45px rgba(24,48,88,.12);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Cairo', sans-serif;
  color:var(--text);
  background:var(--white);
  overflow-x:hidden;
}

.navbar{
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 35px rgba(24,48,88,.08);
  padding:10px 0;
}
.navbar-brand{
  font-weight:900;
  color:var(--primary) !important;
  letter-spacing:-.5px;
  gap:10px;
}
.navbar-brand img{
  width:72px;
  height:72px;
  object-fit:contain;
}
.navbar-toggler{border-color:rgba(24,48,88,.18);}
.navbar-toggler:focus{box-shadow:0 0 0 .18rem rgba(126,153,189,.25);}
.nav-link{
  color:var(--primary);
  font-weight:700;
  margin:0 6px;
}
.nav-link:hover{color:var(--secondary);}

.btn-main{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:var(--white);
  border:0;
  border-radius:50px;
  padding:12px 28px;
  font-weight:800;
  box-shadow:0 14px 28px rgba(24,48,88,.22);
  transition:.3s ease;
}
.btn-main:hover{
  color:var(--white);
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(24,48,88,.28);
}
.btn-outline-main{
  border:2px solid var(--primary);
  color:var(--primary);
  background:var(--white);
  border-radius:50px;
  padding:11px 26px;
  font-weight:800;
  transition:.3s ease;
}
.btn-outline-main:hover{background:var(--primary);color:var(--white);}

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  color:var(--primary);
  background:
    radial-gradient(circle at top left, rgba(126,153,189,.24), transparent 32%),
    linear-gradient(135deg,#ffffff 0%,#f7f9fc 55%,#eef3f9 100%);
  padding:135px 0 80px;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  left:-170px;
  bottom:-180px;
  border-radius:50%;
  background:rgba(126,153,189,.14);
}
.hero-content{position:relative;z-index:2;}
.badge-soft{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--white);
  border:1px solid var(--border);
  color:var(--primary);
  border-radius:50px;
  padding:9px 18px;
  font-weight:800;
  margin-bottom:22px;
  box-shadow:0 10px 28px rgba(24,48,88,.08);
}
.hero h1{
  font-size:clamp(2.4rem, 5vw, 5rem);
  font-weight:900;
  line-height:1.2;
  margin-bottom:20px;
  letter-spacing:-1px;
  color:var(--primary);
}
.hero p{
  font-size:1.18rem;
  line-height:2;
  color:#52647d;
  max-width:680px;
}
.hero-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}
.hero-card img{
  width:100%;
  height:330px;
  object-fit:cover;
  border-radius:22px;
  margin-bottom:20px;
}
.mini-info{
  display:flex;
  gap:12px;
  align-items:center;
  background:var(--soft);
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  margin-top:12px;
}
.mini-info i{color:var(--primary);font-size:1.3rem;}
.mini-info strong{display:block;color:var(--primary);}
.mini-info span{font-size:.9rem;color:var(--muted);}

section{padding:90px 0;}
.section-label{
  display:inline-block;
  color:var(--primary);
  background:#eef3f9;
  border:1px solid var(--border);
  border-radius:50px;
  padding:7px 16px;
  font-weight:900;
  margin-bottom:10px;
}
.section-title{
  color:var(--primary);
  font-weight:900;
  font-size:clamp(1.8rem,3vw,2.7rem);
  margin-bottom:18px;
}
.section-desc{
  color:var(--muted);
  line-height:1.9;
  font-size:1.05rem;
}

.feature-box,
.product-card,
.contact-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:26px;
  padding:28px;
  box-shadow:0 12px 35px rgba(24,48,88,.07);
  transition:.35s ease;
  height:100%;
}
.feature-box:hover,
.product-card:hover,
.contact-card:hover{
  transform:translateY(-9px);
  box-shadow:var(--shadow);
}
.icon-box{
  width:62px;
  height:62px;
  border-radius:20px;
  background:linear-gradient(135deg, rgba(24,48,88,.10), rgba(126,153,189,.20));
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  margin-bottom:20px;
}
.feature-box h5,
.product-card h5{font-weight:900;color:var(--primary);}
.feature-box p,
.product-card p{color:var(--muted);line-height:1.8;margin-bottom:0;}

.about{background:linear-gradient(180deg,#fff,var(--soft));}
.about-img-wrap{position:relative;}
.about-img{
  width:100%;
  height:470px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:var(--shadow);
}
.floating-card{
  position:absolute;
  right:-18px;
  bottom:28px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:24px;
  padding:22px 26px;
  box-shadow:var(--shadow);
  max-width:270px;
}
.floating-card h4{font-weight:900;color:var(--primary);margin:0;}
.floating-card p{color:var(--muted);margin:6px 0 0;}

.stats-strip{
  background:var(--white);
  color:var(--primary);
  border:1px solid var(--border);
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
  margin-top:-45px;
  position:relative;
  z-index:3;
}
.stat h3{font-size:2.25rem;font-weight:900;margin:0;color:var(--primary);}
.stat p{margin:6px 0 0;color:var(--gray);font-weight:700;}

.products{background:var(--soft);}
.product-card{padding:0;overflow:hidden;}
.product-card img{width:100%;height:230px;object-fit:cover;}
.product-body{padding:26px;}
.tag{
  display:inline-block;
  background:#eef3f9;
  color:var(--primary);
  padding:6px 14px;
  border-radius:50px;
  font-weight:800;
  font-size:.82rem;
  margin-bottom:12px;
}

.process-step{
  display:flex;
  gap:18px;
  background:var(--white);
  border-radius:24px;
  padding:24px;
  border:1px solid var(--border);
  box-shadow:0 12px 30px rgba(24,48,88,.06);
}
.step-num{
  min-width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary);
  color:var(--white);
  font-weight:900;
}
.process-step h5{font-weight:900;color:var(--primary);}
.process-step p{color:var(--muted);line-height:1.8;margin:0;}

.cta{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:var(--white);
  border-radius:38px;
  padding:55px 40px;
  box-shadow:var(--shadow);
}
.cta h2{font-weight:900;}
.cta p{color:rgba(255,255,255,.86);line-height:1.9;}
.cta .btn-main{
  background:var(--white);
  color:var(--primary);
  box-shadow:none;
}
.cta .btn-main:hover{background:#eef3f9;color:var(--primary);}

.contact{background:var(--white);}
.contact-card{text-align:center;}
.contact-card i{font-size:1.8rem;color:var(--primary);margin-bottom:14px;}
.contact-card h5{font-weight:900;color:var(--primary);}
.contact-card p{color:var(--muted);margin:0;direction:ltr;}

footer{
  background:var(--primary);
  color:var(--white);
  padding:28px 0;
}
footer p{margin:0;color:rgba(255,255,255,.78);}

@media(max-width:991px){
  .navbar-brand img{width:58px;height:58px;}
  .hero-card{margin-top:35px;}
  .floating-card{right:15px;left:15px;max-width:none;}
  .about-img{height:370px;}
  .stats-strip{margin-top:0;}
}

.navbar-scrolled{
  padding:8px 0;
  box-shadow:0 12px 38px rgba(24,48,88,.12);
}
