body{
  background:#0a0a0a;
  color:#fff;
  font-family:sans-serif;
  margin:0;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:20px;
}

/* HEADER FIX */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  font-size:22px;
  font-weight:bold;
}

.btn-nav {
    padding: 8px 18px;
    border-radius: 50px;
    color: #fff !important;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border: none;
    transition: 0.3s;
}

.btn-nav:hover {
    box-shadow: 0 0 20px #00c6ff;
    transform: translateY(-2px) scale(1.05);
}
}

/* HERO FIX */
.hero h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    margin: 10px 0 20px;
}

.btn {
    padding: 12px 25px;
    background: #0ff;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
                url("image/hero.png"); /* your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
}
/* PACKAGES FIX */
.packages{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:40px;
}

.card{
  background:#111;
  padding:25px;
  border-radius:12px;
  text-align:center;
}

.price{
  font-size:28px;
  margin-top:10px;
}

/* RESELLER */
.reseller{
  margin-top:50px;
  background:#111;
  padding:40px;
  text-align:center;
  border-radius:12px;
}

/* FORM FIX */
form{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:400px;
  margin:auto;
}

input, textarea{
  padding:10px;
  border:none;
  border-radius:8px;
}

/* FOOTER */
footer{
    margin-top:50px;
  background:#111;
  padding:40px;
  text-align:center;
  border-radius:12px;
}

/* POPUP */
.popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none;
  background:rgba(0,0,0,.7);
  align-items:center;
  justify-content:center;
}

.popup-content{
  background:#111;
  padding:20px;
  border-radius:10px;
}

/* FLOAT BUTTONS */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  padding:15px;
  border-radius:50%;
}

.chat-btn{
  position:fixed;
  bottom:20px;
  left:20px;
}

/* CHAT BOX */
.chat-box{
  position:fixed;
  bottom:80px;
  right:20px;
  width:300px;
  background:#111;
  display:none;
  flex-direction:column;
  border-radius:10px;
}

.chat-header{
  padding:10px;
  background:#222;
}

.chat-body{
  padding:10px;
  height:200px;
  overflow-y:auto;
}

.chat-input{
  display:flex;
}

.chat-input input{
  flex:1;
}

.chat-input button{
  padding:10px;
}
/* style.css */
body{
  background:#0a0a0a;
  color:#fff;
  font-family:sans-serif;
  margin:0;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:20px;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  font-size:22px;
  font-weight:bold;
}

.btn{
  background:#fff;
  color:#000;
  padding:10px 20px;
  border-radius:30px;
  border:none;
  cursor:pointer;
}

.hero{
  text-align:center;
  padding:60px 20px;
}

/* FIXED SLIDER SIZE */
.slider{
  width:100%;
