/*==================================================
ELI-NET
STYLE.CSS
PART 1
RESET + BODY + TOPBAR + NAVBAR + HERO
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f6f9fc;
    color:#1f2937;
    overflow-x:hidden;
    line-height:1.7;
}

/*==================================================
CONTAINER
==================================================*/

.container{
    max-width:1280px;
}

/*==================================================
LINKS
==================================================*/

a{
    text-decoration:none;
    transition:.35s;
}

img{
    max-width:100%;
    display:block;
}

/*==================================================
TOP BAR
==================================================*/

.topbar{

    background:#ffffff;

    border-bottom:1px solid #e8edf5;

    padding:10px 0;

    font-size:14px;

}

.top-contact{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-contact a{

    color:#334155;

    font-weight:500;

}

.top-contact i{

    color:#0d6efd;

    margin-right:6px;

}

.top-social{

    display:flex;

    justify-content:flex-end;

    gap:12px;

}

.top-social a{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#f1f5f9;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#0d6efd;

}

.top-social a:hover{

    background:#0d6efd;

    color:#fff;

}

/*==================================================
HEADER
==================================================*/

#header{

    position:sticky;

    top:0;

    z-index:999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    box-shadow:0 10px 35px rgba(15,23,42,.05);

}

/*==================================================
NAVBAR
==================================================*/

.navbar{

    padding:18px 0;

}

.navbar-brand img{

    height:58px;

}

.nav-link{

    color:#1e293b !important;

    font-weight:600;

    margin:0 10px;

    position:relative;

}

.nav-link:hover{

    color:#0d6efd !important;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:50px;

    background:#0d6efd;

    transition:.35s;

}

.nav-link:hover::after{

    width:100%;

}

.client-btn{

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    padding:12px 22px;

    border-radius:12px;

    font-weight:600;

    box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.client-btn:hover{

    transform:translateY(-3px);

    color:#fff;

}

/*==================================================
HERO
==================================================*/

.hero{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:linear-gradient(180deg,#ffffff 0%,#eef6ff 100%);

}

/* Glow */

.hero::before{

    content:"";

    position:absolute;

    width:750px;

    height:750px;

    right:-220px;

    top:-280px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(59,130,246,.12),
    transparent 70%);

}

.hero::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    left:-180px;

    bottom:-250px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(0,180,255,.08),
    transparent 70%);

}

.hero .container{

    position:relative;

    z-index:5;

}

/*==================================================
BADGE
==================================================*/

.hero-badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:#e0efff;

    color:#0d6efd;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}

/*==================================================
TITLE
==================================================*/

.hero h1{

    font-size:64px;

    line-height:1.1;

    font-weight:800;

    color:#0f172a;

    margin-bottom:25px;

}

.hero p{

    font-size:18px;

    color:#64748b;

    max-width:560px;

    margin-bottom:35px;

}

/*==================================================
BUTTONS
==================================================*/

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.btn-call{

    background:#2563eb;

    color:#fff;

    padding:15px 26px;

    border-radius:14px;

    font-weight:600;

    box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.btn-call:hover{

    color:#fff;

    transform:translateY(-4px);

}

.btn-whatsapp{

    background:#22c55e;

    color:#fff;

    padding:15px 26px;

    border-radius:14px;

    font-weight:600;

}

.btn-whatsapp:hover{

    color:#fff;

    transform:translateY(-4px);

}

.btn-package{

    background:#fff;

    color:#2563eb;

    padding:15px 26px;

    border-radius:14px;

    border:1px solid #dbeafe;

    font-weight:600;

}

.btn-package:hover{

    background:#2563eb;

    color:#fff;

}

/*==================================================
IMAGE
==================================================*/

.hero-img{

    width:100%;

    max-width:640px;

    margin:auto;

    filter:drop-shadow(0 35px 50px rgba(0,80,200,.18));

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.hero{

padding:80px 0;

text-align:center;

}

.hero h1{

font-size:42px;

}

.hero p{

margin:auto auto 30px;

}

.hero-buttons{

justify-content:center;

margin-bottom:40px;

}

.hero-img{

max-width:430px;

}

}/*==================================================
PART 2
FEATURES
ABOUT
STATS
SERVICES
PACKAGES
==================================================*/

/*=========================================
SECTION
=========================================*/

section{
    padding:100px 0;
}

.section-title{
    margin-bottom:70px;
}

.section-title span{

    display:inline-block;

    background:#eaf3ff;

    color:#2563eb;

    padding:8px 18px;

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

.section-title h2{

    font-size:42px;

    font-weight:800;

    color:#0f172a;

}

.section-title p{

    color:#64748b;

    margin-top:15px;

}

/*=========================================
FEATURE BAR
=========================================*/

.features-bar{

    margin-top:-55px;

    position:relative;

    z-index:100;

}

.feature-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:0 20px 50px rgba(15,23,42,.08);

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-8px);

}

.feature-card i{

    font-size:45px;

    color:#2563eb;

    margin-bottom:18px;

}

.feature-card h4{

    font-size:22px;

    font-weight:700;

    color:#0f172a;

}

.feature-card p{

    color:#64748b;

    margin-top:10px;

}

/*=========================================
ABOUT
=========================================*/

.about-section{

    background:#fff;

}

.about-section h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;

    color:#0f172a;

}

.about-section p{

    color:#64748b;

    margin-bottom:35px;

}

.about-list{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.about-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

}

.about-item i{

    width:70px;

    height:70px;

    background:#eef6ff;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    color:#2563eb;

}

.about-item h5{

    font-weight:700;

    color:#0f172a;

}

.about-item p{

    margin:5px 0 0;

    color:#64748b;

}

/*=========================================
STATS
=========================================*/

.stats{

    background:#f8fbff;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 35px rgba(15,23,42,.05);

}

.stat-card h2{

    font-size:48px;

    color:#2563eb;

    font-weight:800;

}

.stat-card span{

    color:#64748b;

}

/*=========================================
SERVICES
=========================================*/

.services{

    background:#ffffff;

}

.service-box{

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 20px 40px rgba(15,23,42,.06);

    transition:.35s;

    height:100%;

}

.service-box:hover{

    transform:translateY(-10px);

}

.service-box i{

    width:85px;

    height:85px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#eef6ff;

    color:#2563eb;

    font-size:38px;

    margin:auto;

    margin-bottom:25px;

}

.service-box h4{

    font-size:24px;

    font-weight:700;

    color:#0f172a;

}

.service-box p{

    margin-top:12px;

    color:#64748b;

}

/*=========================================
PACKAGES
=========================================*/

.packages{

    background:#f8fbff;

}

.package-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    padding:45px;

    box-shadow:0 20px 60px rgba(15,23,42,.08);

    transition:.35s;

    height:100%;

}

.package-card:hover{

    transform:translateY(-12px);

}

.package-card.featured{

    border:3px solid #2563eb;

    transform:scale(1.03);

}

.package-card.featured:hover{

    transform:translateY(-12px) scale(1.03);

}

.recommended{

    position:absolute;

    top:-14px;

    left:50%;

    transform:translateX(-50%);

    background:#2563eb;

    color:#fff;

    padding:8px 22px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

}

.package-header{

    text-align:center;

    margin-bottom:25px;

}

.package-header h3{

    color:#2563eb;

    font-size:24px;

    font-weight:700;

}

.package-header h1{

    font-size:72px;

    font-weight:800;

    color:#0f172a;

    margin:15px 0 0;

}

.package-header span{

    color:#64748b;

}

.package-price{

    text-align:center;

    font-size:28px;

    font-weight:700;

    color:#111827;

    margin-bottom:30px;

}

.package-card ul{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.package-card ul li{

    padding:14px 0;

    border-bottom:1px solid #edf2f7;

    color:#475569;

}

.package-card ul li i{

    color:#22c55e;

    margin-right:10px;

}

.package-btn{

    display:block;

    text-align:center;

    padding:16px;

    border-radius:14px;

    background:#2563eb;

    color:#fff;

    font-weight:700;

}

.package-btn:hover{

    background:#0b5ed7;

    color:#fff;

}/*==================================================
PART 3
FAMILY
BUSINESS
COVERAGE
STEPS
CTA
==================================================*/

/*=========================================
FAMILY
=========================================*/

.family{
    background:#ffffff;
}

.family img{
    max-width:100%;
    filter:drop-shadow(0 25px 45px rgba(37,99,235,.12));
}

.section-tag{
    display:inline-block;
    background:#eaf3ff;
    color:#2563eb;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.family h2{
    font-size:46px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:25px;
}

.family p{
    color:#64748b;
    margin-bottom:30px;
}

.feature-list{
    list-style:none;
    padding:0;
    margin-bottom:35px;
}

.feature-list li{
    padding:12px 0;
    color:#475569;
    font-size:17px;
}

.feature-list i{
    color:#22c55e;
    margin-right:12px;
}

.btn-main{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
    box-shadow:0 18px 40px rgba(37,99,235,.25);
}

.btn-main:hover{
    background:#0b5ed7;
    color:#fff;
    transform:translateY(-4px);
}

/*=========================================
BUSINESS
=========================================*/

.business{
    background:#f8fbff;
}

.business img{
    max-width:100%;
    filter:drop-shadow(0 25px 45px rgba(37,99,235,.12));
}

.business h2{
    font-size:46px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:25px;
}

.business p{
    color:#64748b;
    margin-bottom:30px;
}

/*=========================================
COVERAGE
=========================================*/

.coverage{
    background:#ffffff;
}

.coverage h2{
    font-size:44px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.coverage p{
    color:#64748b;
    margin-bottom:30px;
}

.coverage-box{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.coverage-box input{
    height:58px;
    border-radius:14px;
    border:1px solid #dbe4ef;
    box-shadow:none;
}

.coverage-box input:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 .2rem rgba(37,99,235,.15);
}

.coverage-btn{
    border:none;
    background:#2563eb;
    color:#fff;
    padding:0 30px;
    border-radius:14px;
    font-weight:700;
    white-space:nowrap;
}

.coverage-btn:hover{
    background:#0b5ed7;
}

.coverage-contact a{
    color:#2563eb;
    font-weight:700;
    font-size:20px;
}

.coverage-contact i{
    margin-right:8px;
}

.coverage img{
    filter:drop-shadow(0 25px 45px rgba(37,99,235,.12));
}

/*=========================================
STEPS
=========================================*/

.steps{
    background:#f8fbff;
}

.step-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 20px 40px rgba(15,23,42,.06);
    transition:.35s;
    height:100%;
}

.step-card:hover{
    transform:translateY(-10px);
}

.step-number{
    width:55px;
    height:55px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
}

.step-card i{
    font-size:42px;
    color:#2563eb;
    margin-bottom:20px;
}

.step-card h4{
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.step-card p{
    color:#64748b;
}

/*=========================================
CTA
=========================================*/

.cta{

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    border-radius:35px;

    margin:90px auto;

    max-width:1280px;

    overflow:hidden;

}

.cta .container{

    padding:65px 40px;

}

.cta h2{

    font-size:46px;

    font-weight:800;

    margin-bottom:15px;

}

.cta p{

    opacity:.9;

    font-size:18px;

}

.btn-call-big{

    display:inline-block;

    background:#fff;

    color:#2563eb;

    padding:18px 38px;

    border-radius:16px;

    font-weight:700;

    box-shadow:0 20px 40px rgba(255,255,255,.20);

}

.btn-call-big:hover{

    background:#f8fafc;

    color:#0b5ed7;

    transform:translateY(-4px);

}/*==================================================
PART 4
TESTIMONIALS
FAQ
CONTACT
FOOTER
FLOAT BUTTONS
BACK TO TOP
RESPONSIVE
==================================================*/

/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{
    background:#ffffff;
}

.testimonial-card{
    background:#fff;
    border-radius:24px;
    padding:40px 35px;
    text-align:center;
    box-shadow:0 20px 50px rgba(15,23,42,.06);
    transition:.35s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card i{
    font-size:48px;
    color:#2563eb;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#64748b;
    font-size:17px;
    margin-bottom:20px;
}

.testimonial-card h5{
    color:#f59e0b;
    font-size:22px;
}

/*=========================================
FAQ
=========================================*/

.faq{
    background:#f8fbff;
}

.accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:18px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.accordion-button{
    background:#fff;
    padding:22px;
    font-weight:700;
    color:#0f172a;
    box-shadow:none;
}

.accordion-button:not(.collapsed){
    background:#2563eb;
    color:#fff;
}

.accordion-body{
    background:#fff;
    color:#64748b;
    padding:22px;
}

/*=========================================
CONTACT
=========================================*/

.contact{
    background:#ffffff;
}

.contact h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:20px;
    color:#0f172a;
}

.contact p{
    color:#64748b;
    margin-bottom:35px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.contact-item i{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#eef6ff;
    color:#2563eb;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
}

.contact-item h5{
    margin-bottom:5px;
    font-weight:700;
}

.contact-item a{
    color:#475569;
}

.contact-form{
    background:#fff;
    border-radius:28px;
    padding:40px;
    box-shadow:0 20px 60px rgba(15,23,42,.06);
}

.contact-form .form-control{
    border-radius:14px;
    height:56px;
    border:1px solid #dbe4ef;
    margin-bottom:18px;
}

.contact-form textarea.form-control{
    height:auto;
}

.contact-form .form-control:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 .2rem rgba(37,99,235,.15);
}

.send-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:14px;
    background:#2563eb;
    color:#fff;
    font-weight:700;
}

.send-btn:hover{
    background:#0b5ed7;
}

/*=========================================
MAP
=========================================*/

.map iframe{
    width:100%;
    height:450px;
    border:none;
}

/*=========================================
FOOTER
=========================================*/

.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:80px 0 25px;
}

.footer-logo{
    height:60px;
    margin-bottom:20px;
}

.footer h4{
    color:#fff;
    margin-bottom:20px;
    font-weight:700;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer li{
    margin-bottom:12px;
}

.footer a{
    color:#cbd5e1;
}

.footer a:hover{
    color:#fff;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1e293b;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-social a:hover{
    background:#2563eb;
}

.footer hr{
    border-color:rgba(255,255,255,.08);
    margin:50px 0 25px;
}

.copyright{
    text-align:center;
    color:#94a3b8;
}

/*=========================================
FLOAT BUTTONS
=========================================*/

.floating-call,
.floating-whatsapp{

    position:fixed;

    right:25px;

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:22px;

    z-index:999;

    box-shadow:0 15px 35px rgba(15,23,42,.18);

}

.floating-call{

    bottom:95px;

    background:#2563eb;

}

.floating-whatsapp{

    bottom:25px;

    background:#22c55e;

}

.floating-call:hover,
.floating-whatsapp:hover{

    color:#fff;

    transform:scale(1.08);

}

/*=========================================
BACK TO TOP
=========================================*/

#backToTop{

    position:fixed;

    bottom:170px;

    right:25px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#0f172a;

    color:#fff;

    cursor:pointer;

    display:none;

    z-index:999;

}

#backToTop:hover{

    background:#2563eb;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.top-contact,
.top-social{

justify-content:center;

margin-bottom:10px;

}

.topbar{

text-align:center;

}

.navbar-brand img{

height:50px;

}

.hero h1{

font-size:42px;

}

.hero{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.section-title h2{

font-size:34px;

}

.about-section h2,
.family h2,
.business h2,
.coverage h2,
.contact h2{

font-size:34px;

}

.cta{

border-radius:0;

margin:0;

}

.cta h2{

font-size:34px;

text-align:center;

}

.cta p{

text-align:center;

}

.btn-call-big{

margin-top:25px;

display:block;

text-align:center;

}

.coverage-box{

flex-direction:column;

}

.coverage-btn{

height:56px;

}

.contact-form{

margin-top:40px;

}

}

@media(max-width:576px){

.hero{

padding:70px 0;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.hero-buttons a{

width:100%;

text-align:center;

}

.package-header h1{

font-size:58px;

}

.section-title{

margin-bottom:45px;

}

section{

padding:70px 0;

}

.floating-call,
.floating-whatsapp{

width:52px;
height:52px;

}

}