*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

html,body{
    width:100%;
    overflow-x:hidden;
}

body{
    background:#050816;
    color:white;
    font-family:'Poppins', sans-serif;
}

/* LOGO */

.logo-section{
    width:100%;
    margin:0;
    padding:0;
    overflow:hidden;
    line-height:0;

    display:flex;
    justify-content:center;
    align-items:center;
}

.logo{
     width:100%;
    height:auto;

    display:block;

    object-fit:contain;

    transform:scale(1.02) translateX(8px);

    transform-origin:center;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* NAVBAR */

nav{
    margin-top:40px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;
}

nav a{
    color:white;

    text-decoration:none;

    font-size:1rem;

    transition:0.3s;
}

nav a:hover{
    color:#3B82F6;
}

/* HERO SECTION */

.hero{
    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    gap:30px;

    padding:50px 0;
}

/* HERO TEXT */

.hero-text{
    flex:1;
}

.hero-text h4{
    color:#2563EB;

    letter-spacing:3px;

    margin-bottom:15px;

    font-size:0.9rem;
}

.hero-text h1{
    font-size:clamp(2rem, 7vw, 6rem);

    line-height:1.1;

    margin-bottom:20px;

    font-weight:700;
}

.hero-text span{
    color:#3B82F6;
}

.hero-text p{
    color:#9CA3AF;

    line-height:1.8;

    margin-bottom:30px;

    max-width:500px;

    font-size:0.95rem;
}

/* BUTTON */

.hero-btn{
    display:inline-block;

    padding:14px 30px;

    background:#2563EB;

    border:none;

    border-radius:12px;

    color:white;

    font-size:1rem;

    text-decoration:none;

    cursor:pointer;

    transition:0.3s;
}

.hero-btn:hover{
    background:#3B82F6;

    transform:translateY(-5px);
}

/* HERO IMAGE */

.hero-image{
    display:flex;

    justify-content:center;

    margin-top:20px;
}

.hero-image img{
    width:100%;

    max-width:500px;

    height:auto;

    display:block;

    object-fit:contain;

    animation:float 4s ease-in-out infinite;

    filter:drop-shadow(0 0 45px rgba(37,99,235,0.6));
}

/* FLOAT */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* SERVICES */

.services{
    padding:10px 0 80px;

    text-align:center;
}

.services h2{
    font-size:2.5rem;

    margin-bottom:15px;
}

.services p{
    color:#9CA3AF;

    margin-bottom:50px;
}

/* GRID */

.service-grid{
    display:grid;

    grid-template-columns:1fr;

    gap:25px;
}

/* CARDS */

.card{
    background:#0F172A;

    padding:40px 25px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,0.05);

    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);

    border-color:#3B82F6;
}

.card h3{
    margin-bottom:15px;

    color:#3B82F6;
}

.card p{
    line-height:1.7;

    margin-bottom:0;
}

/* CONTACT SECTION */

.contact{
    padding:80px 20px;

    text-align:center;
}

.contact h2{
    font-size:2.5rem;

    margin-bottom:15px;
}

.contact-sub{
    color:#9CA3AF;

    margin-bottom:40px;
}

.contact-form{
    max-width:700px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;

    padding:18px;

    background:#0F172A;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:14px;

    color:white;

    font-size:1rem;

    outline:none;

    transition:0.3s;
}

.contact-form textarea{
    min-height:180px;

    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#3B82F6;

    box-shadow:0 0 15px rgba(59,130,246,0.25);
}

.contact-form button{
    padding:16px;

    border:none;

    border-radius:14px;

    background:#2563EB;

    color:white;

    font-size:1rem;

    cursor:pointer;

    transition:0.3s;
}

.contact-form button:hover{
    background:#3B82F6;

    transform:translateY(-3px);
}

/* FOOTER */

footer{
    padding:40px 0;

    text-align:center;

    border-top:1px solid rgba(255,255,255,0.08);

    color:#9CA3AF;
}

footer a{
    color:#3B82F6;

    text-decoration:none;
}

/* MOBILE */

@media(max-width:767px){

    .logo{
        transform:scale(1.02) translateX(2px);
    }

}


/* TABLET */

@media(min-width:768px){

    .hero-image img{
        max-width:450px;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* DESKTOP */

@media(min-width:1024px){

    .hero{
        gap:60px;
    }

    .hero-image img{
        max-width:950px;
    }

    .service-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .logo{
        width:100vw;

        max-width:none;

        margin-left:calc(50% - 50vw);
    }

}

/* TV */

@media(min-width:1600px){

    body{
        font-size:20px;
    }

    .hero h1{
        font-size:7rem;
    }

    .container{
        max-width:1700px;
    }

}

.contact-number{
    margin-top:25px;

    text-align:center;

    color:#9CA3AF;
}

.contact-number a{
    color:#3B82F6;

    text-decoration:none;

    font-weight:600;
}

.hero-text p{
    margin-left:auto;
    margin-right:auto;
}