/* =========================
   HERO SLIDER
========================= */

.hero-slider{
    position:relative;
    width:100%;
    height:90vh;
    overflow:hidden;
}

/* SLIDES */

.hero-slide{
    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;

    background-size:cover;
    background-position:center;

    opacity:0;
    visibility:hidden;

    transition:1s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
}

/* OVERLAY */

.overlay{
    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,31,69,0.92) 15%,
        rgba(0,60,130,0.75) 45%,
        rgba(0,174,239,0.20) 100%
    );
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:2;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;

    max-width:700px;

    padding-left:120px;

    color:white;
}

/* LINE */

.hero-line{
    width:80px;
    height:4px;

    background:#00AEEF;

    margin-bottom:30px;
}

/* TITLE */

.hero-content h1{
    font-size:72px;
    line-height:1.1;

    margin-bottom:30px;

    font-weight:800;
}

.hero-content h1 span{
    color:#00AEEF;
}

/* TEXT */

.hero-content p{
    font-size:22px;
    line-height:1.8;

    margin-bottom:40px;

    color:rgba(255,255,255,0.9);

    max-width:650px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    align-items:center;
    gap:20px;
}

.hero-btn{
    text-decoration:none;

    padding:18px 35px;

    border-radius:8px;

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

    transition:0.4s ease;
}

/* PRIMARY BUTTON */

.primary-btn{
    background:#003C82;
    color:white;
}

.primary-btn:hover{
    background:#00AEEF;
}

/* SECONDARY BUTTON */

.secondary-btn{
    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.35);

    color:white;

    display:flex;
    align-items:center;
    gap:12px;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    box-shadow:0 4px 20px rgba(0,0,0,0.15);

    transition:0.4s ease;
}

.secondary-btn:hover{
    background:white;
    color:#001F45;
}

/* ARROWS */

.slider-arrow{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:60px;
    height:60px;

    background:rgba(0,0,0,0.4);

    backdrop-filter:blur(5px);

    border-radius:10px;

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

    cursor:pointer;

    z-index:5;

    transition:0.3s ease;
}

.slider-arrow:hover{
    background:#003C82;
}

.slider-arrow i{
    color:white;
    font-size:24px;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

/* DOTS */

.slider-dots{
    position:absolute;

    bottom:35px;
    left:50%;

    transform:translateX(-50%);

    display:flex;
    gap:12px;

    z-index:5;
}

.dot{
    width:14px;
    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,0.5);

    cursor:pointer;

    transition:0.3s ease;
}

.dot.active{
    background:#00AEEF;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .hero-slider{
        height:85vh;
    }

    .hero-content{
        padding:0 25px;
        max-width:100%;
    }

    .hero-content h1{
        font-size:46px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-btn{
        width:100%;
        justify-content:center;
    }

    .slider-arrow{
        width:50px;
        height:50px;
    }

    .prev{
        left:15px;
    }

    .next{
        right:15px;
    }
}

@media(max-width:600px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-line{
        margin-bottom:20px;
    }

    .hero-buttons{
        gap:15px;
    }
}


/* STATS SECTION */


/* =========================
   STATS SECTION
========================= */

.stats-section{
    width:100%;

    background:#ffffff;

    padding:45px 60px;

    position:relative;
    z-index:10;

    box-shadow:0 -5px 20px rgba(0,0,0,0.03);
}

/* CONTAINER */

.stats-container{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:40px;
}

/* BOX */

.stat-box{
    display:flex;
    align-items:center;
    gap:20px;

    transition:0.3s ease;
}

.stat-box:hover{
    transform:translateY(-5px);
}

/* ICON */

.stat-icon{
    width:70px;
    height:70px;

    border-radius:18px;

    background:rgba(0,174,239,0.08);

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

.stat-icon i{
    font-size:32px;
    color:#003C82;
}

/* CONTENT */

.stat-content h2{
    font-size:42px;
    font-weight:800;

    color:#001F45;

    margin-bottom:6px;
}

.stat-content p{
    font-size:17px;
    color:#666;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .stats-section{
        padding:40px 25px;
    }

    .stats-container{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .stat-content h2{
        font-size:34px;
    }
}

@media(max-width:600px){

    .stats-container{
        grid-template-columns:1fr;
    }

    .stat-box{
        padding:20px;

        border:1px solid #eee;
        border-radius:18px;
    }

    .stat-content h2{
        font-size:30px;
    }

    .stat-content p{
        font-size:15px;
    }
}

/* Stat end */