
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}
.hero-content{
    margin-top:80px;
}
body{
    font-family:'Poppins',sans-serif;
    background:#040816;
    color:white;
    overflow-x:hidden;
}

#particles-js{
    position:fixed;
    inset:0;
    z-index:-2;
}

body::before{
    content:'';
    position:fixed;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#00c3ff33,transparent 70%);
    top:-250px;
    left:-250px;
    z-index:-1;
    cursor: pointer;
    animation:glowMove 10s infinite alternate;
}

body::after{
    content:'';
    position:fixed;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#005eff22,transparent 70%);
    bottom:-200px;
    right:-200px;
    z-index:-1;
    animation:glowMove2 12s infinite alternate;
}

@keyframes glowMove{
    100%{
        transform:translate(120px,80px);
    }
}

@keyframes glowMove2{
    100%{
        transform:translate(-120px,-60px);
    }
}

.cursor{
    width:20px;
    height:20px;
    border:2px solid #00c3ff;
    border-radius:50%;
    position:fixed;
    pointer-events:none;
    z-index:99999;
    transform:translate(-50%,-50%);
    box-shadow:0 0 20px #00c3ff;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    backdrop-filter:blur(12px);
    background:rgba(0,0,0,0.25);
}

.logo{
    font-size:32px;
    font-weight:800;
    font-family:'Orbitron',sans-serif;
}

.logo span{
    color:#00c3ff;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:0.3s;
    position:relative;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#00c3ff;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

.menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    padding:0 8%;
    overflow:hidden;
}

.hero-content{
    max-width:950px;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:12px 25px;
    border-radius:40px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    margin-bottom:30px;
    backdrop-filter:blur(10px);
}

.hero h1{
    font-size:90px;
    line-height:1;
    margin-bottom:25px;
    font-family:'Orbitron',sans-serif;
    text-shadow:0 0 25px rgba(0,195,255,0.4);
}

.hero h1 span{
    color:#00c3ff;
}

.hero p{
    color:#c5c5c5;
    font-size:20px;
    line-height:1.9;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.btn-primary{
    background:linear-gradient(45deg,#00c3ff,#005eff);
    color:white;
    box-shadow:0 0 30px rgba(0,195,255,0.35);
}

.btn-primary:hover{
    transform:translateY(-8px) scale(1.03);
}

.btn-secondary{
    border:2px solid #00c3ff;
    color:white;
}

.btn-secondary:hover{
    background:#00c3ff;
}

.floating-icon{
    position:absolute;
    font-size:60px;
    color:#00c3ff22;
    animation:float 6s infinite ease-in-out;
}

.icon1{top:15%;left:10%;}
.icon2{top:20%;right:12%;}
.icon3{bottom:20%;left:15%;}
.icon4{bottom:18%;right:20%;}

@keyframes float{
    50%{
        transform:translateY(-30px);
    }
}

.hero-card{
    position:absolute;
    right:8%;
    bottom:10%;
    width:280px;
    padding:30px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    backdrop-filter:blur(15px);
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

.card-line{
    width:100%;
    height:4px;
    border-radius:20px;
    background:linear-gradient(45deg,#00c3ff,#005eff);
    margin-bottom:20px;
}

.card-stats{
    display:flex;
    justify-content:space-between;
    margin-top:20px;
}

.card-stats span{
    display:block;
    color:#00c3ff;
    font-size:28px;
    font-weight:700;
}

section{
    padding:120px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#00c3ff;
    letter-spacing:3px;
}

.section-title h2{
    font-size:55px;
    margin-top:15px;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    height:500px;
    border-radius:30px;
    background:
    linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),
    url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?q=80&w=2070&auto=format&fit=crop') center/cover;
}

.about-right p{
    color:#c9c9c9;
    line-height:1.9;
    margin-bottom:30px;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.about-box,
.service-card,
.tech-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
}

.about-box{
    padding:30px;
    border-radius:25px;
    transition:0.4s;
}

.about-box:hover,
.service-card:hover,
.tech-box:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(0,195,255,0.2);
}

.about-box i{
    color:#00c3ff;
    font-size:35px;
    margin-bottom:20px;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    border-radius:28px;
    overflow:hidden;
    transition:0.5s;
}

.service-image{
    height:240px;
}

.ai-img{
    background:url('https://images.unsplash.com/photo-1674027444485-cec3da58eef4?q=80&w=1974&auto=format&fit=crop') center/cover;
}

.dev-img{
    background:url('https://images.unsplash.com/photo-1515879218367-8466d910aaa4?q=80&w=2070&auto=format&fit=crop') center/cover;
}

.formation-img{
    background:url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2071&auto=format&fit=crop') center/cover;
}

.service-content{
    padding:35px;
}

.service-content i{
    font-size:40px;
    color:#00c3ff;
    margin-bottom:20px;
}

.service-content h3{
    font-size:30px;
    margin-bottom:15px;
}

.service-content p{
    color:#bbb;
    line-height:1.8;
}

.tech-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.tech-box{
    padding:40px;
    border-radius:24px;
    text-align:center;
    font-size:22px;
    font-weight:600;
    transition:0.4s;
}

.contact-form{
    max-width:850px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:20px;
    border:none;
    border-radius:18px;
    background:rgba(255,255,255,0.06);
    color:white;
    border:1px solid rgba(255,255,255,0.08);
}

.contact-form textarea{
    min-height:200px;
}

.contact-form button{
    padding:18px;
    border:none;
    border-radius:50px;
    background:linear-gradient(45deg,#00c3ff,#005eff);
    color:white;
    font-weight:600;
    cursor:pointer;
}

footer{
    padding:70px 8%;
    text-align:center;
}

.footer-logo{
    font-size:40px;
    font-family:'Orbitron',sans-serif;
    margin-bottom:20px;
}

.socials{
    display:flex;
    justify-content:center;
    gap:20px;
    margin:30px 0;
}

.socials a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    background:rgba(255,255,255,0.08);
    color:white;
}
/* CONTACT */

.contact{

    position:relative;

    overflow:hidden;

}

.contact-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:70px;

}

.contact-card{

    padding:35px;

    border-radius:28px;

    text-align:center;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    transition:0.5s;

    position:relative;

    overflow:hidden;
    min-height: 320px;

}

.contact-card::before{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        circle,
        rgba(0,195,255,0.15),
        transparent 70%
    );

    top:-80px;
    right:-80px;

}
.contact-card:nth-child(3) a{

    font-size:14px;

}

.contact-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 0 30px rgba(0,195,255,0.15);

}
.contact-card a{

    color:#c9c9c9;

    text-decoration:none;

    line-height:1.8;

    transition:0.3s;

    word-break:break-word;

    overflow-wrap:break-word;

    font-size:15px;

}

.contact-icon{

    width:80px;
    height:80px;

    margin:auto;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    linear-gradient(
        45deg,
        #00c3ff,
        #005eff
    );

    margin-bottom:25px;

    box-shadow:
    0 0 25px rgba(0,195,255,0.35);

}

.contact-icon i{

    font-size:32px;

    color:white;

}

.contact-card h3{

    margin-bottom:12px;

    font-size:24px;

}

.contact-card p,
.contact-card a{

    color:#c9c9c9;

    text-decoration:none;

    line-height:1.8;

    transition:0.3s;

}

.contact-card a:hover{

    color:#00c3ff;

}

.whatsapp-container{

    display:flex;

    justify-content:center;

    margin-top:60px;

}

.whatsapp-btn{

    display:flex;

    align-items:center;

    gap:16px;

    padding:20px 38px;

    border-radius:60px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    color:white;

    background:
    linear-gradient(
        45deg,
        #00c853,
        #00e676
    );

    box-shadow:
    0 0 35px rgba(0,230,118,0.3);

    transition:0.4s;

}

.whatsapp-btn:hover{

    transform:
    translateY(-8px)
    scale(1.03);

}

.whatsapp-btn i{

    font-size:28px;

}
@media(max-width:1100px){

    .contact-container{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:768px){

    .contact-container{

        grid-template-columns:1fr;

    }

}
@media(max-width:1100px){

    .services-container,
    .tech-grid,
    .about-container{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:60px;
    }

    .hero-card{
        display:none;
    }
}

@media(max-width:768px){

    nav{
        position:absolute;
        top:100%;
        right:-100%;
        width:260px;
        background:#08111f;
        flex-direction:column;
        padding:30px;
        transition:0.5s;
    }

    nav.active{
        right:0;
    }

    .menu-btn{
        display:block;
    }

    .hero h1{
        font-size:42px;
    }

    .about-grid,
    .tech-grid{
        grid-template-columns:1fr;
    }

    .floating-icon{
        display:none;
    }

    section{
        padding:90px 6%;
    }
}