/* ==========================================
   HERO SECTION
========================================== */

.hero-section{

    position:relative;

    min-height:100vh;

    background:url("../images/hero/hero-banner.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/* Optional Dark Overlay */

.hero-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(4,18,40,.80) 0%,
        rgba(4,18,40,.65) 35%,
        rgba(4,18,40,.20) 60%,
        rgba(4,18,40,0) 100%
    );

    z-index:1;

}

/* Container */

.hero-section .container{

    position:relative;

    z-index:2;

}

/* Layout */

.hero-wrapper{

    width:100%;

    min-height:100vh;

    display:flex;

    align-items:center;

}

/* Left Content */

.hero-left{

    width:48%;

}

/* Badge */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

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

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

    backdrop-filter:blur(18px);

    color:#59C8FF;

    font-size:15px;

    font-weight:600;

    margin-bottom:28px;

}

/* Heading */

.hero-title{

    font-size:72px;

    font-weight:800;

    line-height:1.08;

    color:#fff;

    margin-bottom:25px;

}

.hero-title span{

    color:#31B9FF;

}

/* Subtitle */

.hero-subtitle{

    color:#fff;

    font-size:22px;

    font-weight:500;

    margin-bottom:20px;

}

/* Description */

.hero-desc{

    color:#D6DFEA;

    font-size:18px;

    line-height:1.9;

    max-width:620px;

    margin-bottom:45px;

}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-primary{

    padding:18px 34px;

    border-radius:60px;

    background:#0D6EFD;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    background:#0A5BE0;

    transform:translateY(-4px);

    color:#fff;

}

.btn-outline{

    padding:18px 34px;

    border-radius:60px;

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

    color:#fff;

    text-decoration:none;

    backdrop-filter:blur(20px);

    transition:.35s;

}

.btn-outline:hover{

    background:#fff;

    color:#0D6EFD;

}

/* Responsive */

@media(max-width:991px){

.hero-section{

    min-height:auto;

    padding:140px 0 90px;

}

.hero-wrapper{

    display:block;

}

.hero-left{

    width:100%;

}

.hero-title{

    font-size:48px;

}

.hero-desc{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary,
.btn-outline{

    text-align:center;

}

}

@media(max-width:576px){

.hero-title{

    font-size:38px;

}

.hero-subtitle{

    font-size:18px;

}

.hero-badge{

    font-size:13px;

}

}