/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f6f9;
    color:#333;
    line-height:1.6;
}

.section{
    padding:100px 8%;
}

h1,h2,h3{
    font-weight:600;
}

h2{
    font-size:32px;
    margin-bottom:20px;
}

p{
    font-size:15px;
    color:#555;
}

.btn{
    padding:12px 28px;
    border:none;
    background:#2c5364;
    color:#fff;
    cursor:pointer;
    transition:.3s;
    border-radius:4px;
	text-decoration:none;
}

.btn:hover{
    background:#203a43;
}

/* ================= NAVBAR ================= */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:#1c1c1c;
    padding:15px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}

.logo{
    color:#fff;
    font-size:22px;
    font-weight:600;
}

nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-size:14px;
    transition:.3s;
}

nav ul li a:hover{
    color:#00c6ff;
}

.menu-toggle{
    display:none;
    font-size:22px;
    color:#fff;
    cursor:pointer;
}

/* ================= HERO ================= */

.hero{
    height:100vh;
    background:url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d") center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:relative;
    z-index:1;
    max-width:700px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    margin-bottom:30px;
    color:#eee;
}

/* ================= ABOUT + HIRING ================= */

.about{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.about-text{
    flex:1;
}

.stats{
    display:flex;
    gap:40px;
    margin-top:30px;
}

.stat{
    font-size:28px;
    font-weight:700;
    color:#2c5364;
}

/* ===== Hiring Image Section ===== */

.hiring-image{
    position:relative;
    flex:1;
    border-radius:8px;
    overflow:hidden;
    min-width:300px;
}

.hiring-image img{
    width:100%;
    height:400px;
    object-fit:cover;
}

.hiring-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hiring-overlay h2{
    font-size:32px;
    margin-bottom:10px;
}

.hiring-overlay p{
    color:#ddd;
    margin-bottom:20px;
}

/* ================= SERVICES ================= */

.dark-section{
    background:#eef1f5;
    text-align:center;
}

.cards{
    display:flex;
    gap:30px;
    margin-top:50px;
    flex-wrap:wrap;
    justify-content:center;
}

.card{
    background:#fff;
    width:320px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card-content h3{
    margin-bottom:10px;
}

/* ================= TESTIMONIAL ================= */

.testimonial-section{
    padding:100px 8%;
    background:#f1f3f6;
}

.testimonial-container{
    position:relative;
    overflow:hidden;
}

.testimonial-slide{
    display:none;
    align-items:center;
}

.testimonial-slide.active{
    display:flex;
    animation:fadeIn .8s ease;
}

@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}

.testimonial-image{
    flex:1;
}

.testimonial-image img{
    width:100%;
    height:400px;
    object-fit:cover;
}

.testimonial-content{
    flex:1;
    background:#4a6572;
    color:#fff;
    padding:60px;
    text-align:center;
}

.testimonial-content p{
    color:#fff;
    margin-bottom:25px;
}

.stars{
    font-size:20px;
    margin-bottom:15px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    margin-bottom:10px;
}

.client h4{
    font-weight:500;
}

/* ================= FOOTER ================= */

footer{
    background:#1c1c1c;
    color:#fff;
    padding:60px 8% 20px;
}

.footer-grid{
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer-col{
    flex:1;
    min-width:220px;
}

.footer-col h4{
    margin-bottom:15px;
}

.footer-col input{
    padding:10px;
    width:100%;
    margin-bottom:10px;
    border:none;
    border-radius:4px;
}

.bottom{
    text-align:center;
    margin-top:40px;
    font-size:13px;
    color:#aaa;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .about{
        flex-direction:column;
        text-align:center;
    }

    .stats{
        justify-content:center;
    }
}

@media(max-width:768px){

    nav ul{
        position:absolute;
        top:60px;
        right:0;
        background:#1c1c1c;
        flex-direction:column;
        width:200px;
        padding:20px;
        display:none;
    }

    nav ul.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .hero h1{
        font-size:32px;
    }

    .testimonial-slide{
        flex-direction:column;
    }

    .testimonial-image img{
        height:250px;
    }

    .testimonial-content{
        padding:30px;
    }

    .hiring-image img{
        height:300px;
    }
}