/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#071d49;
    color:#fff;
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HEADER
=========================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(7,29,73,.9);
    backdrop-filter:blur(10px);
    z-index:1000;
    padding:18px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ===========================
   LOGO
=========================== */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:45px;
    height:45px;
    object-fit:contain;
    filter:drop-shadow(0 0 8px #00e5ff);
}

.logo span{
    font-size:28px;
    font-weight:700;
    background:linear-gradient(90deg,#00e5ff,#ffffff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

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

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:#fff;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#00e5ff;
}

.menu-btn{
    display:none;
    color:#00e5ff;
    font-size:30px;
    cursor:pointer;
}
/* ===========================
   HERO
=========================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-text h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text h1 span{
    background:linear-gradient(90deg,#00e5ff,#ffffff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.hero-text p{
    color:#d6d6d6;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:20px;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#00e5ff;
    color:#000;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,229,255,.35);
}

.btn-outline{
    border:2px solid #00e5ff;
    color:#00e5ff;
}

.btn-outline:hover{
    background:#00e5ff;
    color:#000;
}

.hero-image img{
    max-width:500px;
    margin:auto;
    animation:float 3s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}
/* ===========================
   ABOUT
=========================== */

.about{
    padding:100px 0;
    background:#08162f;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,229,255,.15);
}

.about-text h4{
    color:#00e5ff;
    font-size:18px;
    margin-bottom:10px;
}

.about-text h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
}

.about-text p{
    color:#d6d6d6;
    line-height:1.8;
    margin-bottom:20px;
}

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

.services{
    padding:100px 0;
    background:#071d49;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h4{
    color:#00e5ff;
    margin-bottom:10px;
    font-size:18px;
}

.section-heading h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-heading p{
    color:#d6d6d6;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#0f2c63;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,229,255,.25);
}

.service-card i{
    font-size:50px;
    color:#00e5ff;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#d6d6d6;
    line-height:1.7;
}
/* ===========================
   PROJECTS
=========================== */

.projects{
    padding:100px 0;
    background:#08162f;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.project-card{
    background:#0f2c63;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,229,255,.25);
}

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.project-info{
    padding:25px;
}

.project-info h3{
    color:#fff;
    margin-bottom:10px;
    font-size:24px;
}

.project-info p{
    color:#d6d6d6;
    line-height:1.7;
}
/* ===========================
   STATS
=========================== */

.stats{
    padding:80px 0;
    background:#0b2455;
}

.stats-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    background:#102d66;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px 20px;
    text-align:center;
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,229,255,.25);
}

.stat-box h2{
    font-size:48px;
    color:#00e5ff;
    margin-bottom:10px;
    font-weight:700;
}

.stat-box p{
    font-size:18px;
    color:#d6d6d6;
    font-weight:500;
}

@media(max-width:768px){

    .stats-container{
        grid-template-columns:1fr 1fr;
    }

    .stat-box h2{
        font-size:36px;
    }

}

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

.contact{
    padding:100px 0;
    background:#071d49;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:20px;
    color:#fff;
}

.info-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#00e5ff;
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
}

.info-box h3{
    margin-bottom:5px;
}

.info-box p{
    color:#d6d6d6;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    outline:none;
    background:#fff;
    color:#000;
    font-size:16px;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    width:fit-content;
    cursor:pointer;
}
/* ===========================
   FOOTER
=========================== */

footer{
    background:#050b18;
    padding:70px 20px 30px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-logo img{
    width:50px;
    height:50px;
}

.footer-logo h2{
    font-size:32px;
    background:linear-gradient(90deg,#00e5ff,#fff);
    background-clip:text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.social-icons{
    display:flex;
    gap:18px;
}

.social-icons a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#00e5ff;
    color:#000;
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-6px);
}

.copyright{
    color:#999;
}

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

.whatsapp,
.call-btn,
.top-btn{
    position:fixed;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    z-index:999;
}

.whatsapp{
    left:20px;
    bottom:20px;
    background:#25D366;
    color:#fff;
}

.call-btn{
    left:20px;
    bottom:90px;
    background:#0d6efd;
    color:#fff;
}

.top-btn{
    right:20px;
    bottom:20px;
    background:#00e5ff;
    color:#000;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

.hero-content,
.about-container,
.contact-container{
grid-template-columns:1fr;
text-align:center;
}

.hero-text h1{
font-size:40px;
}

.nav-links{
position:absolute;
top:80px;
left:-100%;
width:100%;
background:#071d49;
flex-direction:column;
padding:30px;
transition:.4s;
}

.nav-links.active{
left:0;
}

.menu-btn{
display:block;
}

}

/* ===========================
   SCROLL ANIMATION
=========================== */

.hero-text,
.about-text,
.service-card,
.project-card,
.contact-info,
.contact-form{
opacity:0;
transform:translateY(40px);
transition:.8s;
}

.show{
opacity:1;
transform:translateY(0);
}

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

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

::-webkit-scrollbar-thumb{
background:#00e5ff;
border-radius:20px;
}
.nav-links a.active{
    color:#00e5ff;
    font-weight:600;
}

/* ===========================
   TESTIMONIALS
=========================== */

.testimonials{
    padding:100px 0;
    background:#081b3d;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.testimonial-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,229,255,.25);
}

.testimonial-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:4px solid #00e5ff;
}

.testimonial-card h3{
    color:#fff;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#00e5ff;
    font-size:14px;
}

.stars{
    color:#FFD700;
    font-size:20px;
    margin:15px 0;
}

.testimonial-card p{
    color:#ddd;
    line-height:1.7;
}
/* ===========================
   PRICING
=========================== */

.pricing{
    padding:100px 0;
    background:#0a1f44;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.price-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    position:relative;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.price-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,229,255,.25);
}

.price-card h3{
    font-size:28px;
    color:#fff;
    margin-bottom:15px;
}

.price{
    font-size:46px;
    font-weight:700;
    color:#00e5ff;
    margin-bottom:25px;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.price-card ul li{
    color:#ddd;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.featured{
    border:2px solid #00e5ff;
    transform:scale(1.05);
}

.featured:hover{
    transform:scale(1.08);
}

.badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#00e5ff;
    color:#081b3d;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

@media(max-width:768px){

    .featured{
        transform:scale(1);
    }

    .featured:hover{
        transform:translateY(-10px);
    }

}