/* =====================================
   SFI COMPANY - COMPLETE STYLE (FINAL)
   Replace entire style.css with this
===================================== */

:root{
  --bg:#0b1220;
  --bg2:#0f1a2f;
  --text:#eef2f7;
  --muted:#b9c2d0;
  --brand:#ff6b00;
  --brand2:#ff8a3d;
  --line:rgba(255,255,255,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

/* ================= BODY ================= */

body{
  margin:0;

  font-family:
    "Tajawal",
    "Cairo",
    "Noto Sans Arabic",
    "Segoe UI",
    Tahoma,
    Arial,
    sans-serif;

  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;

  background:
    radial-gradient(800px 400px at 85% 10%, rgba(255,107,0,.18), transparent 60%),
    radial-gradient(700px 350px at 10% 20%, rgba(255,138,61,.12), transparent 60%),
    linear-gradient(180deg, #0f1a2f 0%, #0b1220 60%, #0a101c 100%);

  color:var(--text);
}

/* ================= CONTAINER ================= */

.container{
  width:95%;
  max-width:1200px;
  margin:auto;
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  transition:.25s;
  border:1px solid transparent;
}

.btn-primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#111;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 45px rgba(0,0,0,.45);
}

.btn-outline{
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-color:rgba(255,255,255,.18);
}
.btn-outline:hover{
  background:rgba(255,255,255,.1);
  transform:translateY(-2px);
}

/* ================= HEADER ================= */

.header{
  position:sticky;
  top:0;
  z-index:999;
  background:linear-gradient(180deg,rgba(18,28,48,.95),rgba(11,18,32,.92));
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 35px rgba(0,0,0,.4);
}

.header::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-1px;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--brand),transparent);
  opacity:.6;
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
  direction:rtl;
  position:relative;
}

/* Logo */

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  padding:10px 16px;
  border-radius:18px;
  transition:.3s;
}
.brand:hover{
  border-color:var(--brand2);
}

.brand img{
  width:200px;
  filter:drop-shadow(0 0 12px rgba(255,107,0,.25));
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand .name{
  font-weight:900;
  font-size:20px;
}
.brand .tag{
  font-size:13px;
  color:var(--muted);
  margin-top:4px;
}

/* Nav */

.nav{
  display:flex;
  gap:16px;
  justify-content:center;
  flex:1;
}

.nav a{
  color:var(--text);
  text-decoration:none;
  padding:10px 14px;
  border-radius:12px;
  font-weight:800;
  transition:.25s;
}

.nav a:hover{
  background:rgba(255,255,255,.06);
}

.nav a.active{
  background:rgba(255,107,0,.15);
  border:1px solid rgba(255,107,0,.4);
  color:var(--brand2);
}

.nav-cta{
  display:flex;
  gap:10px;
}

/* Burger */

.burger{
  display:none;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
}

/* ================= HERO ================= */

.hero{
  padding:50px 0 30px;
}

.hero-inner{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:36px;
  box-shadow:0 25px 60px rgba(0,0,0,.45);
  position:relative;
  overflow:hidden;
}

.hero-inner::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(600px 250px at 80% 30%, rgba(255,107,0,.18), transparent 60%);
}

.hero h1{
  font-size:48px;
  font-weight:900;
  margin:10px 0 15px;
  text-shadow:0 12px 35px rgba(0,0,0,.6);
  position:relative;
}

.hero p{
  color:var(--muted);
  line-height:1.9;
  position:relative;
}

/* ================= SECTIONS ================= */

.section{
  padding:45px 0;
}

.section-title{
  font-size:30px;
  font-weight:900;
  margin-bottom:10px;
}

.section-sub{
  color:var(--muted);
  margin-bottom:20px;
}

/* Grid */

.grid{
  display:grid;
  gap:16px;
}

.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }

/* ================= CARDS ================= */

.card{
  background:linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  padding:22px;
  box-shadow:0 15px 40px rgba(0,0,0,.35);
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
  border-color:var(--brand2);
  box-shadow:0 25px 60px rgba(0,0,0,.5);
}

.card h3{
  margin:10px 0;
  font-weight:900;
}

.card p{
  color:var(--muted);
  line-height:1.9;
}

/* ================= PRODUCT IMAGES ================= */

.product-card{
  overflow:hidden;
}

.product-img{
  width:100%;
  height:210px;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:14px;
  box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.product-card:hover .product-img img{
  transform:scale(1.08);
}

/* ================= FOOTER ================= */

.footer{
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,.1);
}

.foot{
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.mini{
  display:flex;
  gap:14px;
}

.mini img{
  width:60px;
}

.copy{
  margin-top:12px;
  font-size:13px;
  color:rgba(255,255,255,.5);
}

/* ================= RESPONSIVE ================= */

@media (max-width:900px){

  .nav-cta{display:none;}

  .burger{display:inline-flex;}

  .nav{
    display:none;
    position:absolute;
    top:100%;
    right:0;
    left:0;
    background:rgba(11,18,32,.98);
    flex-direction:column;
    padding:14px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
  }

  .nav.show{display:flex;}

  .grid-3{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}

  .hero h1{font-size:34px;}

  .foot{flex-direction:column;}
}
.icon{
  font-size:36px;
  color:var(--brand2);
  margin-bottom:14px;
  transition:.3s;
}

.card:hover .icon{
  transform:scale(1.2);
  color:var(--brand);
}
.product-card{
  overflow:hidden;
  transition:.3s;
}

.product-img{
  width:100%;
  height:220px;
  border-radius:20px;
  overflow:hidden;
  margin-bottom:16px;
  box-shadow:0 18px 45px rgba(0,0,0,.4);
}

.product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .4s ease;
}

.product-card:hover .product-img img{
  transform:scale(1.08);
}

.product-card:hover{
  transform:translateY(-6px);
}
/* ===== Products Images (force) ===== */
.product-card{
  overflow:hidden;
}

.product-img{
  width:100%;
  height:220px;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:14px;
  box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.product-card:hover .product-img img{
  transform:scale(1.08);
}
