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

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

.services-hero{

    position:relative;

    overflow:hidden;

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:120px 0 80px;

    background:linear-gradient(
        135deg,
        #081120 0%,
        #0B132B 30%,
        #123A8D 70%,
        #1D4ED8 100%
    );

    background-size:300% 300%;

    animation:heroGradient 15s ease infinite;

}

.services-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(

            rgba(255,255,255,.02),

            rgba(255,255,255,.02)

        ),

        radial-gradient(

            circle at top right,

            rgba(0,194,255,.18),

            transparent 45%

        ),

        radial-gradient(

            circle at bottom left,

            rgba(29,78,216,.22),

            transparent 45%

        );

    z-index:1;

}

.services-hero::after{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    right:-180px;

    top:-180px;

    border-radius:50%;

    background:

        radial-gradient(

            rgba(0,194,255,.18),

            transparent 70%

        );

    filter:blur(60px);

    animation:heroGlow 8s ease-in-out infinite;

}

/*==========================================================
                    HERO LAYOUT
==========================================================*/

.services-wrapper{

    position:relative;

    z-index:10;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.services-content{

    flex:1;

    max-width:620px;

    position:relative;

    z-index:2;

}

.services-image{

    flex:1;

    display:flex;

    justify-content:center;

    position:relative;

    z-index:2;

}

/*==========================================================
                    HERO BADGE
==========================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    color:#ffffff;

    margin-bottom:30px;

}

.hero-badge i{

    color:#00C2FF;

}

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

.services-title{

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.1;

    font-weight:800;

    color:#ffffff;

    margin-bottom:25px;

}

.services-title span{

    background:linear-gradient(

        90deg,

        #00C2FF,

        #38BDF8

    );

    /* Standard */
    background-clip: text;
    color: transparent;

    /* Chrome, Edge, Safari */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.services-description{

    font-size:1.1rem;

    color:rgba(255,255,255,.75);

    line-height:1.9;

    margin-bottom:40px;

}

/*==========================================================
                    HERO BUTTONS
==========================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:40px;

}

/*==========================================================
                    HERO FEATURES
==========================================================*/

.hero-features{

    display:flex;

    gap:30px;

    margin-top:35px;

    flex-wrap:wrap;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#ffffff;

}

.hero-features i{

    color:#38BDF8;

}

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

.services-image{

    position:relative;

    z-index:10;

}

.services-image img{

    width:100%;

    max-width:580px;

    animation:floatHero 5s ease-in-out infinite;

    filter:

        drop-shadow(0 35px 60px rgba(0,0,0,.35));

}

@keyframes floatHero{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

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

@media(max-width:991px){

    .services-wrapper{

        flex-direction:column;

        text-align:center;

    }

    .services-content{

        max-width:100%;

    }

    .services-description{

        margin:0 auto 35px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        justify-content:center;

    }

}

@media(max-width:768px){

    .services-hero{

        padding:110px 0 70px;

        min-height:auto;

    }

    .services-title{

        font-size:2.5rem;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons a{

        width:100%;

        justify-content:center;

    }

    .services-image img{

        max-width:340px;

    }

}

@keyframes heroGradient{

    0%{

        background-position:0% 50%;

    }

    50%{

        background-position:100% 50%;

    }

    100%{

        background-position:0% 50%;

    }

}


@keyframes heroGlow{

    0%,100%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.15);

    }

}

.gallery-breadcrumb{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    color:#CBD5E1;
    
    margin-top: 40px;

}

.gallery-breadcrumb a{

    color:#38BDF8;

    text-decoration:none;

}