/*
|--------------------------------------------------------------------------
| HERO SECTION
|--------------------------------------------------------------------------
*/

.hero-wrapper{
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

/*
|--------------------------------------------------------------------------
| BOOTSTRAP CAROUSEL FIX
|--------------------------------------------------------------------------
*/

#heroCarousel{
    position: relative;
}

#heroCarousel .carousel-inner{
    position: relative;
}

#heroCarousel .carousel-item{
    position: relative;

    transition: transform 1.2s ease-in-out,
                opacity 1.2s ease-in-out;
}

/*
|--------------------------------------------------------------------------
| HERO SLIDE
|--------------------------------------------------------------------------
*/

.hero-slide{
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 170px 0 130px;

    overflow: hidden;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/*
|--------------------------------------------------------------------------
| OVERLAY
|--------------------------------------------------------------------------
*/

.hero-slide::before{
    content: '';

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0,0,0,.42),
            rgba(37,99,235,.24)
        );

    z-index: 1;
}

/*
|--------------------------------------------------------------------------
| DECORATIVE SHAPE
|--------------------------------------------------------------------------
*/

.hero-slide::after{
    content: '';

    position: absolute;

    top: -180px;
    right: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

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

    backdrop-filter: blur(12px);

    z-index: 1;
}

/*
|--------------------------------------------------------------------------
| CONTAINER
|--------------------------------------------------------------------------
*/

.hero-slide .container{
    position: relative;
    z-index: 5;
}

/*
|--------------------------------------------------------------------------
| CONTENT
|--------------------------------------------------------------------------
*/

.hero-content{
    max-width: 950px;
    margin: auto;
    text-align: center;
}

/*
|--------------------------------------------------------------------------
| BADGE
|--------------------------------------------------------------------------
*/

.hero-badge{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    border-radius: 60px;

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

    backdrop-filter: blur(16px);

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

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .3px;

    margin-bottom: 28px;

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

/*
|--------------------------------------------------------------------------
| TITLE
|--------------------------------------------------------------------------
*/

.hero-title{
    font-size: 78px;

    font-weight: 900;

    line-height: 1.1;

    color: #fff;

    margin-bottom: 24px;

    text-shadow:
        0 8px 30px rgba(0,0,0,.45);
}

/*
|--------------------------------------------------------------------------
| SUBTITLE
|--------------------------------------------------------------------------
*/

.hero-subtitle{
    max-width: 820px;

    margin: auto;

    font-size: 22px;

    line-height: 1.9;

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

    font-weight: 400;

    text-shadow:
        0 3px 12px rgba(0,0,0,.35);
}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/

.hero-buttons{
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-top: 45px;
}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/

.hero-btn{
    position: relative;

    overflow: hidden;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 220px;

    padding: 18px 38px;

    border-radius: 60px;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: all .35s ease;

    z-index: 5;
}

.hero-btn i{
    font-size: 15px;
}

.hero-btn:hover{
    transform: translateY(-4px);
    text-decoration: none;
}

/*
|--------------------------------------------------------------------------
| PRIMARY BUTTON
|--------------------------------------------------------------------------
*/

.hero-btn-primary{
    background: #fff;

    color: #2563eb;

    box-shadow:
        0 18px 45px rgba(0,0,0,.22);
}

.hero-btn-primary:hover{
    background: #f8fafc;
    color: #2563eb;
}

/*
|--------------------------------------------------------------------------
| OUTLINE BUTTON
|--------------------------------------------------------------------------
*/

.hero-btn-outline{
    border: 2px solid rgba(255,255,255,.35);

    color: #fff;

    backdrop-filter: blur(12px);

    background: rgba(255,255,255,.06);
}

.hero-btn-outline:hover{
    background: rgba(255,255,255,.14);
    color: #fff;
}

/*
|--------------------------------------------------------------------------
| INDICATORS
|--------------------------------------------------------------------------
*/

.carousel-indicators{
    bottom: 35px;
    z-index: 20;
}

.carousel-indicators button{
    width: 12px !important;
    height: 12px !important;

    border-radius: 50% !important;

    border: none !important;

    margin: 0 6px !important;

    background: #fff !important;

    opacity: .45;

    transition: all .35s ease;
}

.carousel-indicators .active{
    opacity: 1;

    width: 34px !important;

    border-radius: 30px !important;
}

/*
|--------------------------------------------------------------------------
| CONTROLS
|--------------------------------------------------------------------------
*/

.carousel-control-prev,
.carousel-control-next{
    width: 8%;
    opacity: 1;
    z-index: 30;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width: 58px;
    height: 58px;

    border-radius: 50%;

    background-color: rgba(255,255,255,.14);

    backdrop-filter: blur(10px);

    background-size: 18px;

    transition: .35s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover{
    background-color: rgba(255,255,255,.28);
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:1400px){

    .hero-title{
        font-size: 68px;
    }
}

@media(max-width:1200px){

    .hero-slide{
        min-height: 90vh;
    }

    .hero-title{
        font-size: 58px;
    }

    .hero-subtitle{
        font-size: 20px;
    }
}

@media(max-width:991px){

    .hero-slide{
        min-height: 78vh;

        padding: 150px 0 110px;
    }

    .hero-title{
        font-size: 48px;
    }

    .hero-subtitle{
        font-size: 18px;
        line-height: 1.8;
    }

    .carousel-control-prev,
    .carousel-control-next{
        display: none;
    }
}

@media(max-width:768px){

    .hero-slide{
        min-height: auto;

        padding: 130px 0 90px;
    }

    .hero-badge{
        font-size: 12px;

        padding: 12px 20px;
    }

    .hero-title{
        font-size: 38px;

        line-height: 1.15;
    }

    .hero-subtitle{
        font-size: 16px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-btn{
        width: 100%;
        min-width: 100%;
    }
}

@media(max-width:576px){

    .hero-slide{
        padding: 120px 0 80px;
    }

    .hero-title{
        font-size: 30px;
    }

    .hero-subtitle{
        font-size: 15px;

        line-height: 1.8;
    }

    .hero-badge{
        width: 100%;
    }
}