/* ==========================
   ENSPHERE SYSTEMS
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fbff;
    color:#222;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo img{
    height:55px;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin-left:30px;
}

.nav-links li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
}

.nav-links li a:hover,
.nav-links li a.active{
    color:#0066ff;
}

.quote-btn{
    background:#0066ff;
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    background:#004bcc;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* HERO */

.hero{
    padding:150px 0 80px;
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-size:52px;
    color:#0b1f55;
    margin-bottom:20px;
}

.hero-content h3{
    color:#0066ff;
    margin-bottom:20px;
}

.hero-content p{
    color:#666;
    margin-bottom:30px;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
}

.btn{
    display:inline-block;
    padding:14px 32px;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

.btn-primary{
    background:#0066ff;
    color:#fff;
}

.btn-primary:hover{
    background:#004bcc;
}

.btn-outline{
    border:2px solid #0066ff;
    color:#0066ff;
    margin-left:15px;
}

.btn-outline:hover{
    background:#0066ff;
    color:#fff;
}

/* SECTION */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#0b1f55;
}

/* SERVICES */

.services{
    padding:80px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:15px;
    padding:35px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:45px;
    color:#0066ff;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
}

/* WHY */

.why{
    padding:80px 0;
    background:#eef5ff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.why-box i{
    font-size:40px;
    color:#0066ff;
    margin-bottom:15px;
}

/* CTA */

.cta{
    background:#0066ff;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.cta h2{
    font-size:38px;
    margin-bottom:15px;
}

.cta .btn-primary{
    background:#fff;
    color:#0066ff;
    margin-top:25px;
}

/* FOOTER */

.footer{
    background:#0b1f55;
    color:#fff;
    padding:70px 0 20px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:35px;
}

.footer-logo{
    width:170px;
    margin-bottom:15px;
}

.footer-box h3{
    margin-bottom:20px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#ddd;
    text-decoration:none;
}

.footer-box ul li a:hover{
    color:#fff;
}

.social-icons{
    margin-top:20px;
}

.social-icons a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#0066ff;
    color:#fff;
    text-decoration:none;
    margin-right:10px;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
}

/* RESPONSIVE */

@media(max-width:991px){

.hero-container{
flex-direction:column;
text-align:center;
}

.nav-links{
display:none;
}

.menu-toggle{
display:block;
}

.hero-content h1{
font-size:38px;
}

.section-title h2{
font-size:32px;
}

}
/* Mobile Menu */
.nav-links.show{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#ffffff;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.nav-links.show li{
    margin:15px 0;
}

/* Sticky Header */
.header.sticky{
    background:#ffffff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

/* Scroll Animation */
.hero-content,
.hero-image,
.service-card,
.why-box{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.hero-content.active,
.hero-image.active,
.service-card.active,
.why-box.active{
    opacity:1;
    transform:translateY(0);
}

/* Services Page */

.page-banner{
    background:linear-gradient(135deg,#0b1f55,#0066ff);
    color:#fff;
    text-align:center;
    padding:140px 20px 80px;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:15px;
}

.page-banner p{
    font-size:18px;
}

.services-page{
    padding:80px 0;
}


.stats{
padding:80px 0;
background:#0d6efd;
color:#fff;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.stat-box{
background:rgba(255,255,255,.12);
padding:35px;
border-radius:15px;
text-align:center;
transition:.3s;
}

.stat-box:hover{
transform:translateY(-8px);
background:rgba(255,255,255,.2);
}

.stat-box h2{
font-size:48px;
margin-bottom:10px;
}

.stat-box p{
font-size:18px;
}

/* Testimonial */

.testimonial{
padding:80px 0;
background:#f8fbff;
}

.section-title{
text-align:center;
font-size:38px;
color:#0d6efd;
margin-bottom:40px;
}

.testimonial-box{
max-width:900px;
margin:auto;
background:#fff;
padding:40px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
text-align:center;
}

.quote{
font-size:20px;
line-height:1.8;
font-style:italic;
color:#555;
margin-bottom:25px;
}

.testimonial-box h3{
color:#0d6efd;
margin-bottom:5px;
}