/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
     background:#ffffff;
    
    /* background:linear-gradient(90deg,#0a0a0ae6,#1d1800); */
}

/* BASE */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
    opacity:0;
    transition:all 0.8s ease;
}

/* DEFAULT (BOTTOM TO TOP) */
.reveal{
    transform:translateY(60px);
}

/* LEFT */
.reveal-left{
    transform:translateX(-80px);
}

/* RIGHT */
.reveal-right{
    transform:translateX(80px);
}

/* ZOOM */
.reveal-zoom{
    transform:scale(0.8);
}

/* ACTIVE (WHEN VISIBLE) */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active{
    opacity:1;
    transform:translate(0,0) scale(1);
}

/* ===== COLORS ===== */
:root{
    --gold1:#c9a227;
    --gold2:#f5d76e;
    --gold3:#fff3b0;
    --red1:#f31818;
    --red2:#fe3a3af3;
    --red3:#f15454df;

    --dark:#1a1a1a; /* dark text color */
    --secondary:#555555; /* secondary text */
    --section-bg:#fffdf0; /* light cream background */
}



/* ==========================================Hero Section================================ */

.services-hero{
    height:70vh;
    position:relative;
    background:url("https://ucpowder.com/wp-content/uploads/2023/11/What-is-powder-coating.webp") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        #050505 0%,
        rgba(0,0,0,0.95) 20%,
        rgba(0,0,0,0.7) 50%,
        transparent 100%
    );
}
/* CONTENT */
.services-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:700px;
    padding:20px;
}
/* HEADING */
.services-hero-content h1{
    font-size:56px;
    margin-bottom:15px;
    font-weight:700;
}

/* GOLD TEXT */
.services-hero-content h1 span{
    background:linear-gradient(var(--red1),var(--red2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */
.services-hero-content p{
    font-size:18px;
    color:#ddd;
    line-height:1.6;
}
@media(max-width:600px){

    .services-hero{
        height: 50vh;        /* ✅ reduce height */
        padding: 0 15px;
    }

    .services-hero-content{
        max-width: 100%;
        padding: 10px;
    }

    /* HEADING */
    .services-hero-content h1{
        font-size: 28px;     /* ✅ mobile size */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    /* TEXT */
    .services-hero-content p{
        font-size: 14px;
        line-height: 1.6;
        color: #ccc;
    }

    /* OVERLAY (better readability) */
    .hero-overlay{
        background:
        linear-gradient(
            to top,
            #050505 0%,
            rgba(0,0,0,0.98) 30%,
            rgba(0,0,0,0.75) 60%,
            transparent 100%
        );
    }

}
/* ================= SPLIT SECTION ================= */
.services-split{
    display:flex;
    gap:80px;
    padding:120px 8%;
    background:#ffffff;
    color:var(--dark);
    position:relative;
    overflow:hidden;
}

/* ================= BACKGROUND GLOW ================= */
.services-split::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(circle, rgba(201,162,39,0.12), transparent 70%);
    top:-120px;
    right:-120px;
    z-index:0;
}

/* ================= LEFT SIDE ================= */
.split-left{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

/* BIG BACKGROUND TEXT */
.split-left::before{
    content:"SERVICES";
    position:absolute;
    font-size:120px;
    font-weight:800;
    color:rgba(0,0,0,0.04);
    letter-spacing:10px;
    z-index:0;
}

.split-left h2{
    font-size:70px;
    line-height:1.1;
    font-weight:700;
    letter-spacing:2px;
    position:relative;
    z-index:2;
}

.split-left span{
       background:linear-gradient(var(--red1),var(--red2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ================= RIGHT SIDE ================= */
.split-right{
    flex:2;
    display:flex;
    flex-direction:column;
    gap:45px;
    position:relative;
    z-index:2;
}

/* ================= ITEM ================= */
.split-item{
    position:relative;
    padding:30px 25px 30px 30px;
    border-left:2px solid rgba(0,0,0,0.08);
    transition:0.4s ease;
    border-radius:8px;
    background:transparent;
}

/* GOLD LINE ANIMATION */
.split-item::before{
    content:"";
    position:absolute;
    left:-2px;
    top:0;
    width:2px;
    height:0%;
    background:linear-gradient(var(--red1),var(--red2));
    transition:0.4s;
}

/* DIVIDER */
.split-item:not(:last-child){
    border-bottom:1px solid #eee;
}

/* ================= SMALL TAG ================= */
.tag{
    font-size:12px;
    letter-spacing:2px;
    color:var(--red2);
    font-weight:600;
    display:block;
    margin-bottom:8px;
}

/* ================= TITLE ================= */
.split-item h3{
    font-size:22px;
    margin-bottom:10px;
    transition:0.3s;
    display:flex;
    align-items:center;
}

/* ICON STYLE */
.split-item h3 i{
    background:rgba(201,162,39,0.1);
    padding:10px;
    border-radius:50%;
    font-size:14px;
    margin-right:12px;
    color:var(--red1);
    transition:0.3s;
}

/* TITLE LINE */
.split-item h3::after{
    content:"";
    display:block;
    width:40px;
    height:2px;
    margin-top:8px;
    background:linear-gradient(90deg,var(--red2),transparent);
    transition:0.3s;
}

/* ================= TEXT ================= */
.split-item p{
    color:#777575;
    line-height:1.8;
    max-width:520px;
}

/* ================= HOVER ================= */
.split-item:hover{
    transform:translateX(8px);
    background:rgba(201,162,39,0.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.split-item:hover::before{
    height:100%;
}

.split-item:hover h3{
    color:var(--red1);
}

.split-item:hover h3 i{
    background:var(--red1);
    color:#000;
}

.split-item:hover h3::after{
    width:70px;
}

/* ================= ANIMATION ================= */
.split-item{
    opacity:0;
    transform:translateY(30px);
    animation:fadeUp 0.8s ease forwards;
}

.split-item:nth-child(1){ animation-delay:0.2s; }
.split-item:nth-child(2){ animation-delay:0.4s; }
.split-item:nth-child(3){ animation-delay:0.6s; }

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= CTA BUTTON ================= */
.split-cta{
    margin-top:20px;
}

.btn-gold{
    padding:12px 28px;
    border:1px solid var(--red1);
    color:var(--red1);
    text-decoration:none;
    transition:0.3s;
    display:inline-block;
}

.btn-gold:hover{
    background:var(--red1);
    color:#000;
}

@media(max-width:600px){

/* SECTION */
.services-split{
    flex-direction: column;
    gap: 40px;
    padding: 60px 15px;
}

/* BACKGROUND GLOW SMALLER */
.services-split::before{
    width: 250px;
    height: 250px;
    top: 30px;
    right: -80px;
}

/* LEFT SIDE */
.split-left{
    text-align: center;
}

/* BIG BG TEXT (reduce) */
.split-left::before{
    font-size: 50px;
    letter-spacing: 5px;
}

/* HEADING */
.split-left h2{
    font-size: 50px;
    line-height: 1.3;
}

/* RIGHT SIDE */
.split-right{
    gap: 25px;
}

/* ITEMS */
.split-item{
    padding: 20px 15px 20px 18px;
    border-left: 2px solid rgba(0,0,0,0.06);
}

/* TITLE */
.split-item h3{
    font-size: 18px;
    flex-direction: row;
    align-items: center;
}

/* ICON */
.split-item h3 i{
    padding: 8px;
    font-size: 12px;
    margin-right: 10px;
}

/* TITLE LINE */
.split-item h3::after{
    width: 30px;
}

/* TEXT */
.split-item p{
    font-size: 13px;
    line-height: 1.6;
}

/* TAG */
.tag{
    font-size: 11px;
}

/* REMOVE HEAVY HOVER SHIFT (important for mobile) */
.split-item:hover{
    transform: none;
}

/* CTA */
.split-cta{
    text-align: center;
}

.btn-gold{
    padding: 10px 20px;
    font-size: 14px;
}

}

/*======================================= Main Services================================== */
.services-main{
    background:#ffffff;
    padding:20px 8%;
    color:var(--dark);
}

/* TITLE */
.services-title{
    text-align:center;
    margin-bottom:80px;
}

.services-title h2{
    font-size:42px;
}

.services-title span{
       background:linear-gradient(var(--red1),var(--red2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* PANEL */
.service-panel{
    display:flex;
    align-items:center;
    gap:30px;
    margin-bottom:80px;

    background:rgba(0, 0, 0, 0.807);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    overflow:hidden;

    transition:0.4s ease;
}

/* REVERSE */
.service-panel.reverse{
    flex-direction:row-reverse;
}

/* IMAGE */
.service-img{
    flex:1.85;
    height:430px;
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

/* CONTENT */
.service-content{
    flex:1;
    padding:40px;
}

.service-content h3{
    font-size:20px;
    margin-bottom:15px;
    color: #ffffff;
}

.service-content p{
    color:#e4dcdc;
    margin-bottom:20px;
    line-height:1.6;
}

/* LIST */
.service-content ul{
    list-style:none;
}

.service-content li{
    margin-bottom:10px;
    position:relative;
    padding-left:20px;
    color:#ccc;
}

/* GOLD BULLET */
.service-content li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:6px;
    height:6px;
    background:var(--red2);
    border-radius:50%;
}

/* HOVER EFFECT */
.service-panel:hover{
    transform:translateY(-6px);
    border-color:rgba(245,215,110,0.4);
    box-shadow:0 0 30px rgba(245,215,110,0.15);
}

.service-panel:hover img{
    transform:scale(1.08);
}

/* CTA BUTTON */
.service-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:270px;
    margin-right: 70px;
    padding:10px 22px;

    border:1px solid var(--red2);
    border-radius:30px;

    color:var(--section-bg);
       background:linear-gradient(90deg,var(--red1),var(--red2));
    text-decoration:none;
    font-size:14px;

    transition:0.4s ease;
}

.service-ctareverse{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:270px;
    margin-right: 70px;
    padding:10px 22px;

    border:1px solid var(--red2);
    border-radius:30px;

    color:var(--section-bg);
       background:linear-gradient(90deg,var(--red1),var(--red2));
    text-decoration:none;
    font-size:14px;

    transition:0.4s ease;
}

/* ICON ANIMATION */
.service-cta i{
    transition:0.3s;
}

/* HOVER */
.service-cta:hover{
    background:linear-gradient(90deg,var(--gold1),var(--gold2));
    color:#000;
    box-shadow:0 0 15px rgba(245,215,110,0.5);
}

.service-cta:hover i{
    transform:translateX(5px);
}

@media(max-width:600px){

/* SECTION */
.services-main{
    padding:40px 15px;
}

/* TITLE */
.services-title{
    margin-bottom:40px;
}

.services-title h2{
    font-size:26px;
}

/* PANEL STACK */
.service-panel{
    flex-direction:column;
    gap:0;
    margin-bottom:40px;
    border-radius:14px;
    padding-bottom:10px;
}

/* REMOVE REVERSE */
.service-panel.reverse{
    flex-direction:column;
}

/* IMAGE */
.service-img{
    width:100%;
    height:220px;
}

/* CONTENT FLEX */
.service-content{
    padding:20px;
    display:flex;
    flex-direction:column;
}

/* TITLE */
.service-content h3{
    font-size:18px;
}

/* TEXT */
.service-content p{
    font-size:14px;
    line-height:1.5;
}

/* LIST */
.service-content li{
    font-size:13px;
    padding-left:18px;
}

/* CTA FIX (BOTTOM RIGHT) */
.service-cta,
.service-ctareverse{
    margin-top:auto;
    align-self:flex-end;
    margin-right:15px;
    margin-bottom:20px;
    font-size:13px;
    padding:8px 18px;
}

/* REMOVE HOVER EFFECTS ON MOBILE */
.service-panel:hover{
    transform:none;
}

/* ===== FIXED REVERSE ORDER (NO NESTING) ===== */
.service-panel.reverse{
    display:flex;
    flex-direction:column;
}

.service-panel.reverse .service-img{
    order:1;
}

.service-panel.reverse .service-content{
    order:2;
    display:flex;
    flex-direction:column;
}

.service-panel.reverse .service-ctareverse{
    order:3;
    margin-top:auto;
    align-self:flex-end;
    margin-right:15px;
    margin-bottom:20px;
}

}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


