/*==================================================
        PREMIUM ABOUT HERO
        CSS PART - 1
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#0d6efd;
    --secondary:#00c6ff;
    --white:#ffffff;
    --text:#e9eef5;
    --dark:#08121f;

    --overlay1:rgba(5,15,35,.78);
    --overlay2:rgba(3,18,45,.52);

    --container:1280px;

}

body{

    font-family:Inter,sans-serif;
    background:#fff;
    overflow-x:hidden;

}

/*========================================
        HERO SECTION
========================================*/

.about-hero{

    position:relative;
    width:100%;
    height:70vh;

    min-height:620px;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

}

/*========================================
        SLIDER
========================================*/

.hero-slider{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

}

.hero-slide{

    position:absolute;

    inset:0;

    background-position:center;

    background-size:cover;

    background-repeat:no-repeat;

    opacity:0;

    visibility:hidden;

    transition:opacity 1.3s ease,
               transform 8s linear;

    transform:scale(1);

}

.hero-slide.active{

    opacity:1;

    visibility:visible;

    transform:scale(1.08);

}

/*========================================
        OVERLAY
========================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    120deg,

    var(--overlay1),

    var(--overlay2)

    );

    z-index:1;

}

/*========================================
        CONTAINER
========================================*/

.hero-container{

    position:relative;

    z-index:5;

    width:100%;

    max-width:var(--container);

    margin:auto;

    padding-inline:60px;

}

/*========================================
        SUB TITLE
========================================*/

.hero-subtitle{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:#fff;

    letter-spacing:4px;

    font-size:14px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:25px;

}

.hero-subtitle::before{

    content:"";

    width:60px;

    height:2px;

    background:linear-gradient(to right,
    #00d2ff,
    #3a7bd5);

}

/*========================================
        TITLE
========================================*/

.hero-title{

    max-width:850px;

    color:#fff;

    font-size:72px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:28px;

}

.hero-title span{

    display:block;

    background:linear-gradient(
    90deg,

    #00d2ff,

    #53e3ff,

    #ffffff

    );

    -webkit-background-clip:text;

    color:transparent;

}

/*========================================
        DESCRIPTION
========================================*/

.hero-description{

    max-width:700px;

    color:#d7dbe2;

    font-size:18px;

    line-height:1.9;

    margin-bottom:45px;

}

/*========================================
        CONTENT ANIMATION
========================================*/

.hero-subtitle,
.hero-title,
.hero-description{

    animation:fadeUp 1s ease forwards;

}

.hero-title{

    animation-delay:.2s;

}

.hero-description{

    animation-delay:.4s;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*========================================
        FLOATING LIGHT
========================================*/

.hero-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:2;

}

.shape1{

    width:260px;

    height:260px;

    background:#00b4ff55;

    left:-80px;

    top:-80px;

}

.shape2{

    width:220px;

    height:220px;

    background:#004cff40;

    right:-70px;

    top:40px;

}

.shape3{

    width:260px;

    height:260px;

    background:#00ffd040;

    bottom:-120px;

    left:45%;

}

/*========================================
        TEXT SELECTION
========================================*/

::selection{

    background:#00b4ff;

    color:#fff;

}


/*==================================================
        PREMIUM ABOUT HERO
        CSS PART - 2
==================================================*/


/*=========================================
            BUTTON AREA
=========================================*/

.hero-buttons{

    display:flex;
    align-items:center;
    gap:20px;

    margin-bottom:45px;

}

/*=========================================
            BUTTON
=========================================*/

.hero-btn{

    position:relative;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:17px 38px;

    border-radius:60px;

    text-decoration:none;

    overflow:hidden;

    font-size:15px;

    font-weight:700;

    transition:.45s;

}

/* Primary */

.hero-primary{

    color:#fff;

    background:linear-gradient(
    135deg,
    #0072ff,
    #00c6ff);

    box-shadow:
    0 15px 35px rgba(0,120,255,.30);

}

.hero-primary:hover{

    transform:translateY(-6px);

    box-shadow:
    0 25px 45px rgba(0,120,255,.45);

}

/* Secondary */

.hero-secondary{

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.08);

}

.hero-secondary:hover{

    background:#fff;

    color:#111;

    transform:translateY(-6px);

}


/*=========================================
        BUTTON SHINE EFFECT
=========================================*/

.hero-btn::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:80px;

    height:100%;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.45),

    transparent

    );

    transform:skewX(-25deg);

    transition:.8s;

}

.hero-btn:hover::before{

    left:150%;

}



/*=========================================
            BREADCRUMB
=========================================*/

.hero-breadcrumb{

    display:inline-flex;

    align-items:center;

    gap:16px;

    padding:14px 28px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.10);

}

.hero-breadcrumb a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.hero-breadcrumb a:hover{

    color:#00d2ff;

}

.hero-breadcrumb span{

    color:#d8d8d8;

}



/*=========================================
            SLIDER ARROWS
=========================================*/

.slider-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:62px;

    height:62px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    z-index:100;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    backdrop-filter:blur(15px);

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    transition:.4s;

}

.slider-arrow:hover{

    background:#00b4ff;

    transform:translateY(-50%) scale(1.12);

}

.slider-arrow svg{

    width:24px;

    height:24px;

}

.prev-slide{

    left:40px;

}

.next-slide{

    right:40px;

}



/*=========================================
            DOTS
=========================================*/

.hero-dots{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    display:flex;

    gap:14px;

    z-index:100;

}

.dot{

    width:13px;

    height:13px;

    border-radius:50%;

    cursor:pointer;

    transition:.4s;

    background:rgba(255,255,255,.35);

}

.dot:hover{

    transform:scale(1.3);

}

.dot.active{

    width:38px;

    border-radius:30px;

    background:#00c6ff;

}



/*=========================================
        SCROLL INDICATOR
=========================================*/

.scroll-indicator{

    position:absolute;

    right:50px;

    bottom:28px;

    z-index:100;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

}

.scroll-indicator p{

    color:#fff;

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.mouse{

    width:30px;

    height:52px;

    border-radius:25px;

    border:2px solid rgba(255,255,255,.65);

    display:flex;

    justify-content:center;

}

.mouse span{

    width:6px;

    height:12px;

    background:#fff;

    border-radius:50px;

    margin-top:8px;

    animation:wheel 2s infinite;

}

@keyframes wheel{

    0%{

        transform:translateY(0);

        opacity:1;

    }

    70%{

        transform:translateY(18px);

        opacity:0;

    }

    100%{

        transform:translateY(0);

        opacity:0;

    }

}



/*=========================================
        HERO IMAGE ANIMATION
=========================================*/

.hero-slide.active{

    animation:zoomHero 10s linear forwards;

}

@keyframes zoomHero{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.10);

    }

}



/*=========================================
            GLOW EFFECT
=========================================*/

.hero-container{

    text-shadow:

    0 3px 10px rgba(0,0,0,.25);

}



/*=========================================
        GLASS EFFECT
=========================================*/

.hero-container::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-120px;

    top:-140px;

    border-radius:50%;

    background:

    radial-gradient(

    rgba(255,255,255,.08),

    transparent 70%

    );

    pointer-events:none;

}



/*=========================================
        BUTTON CLICK EFFECT
=========================================*/

.hero-btn:active{

    transform:scale(.97);

}

/*==================================================
        PREMIUM ABOUT HERO
        CSS PART - 3
        RESPONSIVE
==================================================*/


/*=========================================
        LARGE DESKTOP
=========================================*/

@media (max-width:1600px){

    .hero-container{

        max-width:1300px;

    }

}


/*=========================================
            LAPTOP
=========================================*/

@media (max-width:1400px){

    .about-hero{

        min-height:600px;

    }

    .hero-title{

        font-size:62px;

    }

}


/*=========================================
            SMALL LAPTOP
=========================================*/

@media (max-width:1200px){

    .hero-container{

        padding-inline:40px;

    }

    .hero-title{

        font-size:54px;

    }

    .hero-description{

        font-size:17px;

    }

}


/*=========================================
                TABLET
=========================================*/

@media (max-width:992px){

    .about-hero{

        height:65vh;

        min-height:580px;

    }

    .hero-container{

        padding-inline:30px;

    }

    .hero-title{

        font-size:46px;

    }

    .hero-description{

        max-width:100%;

        font-size:16px;

    }

    .hero-buttons{

        flex-wrap:wrap;

    }

    .slider-arrow{

        width:52px;

        height:52px;

    }

    .prev-slide{

        left:20px;

    }

    .next-slide{

        right:20px;

    }

}


/*=========================================
            LARGE MOBILE
=========================================*/

@media (max-width:768px){

    .about-hero{

        height:60vh;

        min-height:520px;

    }

    .hero-container{

        text-align:center;

        padding-inline:25px;

    }

    .hero-subtitle{

        justify-content:center;

    }

    .hero-title{

        font-size:38px;

        line-height:1.2;

    }

    .hero-description{

        font-size:15px;

        margin:auto;

        margin-bottom:35px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-breadcrumb{

        margin:auto;

    }

    .slider-arrow{

        display:none;

    }

    .scroll-indicator{

        display:none;

    }

}


/*=========================================
                MOBILE
=========================================*/

@media (max-width:576px){

    .about-hero{

        height:55vh;

        min-height:500px;

    }

    .hero-container{

        padding-inline:20px;

    }

    .hero-title{

        font-size:32px;

    }

    .hero-description{

        font-size:14px;

        line-height:1.8;

    }

    .hero-btn{

        width:100%;

    }

    .hero-buttons{

        flex-direction:column;

        gap:15px;

    }

    .hero-breadcrumb{

        flex-wrap:wrap;

        justify-content:center;

        font-size:14px;

    }

    .hero-dots{

        bottom:20px;

    }

}


/*=========================================
            SMALL MOBILE
=========================================*/

@media (max-width:420px){

    .about-hero{

        min-height:460px;

    }

    .hero-title{

        font-size:28px;

    }

    .hero-subtitle{

        font-size:12px;

        letter-spacing:2px;

    }

    .hero-description{

        font-size:13px;

    }

    .hero-btn{

        padding:15px 20px;

        font-size:14px;

    }

    .hero-breadcrumb{

        padding:10px 18px;

    }

}


/*=========================================
            EXTRA SMALL
=========================================*/

@media (max-width:360px){

    .hero-title{

        font-size:24px;

    }

    .hero-description{

        font-size:12px;

    }

}


/*=========================================
        ACCESSIBILITY
=========================================*/

.hero-btn:focus,
.slider-arrow:focus{

    outline:2px solid #00d4ff;

    outline-offset:4px;

}


/*=========================================
        SMOOTH SCROLL
=========================================*/

html{

    scroll-behavior:smooth;

}


/*=========================================
        IMAGE PERFORMANCE
=========================================*/

.hero-slide{

    will-change:opacity,transform;

}


/*=========================================
        GPU ACCELERATION
=========================================*/

.hero-slide,
.hero-overlay,
.hero-container{

    transform:translateZ(0);

    backface-visibility:hidden;

}


/*=========================================
            END
=========================================*/
