/* ===================================
   NAVBAR
=================================== */

.navbar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 80px;
    z-index: 1000;
    
}

.logo img{
    height: 100px;
    width: auto;
    display: block;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-links li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.nav-links li a:hover{
    color: #5f63ff;
}

.quote-btn{
    background: linear-gradient(135deg,#5f63ff,#6f42ff);
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.quote-btn:hover{
    transform: translateY(-2px);
}

/* ===================================
   HERO SECTION
=================================== */

.hero{

    min-height:100vh;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #030b36 0%,
    #08134f 40%,
    #132a8f 100%
    );

}

/* background glow */

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:
    rgba(108,99,255,.15);

    top:-200px;

    right:-200px;

    filter:blur(100px);

}

.hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

    bottom:-200px;

    left:-200px;

    filter:blur(100px);

}

/* ===================================
   HERO CONTAINER
=================================== */

.hero-container{

    width:100%;

    max-width:1400px;

    margin-left: -50px;

    min-height:85vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;

    padding:0 8%;

    position:relative;

    z-index:10;

}

/* ===================================
   LEFT CONTENT
=================================== */

.hero-left{

    /* flex:1; */
    margin-top: 130px;

}

.hero-left h1{

    font-size:78px;

    line-height:1.1;

    color:#fff;

    font-weight:800;

    margin-bottom:25px;

}

.hero-left h1 span{

    color:#6c63ff;

}

.hero-left p{

    color:#d8ddff;

    font-size:22px;

    max-width:650px;

    line-height:1.8;

    margin-bottom:35px;

}

/* ===================================
   BUTTONS
=================================== */

.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:60px;

}

/* ===================================
   STATS
=================================== */

.stats{

    display:flex;

    gap:40px;

    flex-wrap:wrap;

}

.stat-box{

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    padding:20px 25px;

    border-radius:16px;

    border:
    1px solid
    rgba(255,255,255,.08);

    min-width:140px;

}

.stat-box h3{

    color:#fff;

    font-size:32px;

    font-weight:700;

    margin-bottom:8px;

}

.stat-box p{

    color:#cfd5ff;

    font-size:14px;

}

/* ===================================
   RIGHT IMAGE
=================================== */

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-right img{

    width:300%;

    max-width:700px;

    object-fit:contain;

    animation:
    floating 5s ease-in-out infinite;

    filter:
    drop-shadow(
    0 0 40px
    rgba(108,99,255,.5)
    );

}

/* ===================================
   FLOAT ANIMATION
=================================== */

@keyframes floating{

    0%{
        transform:
        translateY(0);
    }

    50%{
        transform:
        translateY(-20px);
    }

    100%{
        transform:
        translateY(0);
    }

}

/* ===================================
   HERO BADGE
=================================== */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:
    rgba(255,255,255,.08);

    padding:12px 20px;

    border-radius:50px;

    color:#fff;

    margin-bottom:25px;

    border:
    1px solid
    rgba(255,255,255,.1);

}

/* ===================================
   MOBILE MENU ICON
=================================== */

.menu-btn{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

/* ===================================
   SCROLL INDICATOR
=================================== */

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:20px;

    transform:translateX(-50%);

    color:#fff;

    font-size:14px;

    animation:
    bounce 2s infinite;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{
        transform:
        translateX(-50%)
        translateY(0);
    }

    40%{
        transform:
        translateX(-50%)
        translateY(-10px);
    }

    60%{
        transform:
        translateX(-50%)
        translateY(-5px);
    }

}

/* ===================================
   HERO SHAPES
=================================== */

.circle-1{

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    border:
    2px solid
    rgba(255,255,255,.08);

    top:150px;

    right:120px;

}

.circle-2{

    position:absolute;

    width:200px;

    height:200px;

    border-radius:50%;

    border:
    2px solid
    rgba(255,255,255,.05);

    bottom:100px;

    right:50px;

}

/* ===================================
   GLASS EFFECT
=================================== */

.glass{

    background:
    rgba(255,255,255,.08);

    backdrop-filter:
    blur(12px);

    border:
    1px solid
    rgba(255,255,255,.1);

}

.nav-links a.active{

    color:#6c63ff;
}

.nav-links a.active::after{

    width:100%;
}