*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#0d111c;
    color:white;
}

/* NAVBAR */

.navbar{
    width:100%;
    padding:22px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:fixed;
    top:0;

    background:rgba(13,17,28,0.8);
    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,0.05);

    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:700;
    letter-spacing:2px;
}

nav{
    display:flex;
    gap:28px;
}

nav a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

nav a:hover{
    color:#7dd3fc;
}

/* HERO */

.hero{
    min-height:100vh;

    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;

    gap:60px;

    padding:140px 8% 100px;
}

.hero-text{
    flex:1;
    min-width:320px;
}

.badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:rgba(125,211,252,0.12);

    color:#7dd3fc;

    font-size:14px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;

    margin:28px 0;
}

.hero p{
    color:#cbd5e1;

    line-height:1.8;

    max-width:620px;

    font-size:18px;
}

.hero-buttons{
    display:flex;
    gap:16px;

    margin-top:35px;
}

.btn{
    padding:16px 28px;

    border-radius:14px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;
}

.primary{
    background:#2563eb;
    color:white;
}

.primary:hover{
    transform:translateY(-4px);
}

.secondary{
    border:1px solid rgba(255,255,255,0.1);
    color:white;
}

.secondary:hover{
    background:rgba(255,255,255,0.05);
}

/* HERO IMAGE */

.hero-image{
    flex:1;
    min-width:320px;

    display:flex;
    justify-content:center;
}

.main-card{
    width:450px;
    height:450px;

    border-radius:40px;

    background:
    linear-gradient(135deg,#2563eb,#7c3aed);

    position:relative;

    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(37,99,235,0.35);
}

.small-card{
    width:220px;
    height:220px;

    border-radius:30px;

    background:rgba(255,255,255,0.12);

    position:absolute;

    top:60px;
    left:60px;

    backdrop-filter:blur(12px);
}

/* SECTION */

.services{
    padding:100px 8%;
}

.section-head{
    margin-bottom:50px;
}

.section-head h2{
    font-size:52px;
    margin-bottom:15px;
}

.section-head p{
    color:#cbd5e1;
}

/* SERVICE GRID */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.service-box{
    background:#121826;

    padding:35px;

    border-radius:28px;

    border:1px solid rgba(255,255,255,0.05);

    transition:.3s;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box h3{
    margin-bottom:15px;
    font-size:24px;
}

.service-box p{
    color:#cbd5e1;
    line-height:1.7;
}

/* BANNER */

.wide-banner{
    margin:0 8%;

    padding:80px;

    border-radius:40px;

    background:
    linear-gradient(135deg,#161d2f,#1d2942);
}

.wide-banner h2{
    font-size:54px;
    max-width:700px;
}

.wide-banner p{
    color:#cbd5e1;
    margin-top:20px;
    max-width:600px;
    line-height:1.8;
}

/* PAGE TOP */

.page-top{
    padding:170px 8% 80px;
}

.page-top h1{
    font-size:72px;
    margin-bottom:20px;
}

.page-top p{
    color:#cbd5e1;
    line-height:1.8;
    max-width:650px;
}

/* PROJECTS */

.project-list{
    padding:0 8% 100px;
}

.project-item{
    display:flex;
    align-items:center;
    gap:60px;

    margin-bottom:100px;

    flex-wrap:wrap;
}

.reverse{
    flex-direction:row-reverse;
}

.project-preview{
    flex:1;
    min-width:320px;

    height:420px;

    border-radius:32px;
}

.blue{
    background:
    linear-gradient(135deg,#2563eb,#0ea5e9);
}

.purple{
    background:
    linear-gradient(135deg,#9333ea,#ec4899);
}

.project-text{
    flex:1;
    min-width:320px;
}

.project-text span{
    color:#7dd3fc;
}

.project-text h2{
    font-size:52px;
    margin:18px 0;
}

.project-text p{
    color:#cbd5e1;
    line-height:1.8;
}

/* ABOUT */

.about-grid{
    padding:0 8% 100px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:50px;
}

.about-grid h2{
    margin-bottom:20px;
    font-size:38px;
}

.about-grid p{
    color:#cbd5e1;
    line-height:1.9;
}

/* TEAM */

.team{
    padding:0 8% 100px;
}

.team h2{
    font-size:52px;
    margin-bottom:40px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.team-card{
    background:#121826;

    padding:35px;

    border-radius:28px;

    text-align:center;
}

.avatar{
    width:110px;
    height:110px;

    border-radius:50%;

    margin:0 auto 20px;

    background:
    linear-gradient(135deg,#2563eb,#7c3aed);
}

.second{
    background:
    linear-gradient(135deg,#ec4899,#9333ea);
}

/* CONTACT */

.contact-layout{
    padding:0 8% 100px;

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    background:#121826;

    border:none;

    padding:18px;

    border-radius:14px;

    color:white;

    font-size:16px;
}

.contact-form textarea{
    min-height:180px;
    resize:none;
}

.contact-form button{
    background:#2563eb;
    color:white;

    border:none;

    padding:18px;

    border-radius:14px;

    cursor:pointer;
}

.contact-info h2{
    margin-bottom:15px;
}

.contact-info p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:40px;
}

/* FOOTER */

footer{
    border-top:1px solid rgba(255,255,255,0.05);

    padding:50px 8%;
}

.footer-content{
    display:flex;
    justify-content:space-between;

    flex-wrap:wrap;

    gap:40px;
}

.footer-content p{
    color:#cbd5e1;
    line-height:1.8;
    max-width:320px;
}

.footer-content a{
    display:block;

    margin-top:10px;

    text-decoration:none;

    color:#cbd5e1;
}

/* MOBILE */

@media(max-width:900px){

    nav{
        display:none;
    }

    .hero h1,
    .page-top h1{
        font-size:46px;
    }

    .section-head h2,
    .wide-banner h2,
    .team h2{
        font-size:38px;
    }

    .main-card{
        width:100%;
        height:320px;
    }

    .contact-layout{
        grid-template-columns:1fr;
    }
}