body{
    background:#06152b;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x:hidden;
}

/* Navbar */

.custom-navbar{
    /* background:rgba(0,0,0,0.4); */
    /* backdrop-filter: blur(10px); */
    padding:15px 0;
}

.logo{
    width:60px;
}

.navbar .nav-link{
    color:#fff;
    font-weight:600;
    margin:0 10px;
}

.navbar .nav-link.active,
.navbar .nav-link:hover{
    color:#ffc107;
}

/* Hero */

.hero-section{
    min-height:100vh;
    background:url('../images/hero-bg.jpg') center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    /* background:rgba(0,0,0,0.1); */
}

.small-title{
    font-size:28px;
    font-weight:700;
}

.hero-title{
    font-size:72px;
    line-height:1.1;
    font-weight:900;
}

.hero-title span{
    color:#ffc107;
}

.hero-desc{
    font-size:22px;
    max-width:650px;
    margin-top:25px;
    color:#ddd;
}

.bird-img{
    max-height:700px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

/* Product Section */

.product-section{
    margin-top:-80px;
    position:relative;
    z-index:10;
    padding-bottom:60px;
}

.product-card{
    background:rgba(5,20,45,0.95);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    padding:25px;
    height:100%;
    transition:0.3s;
    color:#fff;
}

.product-card:hover{
    transform:translateY(-10px);
    border-color:#ffc107;
}

.product-card img{
    width:100px;
    margin-bottom:20px;
}

.product-card h4{
    font-size:24px;
    font-weight:700;
}

.product-card p{
    color:#c9c9c9;
}

/* Features */

.feature-section{
    padding:80px 0;
    background:#04101f;
}

.feature-box{
    color:#fff;
}

.feature-box i{
    font-size:55px;
    color:#ffc107;
    margin-bottom:20px;
}

.feature-box h5{
    font-weight:700;
    margin-bottom:15px;
}

.feature-box p{
    color:#cfcfcf;
}

/* Responsive */

@media(max-width:991px){

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

    .hero-desc{
        font-size:18px;
    }

    .bird-img{
        margin-top:40px;
    }

}

/* Right Feature Box */

.right-feature-wrapper{
    display:flex;
    flex-direction:column;
    gap:20px;
    max-width:350px;
    margin-left:auto;
}

.right-feature-box{
    /* background:rgba(0,0,0,0.45); */
    border:1px solid rgba(255,255,255,0.08);
    /* backdrop-filter:blur(10px); */
    border-radius:20px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:20px;
    color:#fff;
    transition:0.3s;
}

.right-feature-box:hover{
    transform:translateX(-8px);
    border-color:#ffc107;
}

.icon-box{
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(18,35,50, 1);
    /* border:2px solid #ffc107; */
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.icon-box i{
    font-size:30px;
    color:#ffc107;
}

.right-feature-box h4{
    margin:0;
    font-size:22px;
    font-weight:700;
}

.right-feature-box p{
    margin-top:5px;
    margin-bottom:0;
    color:#d8d8d8;
    font-size:15px;
}

@media(max-width:991px){

    .right-feature-wrapper{
        margin-top:40px;
        max-width:100%;
    }

}

/* Brand Section */

.brand-section{
    padding:90px 0;
    background:#071426;
}

.section-title .subtitle{
    color:#ffc107;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    color:#fff;
    font-size:42px;
    font-weight:800;
}

.brand-box{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:30px;
    height:140px;

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

    transition:0.3s;
}

.brand-box:hover{
    transform:translateY(-8px);
    border-color:#ffc107;
    background:rgba(255,255,255,0.07);
}

.brand-box img{
    max-width:100%;
    max-height:60px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:0.8;
    transition:0.3s;
}

.brand-box:hover img{
    filter:none;
    opacity:1;
}