/* ===== GLOBAL ===== */
body{
  margin:0;
  font-family:'Poppins', sans-serif;
  background:#0f1114;
  color:#eee;
  scroll-behavior:smooth;
}

h1,h2,h3{
  letter-spacing:1px;
}

/* ===== NAVBAR ===== */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 10%;
  background:rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index:1000;
}

.logo{
  font-weight:800;
  font-size:20px;
  color:#fff;
}

.navbar nav a{
  margin-left:25px;
  color:#ccc;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.navbar nav a:hover{
  color:#e86c2d;
}

/* ===== HERO ===== */
.hero{
  height:100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)),
  url('images/hero-bg.png') center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:0 10%;
}

.hero-content{
  max-width:600px;
  animation: fadeUp 1s ease forwards;
  opacity:0;
}

.hero h1{
  font-size:42px;
  margin-bottom:5px;
}

.hero h2{
  font-size:26px;
  color:#e86c2d;
  margin-bottom:10px;
}

.hero p{
  color:#ccc;
  margin-bottom:20px;
}

/* ===== BUTTON ===== */
.btn{
  display:inline-block;
  padding:12px 25px;
  margin-right:10px;
  background:#e86c2d;
  color:white;
  text-decoration:none;
  font-weight:bold;
  border-radius:5px;
  transition:0.3s;
}

.btn:hover{
  background:#ff8c4d;
}

/* ===== SECTION ===== */
.section{
  padding:80px 10%;
}

/* ===== TRUST STATS ===== */
.stats{
  display:flex;
  justify-content:space-between;
  text-align:center;
  background:#1c1c1c;
}

.stat{
  flex:1;
  padding:20px;
}

/* ===== PRODUCTS GRID ===== */
.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  margin-top:30px;
}

/* 🔥 CARD FIXED DESIGN */
.card{
  background:#1a1a1a;
  padding:25px;
  border-radius:10px;
  border:1px solid #333;
  text-align:center;
  color:#fff;   /* IMPORTANT FIX */
  transition:0.3s;
}

.card h3{
  color:#ff7a18;
  margin-bottom:10px;
}

.card p{
  color:#ddd;
  font-size:14px;
}

.card:hover{
  transform:translateY(-8px);
  border-color:#e86c2d;
  box-shadow:0 0 15px rgba(232,108,45,0.4);
}

/* ===== SPLIT SECTION ===== */
.split{
  display:flex;
  flex-wrap:wrap;
}

.split .text{
  flex:1;
  padding-right:30px;
}

.split .image{
  flex:1;
  background:url('images/hero-bg.png') center/cover no-repeat;
  border-radius:10px;
  min-height:300px;
}

/* ===== CONTACT ===== */
.contact{
  background:#000;
  text-align:center;
}

iframe{
  width:100%;
  height:300px;
  border:0;
  border-radius:10px;
  margin-top:20px;
}

/* ===== FOOTER ===== */
footer{
  background:#0a0a0a;
  padding:30px;
  text-align:center;
  font-size:14px;
}

/* ===== FLOAT BUTTONS ===== */
.callbtn{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#e86c2d;
  color:#fff;
  padding:15px 20px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
}

.whatsapp{
  position:fixed;
  bottom:80px;
  right:20px;
  background:#25D366;
  color:#fff;
  padding:15px 20px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .navbar{
    padding:15px 5%;
  }

  .hero h1{
    font-size:30px;
  }

  .split{
    flex-direction:column;
  }

  .split .text{
    padding-right:0;
    margin-bottom:20px;
  }

  .stats{
    flex-direction:column;
  }
}
