/* ==========================
   GOOGLE FONT
========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================
   RESET
========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#071322;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:90px 8%;
}

/* ==========================
   COLORS
========================== */

:root{

    --primary:#2D8CFF;
    --secondary:#0D6EFD;
    --dark:#071322;
    --card:#10233b;
    --light:#ffffff;
    --gray:#b9c2d0;
    --success:#25D366;

}

/* ==========================
   BUTTONS
========================== */

.btn{

    display:inline-block;
    background:var(--primary);
    color:white;
    padding:15px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;

}

.btn:hover{

    background:#1577ff;
    transform:translateY(-3px);

}

.btn-outline{

    display:inline-block;
    border:2px solid var(--primary);
    color:white;
    padding:14px 34px;
    border-radius:50px;
    transition:.35s;

}

.btn-outline:hover{

    background:var(--primary);

}

/* ==========================
NAVBAR
========================== */

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;

    background:rgba(6,16,30,.85);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar{

    width:90%;
    margin:auto;

    height:85px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo-icon{

    width:52px;

    height:52px;

    border-radius:15px;

    background:linear-gradient(135deg,#2D8CFF,#00D4FF);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

}

.logo h2{

    font-size:26px;

    line-height:1;

}

.logo span{

    color:#6faeff;

    letter-spacing:5px;

    font-size:11px;

}

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links a{

    color:white;

    transition:.3s;

    font-weight:500;

}

.nav-links a:hover{

    color:var(--primary);

}

/* ==========================
HERO
========================== */

.hero{

    padding-top:160px;

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-content h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-content span{

    color:var(--primary);

}

.hero-content p{

    color:var(--gray);

    margin-bottom:40px;

    font-size:18px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    border-radius:30px;

    box-shadow:

    0 0 60px rgba(0,136,255,.25);

}

/* glowing circle */

.hero-image::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:#1677ff;

    filter:blur(130px);

    opacity:.25;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    z-index:-1;

}

/* ==========================
HERO BADGES
========================== */

.hero-stats{

    display:flex;

    gap:25px;

    margin-top:40px;

    flex-wrap:wrap;

}

.stat{

    background:rgba(255,255,255,.05);

    padding:18px 24px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

}

.stat h3{

    color:var(--primary);

    font-size:26px;

}

.stat p{

    margin:0;

    font-size:14px;

}

/* ==========================
SECTION TITLES
========================== */

section h2{

    text-align:center;

    font-size:42px;

    margin-bottom:50px;

    color:white;

}

section h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    background:var(--primary);

    margin:12px auto;

    border-radius:10px;

}
/* ==========================================
   ABOUT SECTION
========================================== */

.about{
    background:#09192d;
}

.about > p{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
    color:var(--gray);
    font-size:18px;
}

.about-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;

}

.card{

    background:var(--card);
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.card i{

    font-size:48px;
    color:var(--primary);
    margin-bottom:25px;

}

.card h3{

    margin-bottom:15px;
    font-size:24px;

}

.card p{

    color:var(--gray);

}


/* ==========================================
   SERVICES
========================================== */

.services{

    background:var(--dark);

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.service-card{

    background:linear-gradient(180deg,#112844,#0c1f34);

    padding:40px 30px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 25px 45px rgba(0,0,0,.45);

}

.service-card i{

    font-size:55px;

    color:var(--primary);

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.service-card p{

    color:var(--gray);

}

/* ==========================================
   INTERNET PLANS
========================================== */

.plans{

    background:#081624;

}

.plan-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:35px;

}

.plan{

    position:relative;

    background:white;

    color:#111;

    border-radius:25px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

    overflow:hidden;

}

.plan:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 50px rgba(0,0,0,.30);

}

.plan h3{

    font-size:28px;

    margin-bottom:15px;

}

.plan h1{

    font-size:50px;

    color:var(--primary);

    margin-bottom:15px;

}

.plan p{

    margin-bottom:35px;

    color:#666;

}

.plan a{

    display:inline-block;

    background:var(--primary);

    color:white;

    padding:14px 35px;

    border-radius:50px;

    transition:.3s;

}

.plan a:hover{

    background:#0057d8;

}

.plan.popular{

    transform:scale(1.06);

    border:3px solid var(--primary);

}

.plan.popular:hover{

    transform:scale(1.06) translateY(-10px);

}

.plan.popular span{

    position:absolute;

    top:18px;

    right:-38px;

    background:#ff9800;

    color:white;

    font-size:12px;

    padding:8px 45px;

    transform:rotate(45deg);

    font-weight:700;

    letter-spacing:1px;

}

/* ==========================================
   SMALL ANIMATION
========================================== */

.card,
.service-card,
.plan{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ==========================================
   CALL TO ACTION
========================================== */

.cta{
    text-align:center;
    background:linear-gradient(135deg,#0d6efd,#2D8CFF);
    padding:100px 8%;
}

.cta h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta h2::after{
    display:none;
}

.cta p{
    max-width:700px;
    margin:0 auto 40px;
    font-size:18px;
    color:#eef6ff;
}

.cta .btn{
    background:#fff;
    color:#0d6efd;
}

.cta .btn:hover{
    background:#f5f5f5;
}

/* ==========================================
   CONTACT
========================================== */

.contact{
    background:#09192d;
    text-align:center;
}

.contact-box{
    max-width:700px;
    margin:0 auto;
    background:var(--card);
    padding:45px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.08);
}

.contact-box p{
    font-size:20px;
    margin:18px 0;
    color:var(--gray);
}

.contact-box i{
    color:var(--primary);
    margin-right:12px;
    font-size:24px;
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:#050d18;
    text-align:center;
    padding:30px;
    color:#9fb0c4;
    border-top:1px solid rgba(255,255,255,.08);
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
========================================== */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;

    font-size:34px;

    box-shadow:0 10px 30px rgba(37,211,102,.45);

    transition:.3s;

    z-index:999;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#09192d;
}

::-webkit-scrollbar-thumb{
    background:#2D8CFF;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#006eff;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1000px){

.hero{

grid-template-columns:1fr;
text-align:center;
padding-top:140px;

}

.hero-buttons{

justify-content:center;

}

.hero-content h1{

font-size:48px;

}

.hero-image{

margin-top:40px;

}

.nav-links{

display:none;

}

.navbar{

width:92%;

}

}

@media(max-width:768px){

section{

padding:70px 6%;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:16px;

}

section h2{

font-size:34px;

}

.plan.popular{

transform:none;

}

.plan.popular:hover{

transform:translateY(-10px);

}

.cta h2{

font-size:36px;

}

.contact-box{

padding:30px 20px;

}

.contact-box p{

font-size:17px;

}

.logo h2{

font-size:22px;

}

.logo span{

letter-spacing:3px;

}

.btn,
.btn-outline{

padding:13px 25px;

}

}

/* ==========================================
   SIMPLE FADE-IN
========================================== */

.hero,
.about,
.services,
.plans,
.cta,
.contact{

animation:pageFade 1s ease;

}

@keyframes pageFade{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* Hero WiFi Icon */

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.wifi-icon{
    width:250px;
    height:250px;
    border-radius:50%;
    background:linear-gradient(135deg,#00c853,#00e676);
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    box-shadow:0 0 40px rgba(0,200,83,.5);
}

.wifi-icon i{
    font-size:110px;
    color:#fff;
    z-index:5;
    animation:pulse 2s infinite;
}

.ring{
    position:absolute;
    border:3px solid rgba(0,230,118,.35);
    border-radius:50%;
    animation:ripple 3s infinite;
}

.ring1{
    width:280px;
    height:280px;
}

.ring2{
    width:340px;
    height:340px;
    animation-delay:1s;
}

.ring3{
    width:400px;
    height:400px;
    animation-delay:2s;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        text-shadow:0 0 10px #fff;
    }

    50%{
        transform:scale(1.08);
        text-shadow:0 0 35px #fff;
    }

    100%{
        transform:scale(1);
        text-shadow:0 0 10px #fff;
    }

}

@keyframes ripple{

    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(1.25);
        opacity:0;
    }

}
