/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

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

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#ffffff;
}


/* =========================
   SERVICES HERO
========================= */

.services-hero{

    position:relative;

    min-height:90vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;
}

/* BACKGROUND IMAGE */

.hero-bg{

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    z-index:1;

    animation:heroZoom 8s ease forwards;
}

/* OVERLAY */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    );

    z-index:2;
}

/* CONTENT */

.services-hero-content{

    position:relative;

    z-index:3;

    max-width:950px;

    padding:0 20px;

    animation:fadeUp 1s ease;
}

.hero-subtitle{

    display:inline-block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;
}

.services-hero-content h1{

    color:#fff;

    font-size:5rem;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;
}

.services-hero-content p{

    color:#e5e5e5;

    font-size:1.15rem;

    line-height:1.9;

    max-width:750px;

    margin:0 auto 40px;
}

/* BUTTONS */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.hero-btn-primary{

    display:inline-block;

    padding:18px 40px;

    background:#D4AF37;

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-weight:600;

    transition:.3s ease;
}

.hero-btn-primary:hover{

    transform:translateY(-3px);

    background:#c79f2f;
}

.hero-btn-secondary{

    display:inline-block;

    padding:18px 40px;

    border:2px solid #D4AF37;

    color:#D4AF37;

    text-decoration:none;

    border-radius:12px;

    font-weight:600;

    transition:.3s ease;
}

.hero-btn-secondary:hover{

    background:#D4AF37;

    color:#fff;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

@keyframes heroZoom{

    from{

        transform:scale(1.08);
    }

    to{

        transform:scale(1);
    }
}

/* =========================
   LARGE DESKTOP
========================= */

@media(max-width:1440px){

    .services-hero-content h1{

        font-size:4.5rem;
    }
}

/* =========================
   LAPTOPS
========================= */

@media(max-width:1200px){

    .services-hero-content h1{

        font-size:4rem;
    }

    .services-hero-content p{

        font-size:1.05rem;
    }
}

/* =========================
   iPad Pro
========================= */

@media(max-width:1024px){

    .services-hero{

        min-height:80vh;
    }

    .services-hero-content h1{

        font-size:3.5rem;
    }

    .services-hero-content p{

        max-width:700px;
    }
}

/* =========================
   iPad Air / Mini
========================= */

@media(max-width:820px){

    .services-hero{

        min-height:75vh;
    }

    .services-hero-content h1{

        font-size:3rem;
    }

    .services-hero-content p{

        font-size:1rem;
    }
}

/* =========================
   Tablets
========================= */

@media(max-width:768px){

    .services-hero{

        min-height:70vh;
    }

    .services-hero-content{

        padding:0 25px;
    }

    .services-hero-content h1{

        font-size:2.6rem;
    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;
    }

    .hero-btn-primary,
    .hero-btn-secondary{

        width:280px;

        text-align:center;
    }
}

/* =========================
   Large Phones
========================= */

@media(max-width:576px){

    .services-hero{

        min-height:65vh;
    }

    .hero-subtitle{

        font-size:12px;

        letter-spacing:3px;
    }

    .services-hero-content h1{

        font-size:2.1rem;
    }

    .services-hero-content p{

        font-size:.95rem;

        line-height:1.8;
    }

    .hero-btn-primary,
    .hero-btn-secondary{

        width:100%;
    }
}

/* =========================
   Small Phones
========================= */

@media(max-width:420px){

    .services-hero{

        min-height:60vh;
    }

    .services-hero-content{

        padding:0 15px;
    }

    .services-hero-content h1{

        font-size:1.8rem;
    }

    .services-hero-content p{

        font-size:.9rem;
    }
}

/* =========================
   Galaxy Fold
========================= */

@media(max-width:360px){

    .services-hero-content h1{

        font-size:1.6rem;
    }

    .hero-subtitle{

        letter-spacing:2px;
    }
}

/* =========================
   Nest Hub / Short Screens
========================= */

@media(max-height:700px){

    .services-hero{

        min-height:100vh;
    }
}

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

.section-title{

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;
}

.section-title span{

    display:block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;
}

.section-title h2{

    font-size:3.5rem;

    font-weight:700;

    color:#111;

    margin-bottom:20px;
}

.section-title p{

    color:#666;

    font-size:1.1rem;

    line-height:1.8;

    max-width:700px;

    margin:auto;
}

.services-grid-section{

    padding:120px 8%;

    background:#ffffff;
}

.section-desc{

    max-width:800px;

    margin:20px auto 0;

    color:#666;

    line-height:1.9;

    text-align:center;
}



/* =========================
   GRID
========================= */

.services-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/* =========================
   CARD
========================= */

.service-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.15);

    box-shadow:
    0 10px 35px rgba(0,0,0,.06);

    transition:.4s ease;
}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

    box-shadow:
    0 25px 60px rgba(212,175,55,.18);
}

/* =========================
   IMAGE
========================= */

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s ease;
}

.service-card:hover img{

    transform:scale(1.08);
}

/* =========================
   CONTENT
========================= */

.service-content{

    padding:30px;
}

.service-tag{

    color:#D4AF37;

    font-size:13px;

    font-weight:600;

    letter-spacing:3px;
}

.service-content h3{

    margin:15px 0;

    font-size:1.5rem;

    color:#111;
}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;
}

/* =========================
   LIST
========================= */

.service-content ul{

    list-style:none;

    margin-bottom:25px;
}

.service-content ul li{

    margin-bottom:12px;

    color:#444;

    position:relative;

    padding-left:25px;
}

.service-content ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#D4AF37;

    font-weight:700;
}

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

.service-btn{

    display:block;

    width:100%;

    text-align:center;

    padding:15px;

    background:#D4AF37;

    color:white;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s ease;
}

.service-btn:hover{

    background:#c79f2f;
}

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

/* ===================================
   LARGE LAPTOPS
=================================== */

@media(max-width:1200px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{

        font-size:3rem;
    }
}

/* ===================================
   iPad Pro / Tablets
=================================== */

@media(max-width:1024px){

    .services-grid-section{

        padding:100px 6%;
    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);

        gap:30px;
    }

    .service-card img{

        height:240px;
    }

    .section-title h2{

        font-size:2.8rem;
    }

    .service-content h3{

        font-size:1.4rem;
    }
}

/* ===================================
   iPad Air / iPad Mini
=================================== */

@media(max-width:820px){

    .section-title{

        margin-bottom:60px;
    }

    .section-title h2{

        font-size:2.5rem;
    }

    .section-title p{

        font-size:1rem;
    }
}

/* ===================================
   Tablets & Large Phones
=================================== */

@media(max-width:768px){

    .services-grid-section{

        padding:90px 25px;
    }

    .services-grid{

        grid-template-columns:1fr;

        gap:30px;
    }

    .section-title{

        margin-bottom:50px;
    }

    .section-title h2{

        font-size:2.3rem;
    }

    .section-title p{

        font-size:1rem;
    }

    .service-card img{

        height:280px;
    }

    .service-content{

        padding:25px;
    }

    .service-content h3{

        font-size:1.4rem;
    }
}

/* ===================================
   iPhone / Samsung Phones
=================================== */

@media(max-width:576px){

    .services-grid-section{

        padding:80px 20px;
    }

    .section-title span{

        font-size:12px;

        letter-spacing:3px;
    }

    .section-title h2{

        font-size:2rem;
    }

    .section-title p{

        font-size:.95rem;

        line-height:1.8;
    }

    .service-card{

        border-radius:20px;
    }

    .service-card img{

        height:240px;
    }

    .service-content{

        padding:22px;
    }

    .service-content h3{

        font-size:1.3rem;
    }

    .service-content p{

        font-size:.95rem;
    }

    .service-btn{

        padding:14px;
    }
}

/* ===================================
   Small Phones
   iPhone SE
   Galaxy Fold
=================================== */

@media(max-width:420px){

    .section-title h2{

        font-size:1.8rem;
    }

    .section-title p{

        font-size:.9rem;
    }

    .service-card img{

        height:220px;
    }

    .service-content{

        padding:20px;
    }

    .service-content h3{

        font-size:1.2rem;
    }

    .service-content ul li{

        font-size:14px;
    }

    .service-btn{

        width:100%;
    }
}

/* ===================================
   Nest Hub / Short Screens
=================================== */

@media(max-height:700px){

    .services-grid-section{

        padding-top:80px;

        padding-bottom:80px;
    }
}

.testimonials{

    padding:120px 0;

    background:#ffffff;

    overflow:hidden;
}

.testimonials .section-title{

    text-align:center;

    margin-bottom:70px;
}

.testimonials .section-title h2{

    color:#111111;
}

/* =========================
   WRAPPER
========================= */

.testimonial-wrapper{

    position:relative;

    overflow:hidden;
}

/* Luxury Fade Effect */

.testimonial-wrapper::before,
.testimonial-wrapper::after{

    content:"";

    position:absolute;

    top:0;

    width:150px;

    height:100%;

    z-index:10;

    pointer-events:none;
}

.testimonial-wrapper::before{

    left:0;

    background:
    linear-gradient(
        to right,
        #ffffff,
        transparent
    );
}

.testimonial-wrapper::after{

    right:0;

    background:
    linear-gradient(
        to left,
        #ffffff,
        transparent
    );
}

/* =========================
   SLIDER
========================= */

.testimonial-slider{

    display:flex;

    gap:30px;

    width:max-content;

    animation:testimonialScroll 50s linear infinite;
}

.testimonial-slider:hover{

    animation-play-state:paused;
}

@keyframes testimonialScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* =========================
   CARD
========================= */

.testimonial-card{

    min-width:420px;

    background:#ffffff;

    border:1px solid rgba(212,175,55,.15);

    border-radius:24px;

    padding:40px;

    transition:.4s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:
    0 20px 60px rgba(212,175,55,.15);
}

/* =========================
   STARS
========================= */

.stars{

    color:#D4AF37;

    font-size:20px;

    letter-spacing:4px;

    margin-bottom:20px;
}

/* =========================
   REVIEW TEXT
========================= */

.testimonial-card p{

    color:#666666;

    line-height:1.9;

    margin-bottom:30px;

    font-size:15px;
}

/* =========================
   CLIENT INFO
========================= */

.client-info{

    display:flex;

    align-items:center;

    gap:15px;
}

.client-info img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #D4AF37;

    transition:.3s ease;
}

.testimonial-card:hover .client-info img{

    transform:scale(1.08);

    box-shadow:
    0 0 20px rgba(212,175,55,.25);
}

.client-info h4{

    color:#111111;

    font-size:18px;

    margin-bottom:5px;

    font-weight:600;
}

.client-info span{

    color:#777777;

    font-size:14px;
}

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

@media(max-width:1200px){

    .testimonial-card{

        min-width:380px;
    }
}

/* =========================
   iPad Pro / Tablets
========================= */

@media(max-width:1024px){

    .testimonial-card{

        min-width:360px;
    }
}

/* =========================
   iPad Air / Mini
========================= */

@media(max-width:820px){

    .testimonials{

        padding:100px 0;
    }
}

/* =========================
   Tablets & Large Phones
========================= */

@media(max-width:768px){

    .testimonials{

        padding:90px 0;
    }

    .testimonial-card{

        min-width:300px;

        padding:30px;
    }

    .testimonial-wrapper::before,
    .testimonial-wrapper::after{

        width:70px;
    }

    .client-info img{

        width:60px;

        height:60px;
    }
}

/* =========================
   Phones
========================= */

@media(max-width:576px){

    .testimonial-card{

        min-width:280px;
    }

    .testimonial-card p{

        font-size:14px;
    }
}

/* =========================
   Small Phones
========================= */

@media(max-width:420px){

    .testimonial-card{

        min-width:260px;

        padding:25px;
    }

    .stars{

        font-size:16px;
    }

    .client-info h4{

        font-size:16px;
    }

    .client-info span{

        font-size:13px;
    }
}

/* =========================
   Nest Hub / Short Screens
========================= */

@media(max-height:700px){

    .testimonials{

        padding-top:80px;

        padding-bottom:80px;
    }
}
