

/* ================= GLOBAL ================= */

* {
    box-sizing: border-box;
}

body {
    margin:0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background:#F4EFE6;
    color:#333;
}

a {
    text-decoration:none;
    color:inherit;
}

img {
    width:100%;
    display:block;
}


/* ================= HERO ================= */

.hero {

    min-height:95vh;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url("/wild-digital-lab/assets/images/hero.jpg") center/cover;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:white;
    padding:40px 20px;

}


.hero-content {

    max-width:900px;

}


.hero h1 {

    font-family:Georgia,serif;

    font-size:clamp(3rem,7vw,6rem);

    color:#C6A75E;

    margin-bottom:20px;

    letter-spacing:3px;

}


.hero p {

    font-size:clamp(2rem,3vw,2rem);

    line-height:1.6;

}


.hero-btn {

    display:inline-block;

    margin-top:30px;

    background:#C6A75E;

    color:#111;

    padding:15px 35px;

    

    font-weight:bold;

    transition:.3s;

}


.hero-btn:hover {

    background:white;

    transform:translateY(-5px);

}


/* ================= SECTIONS ================= */


.section {

    padding:80px 8%;

}


.title {

    text-align:center;

    font-family:Georgia,serif;

    font-size:2.7rem;

    color:#0E2F2B;

    margin-bottom:50px;

}


.title span {

    color:#C6A75E;

}


/* ================= CLIENTS ================= */

.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:20px 0;
}

.logo-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scroll 30s linear infinite;
}

.logo-track:hover{
    animation-play-state:paused;
}

.logo-track a{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 45px;
}

.logo-track img{
    height:70px;
    width:auto;
    max-width:180px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.75;
    transition:.3s ease;
}

.logo-track a:hover img{
    filter:grayscale(0);
    opacity:1;
    transform:scale(1.08);
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}



/* ================= ABOUT ================= */


.about {

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:40px;

    align-items:center;

}


.about img {

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

}


.about-text {

    font-size:1.1rem;

    line-height:1.8;

}



/* ================= SERVICES ================= */


.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card i{
    font-size:48px;
    color:#2e8b57;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    color:#666;
    line-height:1.7;
}




/* ================= PRODUCTS ================= */


.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.product{
    display:flex;
    gap:20px;
    padding:25px;
    border-radius:12px;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    align-items:flex-start;
}

.product-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#2e8b57;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    flex-shrink:0;
}

.product-content h3{
    margin-bottom:10px;
}

.product-content p{
    color:#666;
    line-height:1.7;
}



/* ================= REVIEWS ================= */

.testimonial-slider{
    overflow:hidden;
    width:100%;
    cursor:grab;
}

.testimonial-slider:active{
    cursor:grabbing;
}


.testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:testimonialScroll 35s linear infinite;
}


.testimonial-slider:hover .testimonial-track{
    animation-play-state:paused;
}


.testimonial-card{
    width:350px;
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    flex-shrink:0;
}


.testimonial-card img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin-bottom:15px;
}


.stars{
    color:#d4a017;
    font-size:20px;
    margin-bottom:15px;
}


.testimonial-card p{
    color:#555;
    line-height:1.7;
    font-style:italic;
}


.testimonial-card h4{
    margin-top:20px;
    color:#2e8b57;
}


.testimonial-card span{
    color:#777;
}


/* Infinite movement */

@keyframes testimonialScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}





/* ================= TECHNOLOGY ================= */


.tech {

    background:#0E2F2B;

    color:white;

    text-align:center;

}


.tech-list {

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}


.tech-item {

    background:#C6A75E;

    color:#111;

    padding:12px 25px;

    border-radius:30px;

    font-weight:bold;

}



/* ================= CTA ================= */


.cta {

    text-align:center;

    background:#C6A75E;

}


.cta h2 {

    font-family:Georgia,serif;

    font-size:2.5rem;

    color:#0E2F2B;

}


.cta a {

    display:inline-block;

    margin-top:20px;

    background:#0E2F2B;

    color:white;

    padding:15px 35px;

    border-radius:30px;

}



/* ================= MOBILE ================= */


@media(max-width:600px){

    .section {

        padding:50px 20px;

    }

}


