/* =====================
   RESET
===================== */

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

body{
    font-family:'Poppins',sans-serif;
    line-height:1.6;
    color:#333;
}

/* =====================
   CONTAINER
===================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =====================
   HEADER
===================== */

header{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:85px;
}

/* =====================
   LOGO
===================== */

.logo img{
    width:240px;
    height:auto;
    display:block;
}

/* =====================
   MENU
===================== */

nav ul{
    list-style:none;
    display:flex;
    align-items:center;
    gap:35px;
}

nav ul li a{
    text-decoration:none;
    color:#111827;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#2563eb;
}

/* =====================
   HERO SECTION
===================== */

.hero{
    height:calc(100vh - 85px);
    background:linear-gradient(135deg,#2563eb,#111827);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero h1{
    font-size:72px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    font-size:24px;
    margin-bottom:35px;
}

/* =====================
   BUTTON
===================== */

.btn{
    display:inline-block;
    background:#f97316;
    color:white;
    text-decoration:none;
    padding:16px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#ea580c;
}

/* =====================
   PAGE SECTION
===================== */

.page{
    padding:100px 0;
}

.page h1{
    font-size:50px;
    margin-bottom:20px;
}

/* =====================
   FOOTER
===================== */

footer{
    background:#111827;
    color:white;
    text-align:center;
    padding:25px 0;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:768px){

header .container{
    flex-direction:column;
    min-height:auto;
    padding:15px 0;
}

.logo{
    margin-bottom:15px;
}

.logo img{
    width:180px;
}

nav ul{
    flex-direction:column;
    gap:15px;
}

.hero{
    height:auto;
    padding:100px 0;
}

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:18px;
}

.btn{
    padding:14px 30px;
}

}
/* =====================
   SERVICES
===================== */


.services{
    padding:100px 0;
    background:#f8fafc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:45px;
    color:#111827;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
}

.service-boxes{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card h3{
    margin-bottom:15px;
    color:#2563eb;
}

.service-card p{
    color:#666;
}
