/* =========================================================
   SERVICES HERO SECTION
========================================================= */

.services-hero{
    width:100%;
    min-height:100vh;

    background:#000;

    position:relative;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:140px 8% 80px;
}


/* =========================================================
   OVERLAY
========================================================= */

.services-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top center,
        rgba(176,40,214,0.08),
        transparent 45%
    );

    z-index:0;
}

/* =========================================================
   GLOW EFFECT
========================================================= */

.services-glow{
    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(176,40,214,0.12),
        transparent 70%
    );

    top:50%;
    left:50%;

    transform:translate(-50%, -50%);

    filter:blur(30px);

    animation:heroGlow 5s ease-in-out infinite;

    z-index:0;
}

@keyframes heroGlow{

    0%{
        transform:translate(-50%, -50%) scale(1);
        opacity:0.6;
    }

    50%{
        transform:translate(-50%, -50%) scale(1.1);
        opacity:1;
    }

    100%{
        transform:translate(-50%, -50%) scale(1);
        opacity:0.6;
    }

}

/* =========================================================
   CONTENT
========================================================= */

.services-hero-content{
    position:relative;
    z-index:2;

    text-align:center;

    max-width:910px;

    animation:heroFade 1.2s ease;
}

@keyframes heroFade{

    0%{
        opacity:0;
        transform:translateY(60px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================================================
   MINI TITLE
========================================================= */

.services-mini-title{

    color:#c026d3;
    letter-spacing:4.5px;
    font-size:18px;
    margin-bottom:25px;
    font-weight:600;

    
}

@keyframes miniGlow{

    0%{
        opacity:0.7;
    }

    50%{
        opacity:1;

        text-shadow:
        0 0 12px rgba(176,40,214,0.6),
        0 0 24px rgba(61,70,212,0.4);
    }

    100%{
        opacity:0.7;
    }

}

/* =========================================================
   MAIN TITLE
========================================================= */

.services-hero-content h1{
    font-size:clamp(48px, 8vw, 80px);
    font-weight:600;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

/* GRADIENT TEXT */
.services-hero-content h1 span{
    display:block;

    background:
    linear-gradient(
        90deg,
        #d946ef,
        #4f46e5
    );

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.services-description{
    max-width:465px;
    margin:0px auto;
    font-size:18px;
    font-weight: 100;
    line-height:1.4;
    color:#fff;
    margin-bottom:35px;
}

/* =========================================================
   BUTTON
========================================================= */

.services-btn{
width: 160px;
    height: 30px;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(black, black) padding-box, /* Inner solid color */ linear-gradient(to right, #B028D6, #3D46D4) border-box;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    display: flex;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    margin:auto;

}

/* BUTTON HOVER */
.services-btn:hover{

    transform:
    translateY(-5px)
    scale(1.04);

    box-shadow:
    0 0 18px rgba(176,40,214,0.45),
    0 0 35px rgba(61,70,212,0.3);
}

/* =========================================================
   BOTTOM LINE
========================================================= */

.services-bottom-line{
    position:absolute;

    left:4%;
    bottom:35px;

    width:92%;
    height:1px;

    background:
    linear-gradient(
        to right,
        transparent,
        #B028D6,
        #3D46D4,
        #B028D6,
        transparent
    );
}

/* =========================================================
   SERVICES HERO SECTION - END
========================================================= */


/* =========================================================
   SERVICE LIST SECTION
========================================================= */

.service-list-section{
    width:100%;
    padding:40px 8%;
    background:#000;
    position:relative;
}

/*BOTTOM LINE */
.service-list-section::before{
    content:'';
    position:absolute;
    top: 0px;
    left:3%;
    width:94%;
    height:1px;
    background:linear-gradient(to right, #B028D6, #3D46D4, #B028D6);
}


/* =========================================================
   TITLE
========================================================= */

.service-list-title{
    text-align:center;
    margin-bottom:40px;
}

.service-list-title p{
    color:#c026d3;

    letter-spacing:6px;

    font-size:15px;
    font-weight:600;

    margin-bottom:8px;
}

.service-list-title h2{
    color:#fff;

    font-size:38px;
    font-weight:700;
}

.service-list-title h2 span{
    background:
    linear-gradient(
        90deg,
        #d946ef,
        #4f46e5
    );

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;
}

/* =========================================================
   GRID
========================================================= */

.service-list-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* =========================================================
   CARD
========================================================= */

.service-list-card{
    background:
    linear-gradient(
        180deg,
        rgba(20,0,40,0.95),
        rgba(10,0,20,0.95)
    );

    border:1px solid #7e22ce;

    border-radius:16px;

    overflow:hidden;

    transition:0.4s ease;

    box-shadow:
    0 0 18px rgba(176,40,214,0.12);
}

/* HOVER */
.service-list-card:hover{

    transform:
    translateY(-10px)
    scale(1.02);

    box-shadow:
    0 0 25px rgba(176,40,214,0.35),
    0 0 40px rgba(61,70,212,0.2);
}

/* =========================================================
   IMAGE
========================================================= */

.service-list-card img{
    width:100%;
    height:165px;

    object-fit:cover;
}

/* =========================================================
   CONTENT
========================================================= */

.service-list-content{
    padding:20px;
}

.service-list-content h3{
    color:#fff;

    font-size:19px;
    font-weight:600;

    margin-bottom:10px;
}

.service-list-content p{
    color:#d4d4d8;

    font-size:12px;
    line-height:1.7;

    margin-bottom:15px;
}

/* =========================================================
   LIST
========================================================= */

.service-list-content ul{
    list-style:none;
}

.service-list-content ul li{
    color:#d4d4d8;

    font-size:12px;

    margin-bottom:8px;

    position:relative;

    padding-left:18px;
}

/* DOT */
.service-list-content ul li::before{
    content:'';

    position:absolute;

    left:0;
    top:7px;

    width:7px;
    height:7px;

    border-radius:50%;

    background:#c026d3;

    box-shadow:
    0 0 10px rgba(176,40,214,0.7);
}


/* ===================================
   SERVICES HERO - TABLET
=================================== */
@media (max-width: 1024px) {

    .services-hero{
        padding:140px 5% 80px;
        min-height:90vh;
    }

    .services-glow{
        width:400px;
        height:400px;
    }

    .services-mini-title{
        font-size:16px;
        letter-spacing:3px;
    }

    .services-hero-content{
        max-width:800px;
    }

    .services-hero-content h1{
        font-size:60px;
    }

    .services-description{
        max-width:500px;
        font-size:17px;
    }

     .service-list-section{
        padding:60px 5%;
    }

    .service-list-title{
        margin-bottom:35px;
    }

    .service-list-title p{
        font-size:14px;
        letter-spacing:4px;
    }

    .service-list-title h2{
        font-size:34px;
    }

    .service-list-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .service-list-card img{
        height:190px;
    }

}


/* ===================================
   SERVICES HERO - MOBILE
=================================== */
@media (max-width: 768px) {

    .services-hero{
        min-height:auto;
        padding:130px 6% 70px;
    }

    .services-glow{
        width:320px;
        height:320px;
    }

    .services-mini-title{
        font-size:14px;
        letter-spacing:2px;
        margin-bottom:20px;
    }

    .services-hero-content h1{
        font-size:42px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .services-description{
        max-width:100%;
        font-size:15px;
        line-height:1.8;
        margin-bottom:30px;
    }

    .services-description br{
        display:none;
    }

    .services-btn{
        width:180px;
        height:40px;
        font-size:13px;
    }

    .service-list-section{
        padding:55px 6%;
    }

    .service-list-title{
        margin-bottom:30px;
    }

    .service-list-title p{
        font-size:13px;
        letter-spacing:3px;
    }

    .service-list-title h2{
        font-size:28px;
    }

    .service-list-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .service-list-card img{
        height:160px;
    }

    .service-list-content{
        padding:18px;
    }

    .service-list-content h3{
        font-size:17px;
    }

    .service-list-content p{
        font-size:12px;
        line-height:1.7;
    }

    .service-list-content ul li{
        font-size:12px;
    }

}


/* ===================================
   SERVICES HERO - SMALL MOBILE
=================================== */
@media (max-width: 480px) {

    .services-hero{
        padding:120px 20px 60px;
    }

    .services-glow{
        width:250px;
        height:250px;
        filter:blur(20px);
    }

    .services-mini-title{
        font-size:12px;
        letter-spacing:1.5px;
        margin-bottom:18px;
    }

    .services-hero-content h1{
        font-size:32px;
        line-height:1.3;
        margin-bottom:18px;
    }

    .services-description{
        font-size:14px;
        line-height:1.8;
        margin-bottom:25px;
    }

    .services-btn{
        width:220px;
        height:35px;
        font-size:13px;
    }

     .service-list-section{
        padding:50px 20px;
    }

    .service-list-title{
        margin-bottom:25px;
    }

    .service-list-title p{
        font-size:12px;
        letter-spacing:2px;
    }

    .service-list-title h2{
        font-size:24px;
    }

    .service-list-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .service-list-card{
        border-radius:14px;
    }

    .service-list-card img{
        height:180px;
    }

    .service-list-content{
        padding:18px;
    }

    .service-list-content h3{
        font-size:16px;
        margin-bottom:8px;
    }

    .service-list-content p{
        font-size:13px;
        line-height:1.8;
    }

    .service-list-content ul li{
        font-size:13px;
        margin-bottom:10px;
    }

}
