*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#070b1a;
    color:white;
    overflow-x:hidden;
}

/* GLOW */

.bg-glow{
    position:fixed;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(180px);
    z-index:-1;
}

.glow1{
    background:#00d9ff;
    top:-150px;
    right:-100px;
    opacity:.4;
}

.glow2{
    background:#5f7dff;
    left:-150px;
    top:100px;
    opacity:.4;
}

/* NAVBAR */

.navbar{
    width:100%;
    padding:22px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(12px);
    background:rgba(0,0,0,.2);
}

.logo{
    display:flex;
    align-items:center;
    gap:16px;
}

.logo img{
    width:75px;
}

.logo h2{
    font-size:30px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#00d9ff;
}

.talk-btn{
    padding:14px 26px;
    border-radius:14px;
    background:linear-gradient(to right,#00d9ff,#5f7dff);
    color:white;
    text-decoration:none;
    font-weight:bold;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:60px 8%;
    flex-wrap:wrap;
}

.hero-left{
    flex:1;
}

.small-title{
    color:#00d9ff;
    margin-bottom:20px;
    letter-spacing:2px;
}

.hero h1{
    font-size:78px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero h1 span{
    color:#00d9ff;
}

.hero-text{
    font-size:20px;
    line-height:1.8;
    color:#d0d0d0;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}

.btn{
    padding:18px 35px;
    border-radius:18px;
    text-decoration:none;
    font-weight:bold;
}

.primary-btn{
    background:linear-gradient(to right,#00d9ff,#5f7dff);
    color:white;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,.2);
    color:white;
}

.hero-features{
    display:flex;
    gap:30px;
    margin-top:40px;
    flex-wrap:wrap;
}

.hero-right{
    flex:1;
    text-align:center;
}

.hero-right img{
    width:100%;
    max-width:650px;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    50%{
        transform:translateY(-15px);
    }
}

/* SECTION */

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title p,
.section-tag{
    color:#00d9ff;
    letter-spacing:3px;
    text-align:center;
}

.section-title h2,
.section-title-main{
    font-size:65px;
    text-align:center;
    margin-top:10px;
    margin-bottom:70px;
}

/* SERVICES */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    padding:40px;
    border-radius:30px;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(0,217,255,.2);
}

.service-card i{
    font-size:45px;
    color:#00d9ff;
    margin-bottom:25px;
}

.service-card h3{
    font-size:34px;
    margin-bottom:18px;
}

.service-card p{
    line-height:1.8;
    color:#d0d0d0;
}

/* PROJECTS */

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.project-card{
    position:relative;
    height:500px;
    overflow:hidden;
    border-radius:35px;
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:30px;
    background:linear-gradient(to top,rgba(0,0,0,.9),transparent);
}

.overlay h3{
    font-size:36px;
}

/* ABOUT */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-left p:first-child{
    color:#00d9ff;
    margin-bottom:15px;
}

.about-left h2{
    font-size:70px;
    line-height:1.1;
    margin-bottom:30px;
}

.about-text{
    font-size:20px;
    line-height:1.9;
    color:#d0d0d0;
}

.about-stats{
    display:flex;
    gap:25px;
    margin-top:40px;
    flex-wrap:wrap;
}

.stat-box{
    background:rgba(255,255,255,.05);
    padding:35px;
    border-radius:25px;
    width:180px;
    text-align:center;
}

.stat-box h3{
    font-size:55px;
    color:#00d9ff;
}

.about-right img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:35px;
}

/* CONTACT */

.contact-container{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-form input,
.contact-form textarea{
    padding:22px;
    border:none;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    color:white;
    font-size:18px;
}

.contact-form button{
    padding:22px;
    border:none;
    border-radius:18px;
    background:linear-gradient(to right,#00d9ff,#55ffcc);
    font-size:20px;
    font-weight:bold;
    cursor:pointer;
}

.contact-info{
    background:rgba(255,255,255,.05);
    padding:40px;
    border-radius:25px;
}

.contact-info h3{
    font-size:48px;
    margin-bottom:35px;
}

.contact-info p{
    display:flex;
    gap:15px;
    margin-bottom:30px;
    font-size:18px;
    flex-wrap:wrap;
}

.whatsapp-btn{
    display:inline-block;
    margin-top:20px;
    padding:18px 28px;
    border-radius:16px;
    background:linear-gradient(to right,#00ff99,#55ffcc);
    text-decoration:none;
    color:white;
    font-weight:bold;
}

/* FOOTER */

footer{
    padding:50px 20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.02);
}

.footer-logo{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.footer-logo img{
    width:90px;
}

.footer-logo h2{
    font-size:28px;
}

footer p{
    color:#d0d0d0;
}

/* FLOATING */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#00d66f;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:30px;
    text-decoration:none;
}

/* RESPONSIVE */

/* SMART TV */

@media(min-width:1800px){

    body{
        zoom:1.2;
    }

}

/* LAPTOP */

@media(max-width:1200px){

    .hero h1{
        font-size:60px;
    }

    .about-left h2{
        font-size:58px;
    }

}

/* TABLET */

@media(max-width:991px){

    nav{
        display:none;
    }

    .hero,
    .about,
    .contact-container{
        grid-template-columns:1fr;
        flex-direction:column;
    }

    .hero{
        text-align:center;
    }

    .hero-buttons,
    .hero-features,
    .about-stats{
        justify-content:center;
    }

    .hero h1,
    .about-left h2,
    .section-title h2,
    .section-title-main{
        font-size:48px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .logo{
        flex-direction:column;
    }

    .logo img{
        width:60px;
    }

    .logo h2{
        font-size:22px;
    }

    .hero{
        padding-top:120px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero-text{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .hero-features{
        flex-direction:column;
        gap:10px;
    }

    .project-card{
        height:380px;
    }

    .overlay h3{
        font-size:28px;
    }

    .about-left h2{
        font-size:38px;
    }

    .about-text{
        font-size:16px;
    }

    .stat-box{
        width:100%;
    }

    .about-right img{
        height:400px;
    }

    .contact-info h3{
        font-size:32px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button{
        font-size:16px;
    }

    .floating-whatsapp{
        width:55px;
        height:55px;
        font-size:26px;
    }

}