/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f7f7f7;
    overflow-x:hidden;
}

/* ================= HEADER ================= */

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 5%;
    background:rgb(22, 21, 21);
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}
.logo-area{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
}
.logo-img{
    width:60px;
    height:60px;
}

.logo span{
    color:#D4AF37;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{

    text-decoration:none;
    color:white;
    font-weight:600;
    position:relative;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#D4AF37;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after{
    width:100%;
}

/* ================= HERO ================= */

.hero{
    position:relative;

    width:100%;
    height:45vh;

    background:url("images/banner.jpg") center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    z-index:2;

    text-align:center;

    color:white;
}

.hero-content h1{
    font-size:60px;

    margin-bottom:15px;
}

.hero-content p{
    font-size:20px;

    line-height:1.7;
}

/* ================= SERVICES ================= */

.services{
    width:100%;

    padding:70px 8%;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:40px;
}

/* CARD */

.service-card{
    background:white;

    border-radius:20px;

    padding:60px 35px;

    text-align:center;

    transition:0.4s ease;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* HOVER */

.service-card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* ICON */

.icon{
    width:100px;
    height:100px;

    margin:auto;

    border-radius:50%;

    background:#fff7e5;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;
}

.icon i{
    font-size:42px;

    color:#f4a300;
}

/* TITLE */

.service-card h2{
    font-size:30px;

    color:#222;

    margin-bottom:20px;
}

/* LINE */

.line{
    width:80px;
    height:4px;

    background:#f4a300;

    margin:20px auto;
}

/* TEXT */

.service-card p{
    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:35px;
}

/* BUTTON */

.btn{
    display:inline-block;

    padding:14px 40px;

    background:#f4a300;

    color:white;

    text-decoration:none;

    border-radius:8px;

    font-size:18px;
    font-weight:600;

    transition:0.3s;
}

.btn:hover{
    background:#111;
}

/* ================= FOOTER ================= */

footer{
    background:#111;

    color:white;

    text-align:center;

    padding:20px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    header{
        padding:18px 5%;
    }

    .logo{
        font-size:17px;
    }

    .hero{
        height:35vh;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:15px;
    }

    .services{
        padding:50px 5%;
    }

    .service-card{
        padding:45px 25px;
    }

    .service-card h2{
        font-size:26px;
    }

    .service-card p{
        font-size:16px;
    }

    .mobile-menu{
        right:5%;
    }

}