/* Start custom CSS for html, class: .elementor-element-ca679a7 *//* ==========================
SERVICES SECTION
========================== */

.services-section{
    position:relative;
    padding:180px 5% 100px;
    background:
    linear-gradient(
        135deg,
        #050505 0%,
        #0d0d0d 50%,
        #161616 100%
    );
    overflow:hidden;
}

/* ==========================
ANIMATED GRAPHICS BACKGROUND
========================== */

.graphics-bg{
    position:absolute;
    inset:0;
    z-index:1;
    overflow:hidden;
}

.shape{
    position:absolute;
    color:rgba(255,204,0,.12);
    font-weight:800;
    user-select:none;
}

/* Code */

.code{
    font-size:90px;
    top:15%;
    left:5%;
    animation:floatCode 10s infinite ease-in-out;
}

/* Play */

.play{
    font-size:120px;
    right:8%;
    top:18%;
    animation:floatPlay 12s infinite ease-in-out;
}

/* SEO */

.seo{
    font-size:70px;
    bottom:15%;
    left:10%;
    animation:floatSeo 14s infinite ease-in-out;
}

/* Design */

.design{
    font-size:90px;
    right:15%;
    bottom:18%;
    animation:floatDesign 11s infinite ease-in-out;
}

/* Video */

.video{
    font-size:80px;
    left:45%;
    top:10%;
    animation:rotateVideo 15s linear infinite;
}

/* Music */

.music{
    font-size:70px;
    right:40%;
    bottom:8%;
    animation:floatMusic 13s infinite ease-in-out;
}

@keyframes floatCode{
    50%{
        transform:translateY(-40px);
    }
}

@keyframes floatPlay{
    50%{
        transform:translateX(-40px);
    }
}

@keyframes floatSeo{
    50%{
        transform:translateY(40px);
    }
}

@keyframes floatDesign{
    50%{
        transform:translateY(-30px) rotate(15deg);
    }
}

@keyframes rotateVideo{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes floatMusic{
    50%{
        transform:translateY(-35px);
    }
}

/* ==========================
PARTICLES
========================== */

.particle{
    position:absolute;
    border-radius:50%;
    background:#ffcc00;
    opacity:.15;
    filter:blur(10px);
}

.p1{
    width:120px;
    height:120px;
    top:10%;
    right:20%;
    animation:particle1 15s infinite;
}

.p2{
    width:180px;
    height:180px;
    left:-50px;
    bottom:20%;
    animation:particle2 18s infinite;
}

.p3{
    width:100px;
    height:100px;
    right:5%;
    bottom:10%;
    animation:particle3 12s infinite;
}

.p4{
    width:150px;
    height:150px;
    left:40%;
    top:60%;
    animation:particle4 20s infinite;
}

@keyframes particle1{
    50%{
        transform:translateY(60px);
    }
}

@keyframes particle2{
    50%{
        transform:translateX(80px);
    }
}

@keyframes particle3{
    50%{
        transform:translateY(-60px);
    }
}

@keyframes particle4{
    50%{
        transform:scale(1.3);
    }
}

/* ==========================
CONTENT
========================== */

.container{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#ffcc00;
    font-weight:700;
    letter-spacing:3px;
}

.section-title h2{
    color:#fff;
    font-size:58px;
    margin:15px 0;
}

.section-title p{
    color:#cfcfcf;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* ==========================
CARDS
========================== */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#ffcc00;
    box-shadow:0 20px 40px rgba(255,204,0,.15);
}

.icon{
    font-size:55px;
    margin-bottom:20px;
}

.service-card h3{
    color:#fff;
    margin-bottom:15px;
}

.service-card p{
    color:#cfcfcf;
    line-height:1.8;
}

/* ==========================
MOBILE
========================== */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:38px;
    }

    .shape{
        display:none;
    }
}/* End custom CSS */