*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
 
html{
    scroll-behavior:smooth;
}
 
body{
    background:#0f0f11;
    color:white;
}
 
/* Navbar */
 
nav{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    backdrop-filter:blur(15px);
    background:rgba(0,0,0,.45);
    z-index:1000;
}
 
.logo img{
    width:170px;
}
 
nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}
 
nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}
 
nav a:hover{
    color:#ff6a00;
}
 
/* Hero */
 
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:120px 8%;
    overflow:hidden;
}
 
.hero-text{
    width:50%;
}
 
.hero-text h1{
    font-size:70px;
    line-height:1.1;
}
 
.hero-text h2{
    margin-top:20px;
    color:#ff6a00;
    font-size:35px;
}
 
.hero-text p{
    margin:30px 0;
    color:#bbb;
    font-size:20px;
    line-height:1.8;
}
 
.btn{
    display:inline-block;
    padding:18px 42px;
    border-radius:50px;
    background:linear-gradient(90deg,#ff6a00,#8b2eff);
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}
 
.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(255,106,0,.4);
}
 
.hero-image{
    width:40%;
    display:flex;
    justify-content:center;
}
 
.hero-image img{
    width:100%;
    max-width:450px;
    animation:float 5s ease-in-out infinite;
}
 
@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-20px);}
    100%{transform:translateY(0);}
}
 
/* Mobile */
 
@media(max-width:900px){
 
.hero{
flex-direction:column;
text-align:center;
padding-top:150px;
}
 
.hero-text{
width:100%;
}
 
.hero-image{
width:80%;
margin-top:60px;
}
 
.hero-text h1{
font-size:48px;
}
 
.hero-text h2{
font-size:24px;
}
 
nav ul{
display:none;
}
 
}
/* WHY SECTION */
 
.why{
 
padding:100px 8%;
background:#151518;
 
}
 
.heading{
 
text-align:center;
margin-bottom:60px;
 
}
 
.heading h4{
 
color:#ff6a00;
letter-spacing:3px;
margin-bottom:15px;
 
}
 
.heading h2{
 
font-size:48px;
margin-bottom:20px;
 
}
 
.heading p{
 
color:#bdbdbd;
max-width:700px;
margin:auto;
line-height:1.8;
 
}
 
.cards{
 
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
 
}
 
.card{
 
background:#1f1f24;
padding:35px;
border-radius:20px;
transition:.35s;
border:1px solid transparent;
 
}
 
.card:hover{
 
transform:translateY(-10px);
border-color:#ff6a00;
box-shadow:0 15px 40px rgba(255,106,0,.25);
 
}
 
.card h3{
 
margin-bottom:15px;
font-size:24px;
 
}
 
.card p{
 
color:#bdbdbd;
line-height:1.7;
 
}
has context menu
/* Statistics */
 
.stats{
    background:linear-gradient(90deg,#ff6a00,#8b2eff);
    padding:80px 8%;
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
    gap:30px;
}
 
.stat{
    text-align:center;
    color:white;
}
 
.stat h1{
    font-size:60px;
    font-weight:700;
}
 
.stat p{
    font-size:20px;
    margin-top:10px;
}
/* Portfolio */
 
.portfolio{
    padding:100px 8%;
    background:#0f0f11;
}
 
.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}
 
.project{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}
 
.project img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}
 
.project:hover img{
    transform:scale(1.1);
}
 
.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.9),transparent);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:25px;
    opacity:0;
    transition:.4s;
}
 
.project:hover .overlay{
    opacity:1;
}
 
.overlay h3{
    color:white;
    font-size:28px;
}
 
.overlay p{
    color:#ff6a00;
    margin-top:8px;
}
/* SERVICES */
 
.services{
    padding:100px 8%;
    background:#151518;
}
 
.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:60px;
}
 
.service-card{
    background:#1f1f24;
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    border:1px solid transparent;
}
 
.service-card:hover{
    transform:translateY(-10px);
    border-color:#ff6a00;
    box-shadow:0 15px 40px rgba(255,106,0,.25);
}
 
.icon{
    font-size:50px;
    margin-bottom:20px;
}
 
.service-card h3{
    margin-bottom:15px;
    font-size:24px;
}
 
.service-card p{
    color:#bdbdbd;
    line-height:1.7;
}
/* CONTACT */
 
.contact{
    padding:100px 8%;
    background:#0f0f11;
}
 
.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    margin-top:60px;
}
 
.contact-info h3{
    font-size:40px;
    margin-bottom:30px;
}
 
.contact-info p{
    margin:20px 0;
    color:#ccc;
    font-size:18px;
}
 
.contact-info a{
    color:#ff6a00;
    text-decoration:none;
}
 
.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}
 
.contact-form input,
.contact-form textarea,
.contact-form select{
    padding:18px;
    border:none;
    border-radius:12px;
    background:#1f1f24;
    color:white;
    font-size:16px;
}
 
.contact-form button{
    padding:18px;
    background:linear-gradient(90deg,#ff6a00,#8b2eff);
    color:white;
    border:none;
    border-radius:50px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}
 
.contact-form button:hover{
    transform:translateY(-5px);
}
 
@media(max-width:900px){
 
.contact-container{
grid-template-columns:1fr;
}
 
}
has context menu
.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:white;
    font-size:2px;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    z-index:999;
    transition:.3s;
}
 
.whatsapp:hover{
    transform:scale(1.1);
}
/* FOOTER */
 
footer{
    background:#0b0b0d;
    padding:70px 8% 20px;
}
 
.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}
 
.footer-logo{
    width:180px;
    margin-bottom:20px;
}
 
.footer-about p{
    color:#bdbdbd;
    line-height:1.8;
}
 
.footer-links,
.footer-contact{
    display:flex;
    flex-direction:column;
}
 
.footer-links h3,
.footer-contact h3{
    margin-bottom:20px;
    color:#fff;
}
 
.footer-links a{
    color:#bdbdbd;
    text-decoration:none;
    margin:8px 0;
    transition:.3s;
}
 
.footer-links a:hover{
    color:#ff6a00;
}
 
.footer-contact p{
    color:#bdbdbd;
    margin:8px 0;
}
 
.copyright{
    margin-top:60px;
    border-top:1px solid #222;
    padding-top:20px;
    text-align:center;
    color:#888;
}
 
@media(max-width:900px){
 
.footer-container{
grid-template-columns:1fr;
text-align:center;
}
 
.footer-logo{
margin:auto auto 20px;
}
 
}
/* CLIENTS */
 
.clients{
    padding:100px 8%;
    background:#111;
}
 
.clients-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:60px;
}
 
.client-card{
    background:#1f1f24;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.3s;
    border:1px solid #2b2b30;
}
 
.client-card:hover{
    transform:translateY(-8px);
    border-color:#ff6a00;
    box-shadow:0 15px 35px rgba(255,106,0,.2);
}
 
.client-card img{
    width:120px;
    height:120px;
    object-fit:contain;
    margin-bottom:20px;
}
 
.client-card h3{
    color:#fff;
    margin-bottom:8px;
}
 
.client-card p{
    color:#bbb;
}
 
.coming-soon h1{
    font-size:60px;
    color:#ff6a00;
}