/* ===========================
   Google Font
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   Global
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f7f9fc;

    color:#222;

    line-height:1.6;

}

/* ===========================
   Navbar
=========================== */

.navbar{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 8%;

}

.logo{

    font-size:28px;

    font-weight:700;

    color:white;

}

.navbar ul{

    display:flex;

    gap:30px;

    list-style:none;

}

.navbar a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.navbar a:hover{

    color:#ffd43b;

}

/* ===========================
   Hero
=========================== */

.hero{

    min-height:100vh;

    background:linear-gradient(135deg,#2563eb,#0f172a);

    color:white;

}

.hero-content{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:120px 20px;

}

.hero-content h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero-content p{

    font-size:22px;

    opacity:.9;

    margin-bottom:40px;

}

/* ===========================
   Button
=========================== */

.btn,
button{

    display:inline-block;

    padding:16px 38px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    background:#2563eb;

    color:white;

    transition:.3s;

}

.btn:hover,
button:hover{

    background:#1d4ed8;

    transform:translateY(-3px);

}

/* ===========================
   Sections
=========================== */

section{

    padding:90px 8%;

}

section h2{

    text-align:center;

    font-size:40px;

    margin-bottom:50px;

}

/* ===========================
   Services
=========================== */

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.card{

    background:white;

    padding:35px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

.card h3{

    color:#2563eb;

    margin-bottom:15px;

}

/* ===========================
   About
=========================== */

.about{

    background:white;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}

.about-grid div{

    background:#eff6ff;

    padding:25px;

    border-radius:15px;

    font-weight:600;

    text-align:center;

}

/* ===========================
   Contact
=========================== */

.contact{

    background:#f1f5f9;

}

.contact p{

    text-align:center;

    margin-bottom:35px;

}

form{

    max-width:750px;

    margin:auto;

}

input,
textarea{

    width:100%;

    padding:16px;

    margin-bottom:20px;

    border-radius:12px;

    border:1px solid #d1d5db;

    font-size:16px;

    font-family:Poppins;

}

input:focus,
textarea:focus{

    outline:none;

    border-color:#2563eb;

    box-shadow:0 0 8px rgba(37,99,235,.25);

}

button{

    width:100%;

}

/* ===========================
   Status Message
=========================== */

#status{

    margin-top:30px;

    text-align:center;

    font-weight:600;

    font-size:18px;

}

/* ===========================
   Footer
=========================== */

footer{

    background:#0f172a;

    color:white;

    text-align:center;

    padding:45px 20px;

}

footer h3{

    margin-bottom:12px;

}

footer p{

    opacity:.8;

    margin-top:8px;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

.hero-content h1{

    font-size:38px;

}

.hero-content p{

    font-size:18px;

}

.navbar{

    flex-direction:column;

    gap:20px;

}

.navbar ul{

    gap:18px;

}

section{

    padding:70px 6%;

}

}