*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8fafc;
    color:#333;
}

/* Navbar */

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    background:#fff;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.logo{

    text-decoration:none;

    font-size:32px;

    font-weight:700;

    color:#111827;

}

.logo span{

    color:#2563eb;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:30px;

}

.navbar ul li a{

    text-decoration:none;

    color:#333;

    font-weight:500;

}

.navbar ul li a:hover{

    color:#2563eb;

}

/* Hero */

.hero{

    background:linear-gradient(135deg,#2563eb,#1e40af);

    color:white;

    padding:80px 10%;

    text-align:center;

}

.hero h1{

    font-size:48px;

    margin-bottom:20px;

}

.hero p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/* Demo Section */

.demo-section{

    padding:80px 8%;

}

.container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

}

/* Left */

.info h2{

    margin-bottom:30px;

    color:#1e3a8a;

}

.info ul{

    list-style:none;

}

.info ul li{

    background:white;

    margin-bottom:15px;

    padding:18px;

    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

/* Form */

.form-box{

    background:white;

    padding:40px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.form-box h2{

    margin-bottom:25px;

    color:#1e3a8a;

}

.form-box form{

    display:flex;

    flex-direction:column;

}

.form-box input,
.form-box textarea,
.form-box select{

    margin-bottom:18px;

    padding:15px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:15px;

}

.form-box button{

    background:#2563eb;

    color:white;

    border:none;

    padding:15px;

    border-radius:8px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.form-box button:hover{

    background:#1d4ed8;

}

/* Footer */

footer{

    background:#111827;

    color:white;

    text-align:center;

    padding:25px;

    margin-top:60px;

}

/* Responsive */

@media(max-width:900px){

.container{

grid-template-columns:1fr;

}

.hero h1{

font-size:34px;

}

.navbar{

flex-direction:column;

gap:20px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

}

}