/* Google Font */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8fafc;
    color:#222;
    line-height:1.6;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* HEADER */

.header{
    width:100%;
    background:#fff;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:28px;
    font-weight:700;
    color:#f59e0b;
}

nav ul{
    display:flex;
    gap:35px;
}

nav ul li a{
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#f59e0b;
}

.call-btn{
    background:#f59e0b;
    color:#fff;
    padding:12px 24px;
    border-radius:40px;
    transition:.3s;
}

.call-btn:hover{
    background:#111827;
}

/* HERO */

.hero{
    padding:140px 0 80px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero h1{
    font-size:55px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero h1 span{
    color:#f59e0b;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
    color:#555;
}

.primary-btn{
    display:inline-block;
    background:#f59e0b;
    color:#fff;
    padding:15px 35px;
    border-radius:40px;
    margin-right:15px;
}

.secondary-btn{
    display:inline-block;
    border:2px solid #f59e0b;
    color:#f59e0b;
    padding:15px 35px;
    border-radius:40px;
}

.hero-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* HERO INFO */

.hero-info{
    display:flex;
    gap:40px;
    margin-top:40px;
}

.hero-info h3{
    color:#f59e0b;
    font-size:34px;
}

/* ABOUT */

.about{
    padding:90px 0;
}

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

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-card{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:18px;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

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

.about-card i{
    font-size:55px;
    color:#f59e0b;
    margin-bottom:20px;
}

.about-card h3{
    margin-bottom:15px;
}

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

@media (max-width:992px){

    .hero-grid,
    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-content{
        order:2;
    }

    .hero-info{
        justify-content:center;
        flex-wrap:wrap;
    }

    .about-cards{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    nav{
        display:none;
    }

    .hero{
        padding:120px 0 60px;
    }

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

    .section-title h2{
        font-size:34px;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .primary-btn,
    .secondary-btn{
        display:block;
        width:100%;
        margin:10px 0;
        text-align:center;
    }

    .hero-info{
        flex-direction:column;
        gap:20px;
    }

}

@media (max-width:480px){

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

    .section-title h2{
        font-size:28px;
    }

}
@media (max-width:991px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }
}