/* =========================
   MRBEN INTERNET SERVICES
   MODERN ISP DESIGN
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
--primary:#0047ff;
--secondary:#001f70;
--accent:#00c6ff;
--success:#25d366;
--dark:#111827;
--light:#f8fbff;
--white:#ffffff;
--shadow:0 15px 35px rgba(0,0,0,.08);
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f8fbff;
overflow-x:hidden;
color:#333;
}

/* CONTAINER */

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* TOPBAR */

.topbar{
background:#001f70;
color:white;
padding:10px 0;
font-size:14px;
}

.topbar .container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:15px;
}

/* NAVBAR */

.navbar{
position:sticky;
top:0;
background:white;
box-shadow:0 3px 15px rgba(0,0,0,.05);
z-index:999;
}

.navbar .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.brand{
display:flex;
align-items:center;
gap:15px;
text-decoration:none;
}

.brand img{
height:60px;
}

.brand span{
font-weight:700;
font-size:20px;
color:#001f70;
}

.menu{
display:flex;
gap:25px;
list-style:none;
}

.menu a{
text-decoration:none;
font-weight:600;
color:#333;
transition:.3s;
}

.menu a:hover{
color:var(--primary);
}

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
}

/* HERO */

.hero-slider{
min-height:100vh;
background:
linear-gradient(
135deg,
#001f70,
#0047ff,
#00c6ff);
display:flex;
align-items:center;
overflow:hidden;
position:relative;
}

.hero-slider::before{
content:'';
position:absolute;
width:600px;
height:600px;
background:rgba(255,255,255,.08);
border-radius:50%;
top:-250px;
right:-200px;
}

.hero-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:50px;
}

.hero-text{
flex:1;
}

.hero-image{
flex:1;
text-align:center;
}

.hero-image img{
width:100%;
max-width:450px;
animation:float 4s ease-in-out infinite;
}

.badge{
display:inline-block;
background:rgba(255,255,255,.15);
padding:12px 20px;
border-radius:50px;
color:white;
margin-bottom:20px;
backdrop-filter:blur(10px);
}

.hero-text h1{
font-size:65px;
font-weight:800;
color:white;
line-height:1.1;
margin-bottom:20px;
}

.hero-text p{
font-size:20px;
color:white;
line-height:1.8;
margin-bottom:30px;
}

.btn-primary{
display:inline-block;
background:white;
color:#0047ff;
padding:15px 35px;
border-radius:50px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-5px);
}

/* STATS */

.stats{
padding:80px 0;
background:white;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.stat{
background:white;
padding:30px;
border-radius:20px;
box-shadow:var(--shadow);
text-align:center;
}

.stat h2{
font-size:42px;
color:#0047ff;
margin-bottom:10px;
}

/* SECTIONS */

section{
padding:100px 0;
}

.section-title{
text-align:center;
font-size:45px;
margin-bottom:60px;
color:#001f70;
font-weight:800;
}

/* NETWORKS */

.network-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.network-card{
background:white;
padding:40px;
text-align:center;
border-radius:20px;
box-shadow:var(--shadow);
transition:.3s;
}

.network-card:hover{
transform:translateY(-10px);
}

.network-card h3{
font-size:24px;
color:#0047ff;
}

/* OFFERS */

.offer-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.offer-card{
background:
linear-gradient(
135deg,
#0047ff,
#00c6ff);
padding:40px;
border-radius:25px;
color:white;
text-align:center;
box-shadow:var(--shadow);
}

.offer-card h3{
margin-top:20px;
font-size:35px;
}

/* PACKAGES */

.packages-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.package-card{
background:white;
padding:35px;
border-radius:25px;
box-shadow:var(--shadow);
position:relative;
transition:.4s;
}

.package-card:hover{
transform:translateY(-10px);
}

.network{
display:inline-block;
padding:8px 15px;
border-radius:50px;
font-size:14px;
color:white;
margin-bottom:20px;
}

.vodacom{
background:red;
}

.airtel{
background:#ff0000;
}

.tigo{
background:#0056ff;
}

.halotel{
background:#ff9900;
}

.package-card h3{
font-size:30px;
margin-bottom:10px;
}

.price{
font-size:45px;
font-weight:800;
color:#0047ff;
margin:20px 0;
}

.order-btn{
width:100%;
border:none;
padding:15px;
border-radius:12px;
background:#0047ff;
color:white;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.order-btn:hover{
background:#001f70;
}

/* CONTACT */

.contact-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.contact-card{
background:white;
padding:40px;
text-align:center;
border-radius:20px;
box-shadow:var(--shadow);
}

.contact-card i{
font-size:45px;
color:#0047ff;
margin-bottom:20px;
}

.contact-card h3{
margin-bottom:10px;
}

/* FLOATING BUTTONS */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:65px;
height:65px;
background:#25d366;
color:white;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:30px;
text-decoration:none;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,.3);
}

.call-float{
position:fixed;
bottom:95px;
right:20px;
width:65px;
height:65px;
background:#0047ff;
color:white;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:25px;
text-decoration:none;
z-index:999;
}

/* FOOTER */

footer{
background:#001f70;
padding:40px;
text-align:center;
color:white;
}

/* ANIMATION */

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-20px);
}

}

/* MOBILE */

@media(max-width:992px){

.hero-content{
flex-direction:column;
text-align:center;
}

.hero-text h1{
font-size:45px;
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

.menu{
display:none;
}

.menu-toggle{
display:block;
}

}

@media(max-width:768px){

.stats-grid{
grid-template-columns:1fr;
}

.hero-text h1{
font-size:38px;
}

.section-title{
font-size:35px;
}

.brand span{
display:none;
}

}

@media(max-width:480px){

.hero-text h1{
font-size:32px;
}

.hero-text p{
font-size:16px;
}

.btn-primary{
width:100%;
text-align:center;
}

}