body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f8fa;
}

/* NAVBAR */

.custom-navbar{
    background:#00152d;
    padding:18px 0;
}

.logo{
    width:60px;
}

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

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

/* HERO */

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

.brand-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.hero-content h1{
    font-size:90px;
    font-weight:900;
}

.hero-line{
    width:90px;
    height:4px;
    background:#ffc107;
    margin:20px 0 25px;
}

.hero-content p{
    font-size:22px;
    line-height:1.7;
    max-width:600px;
}

/* BRAND SECTION */

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

.section-title{
    max-width:850px;
    margin:auto;
}

.section-title h2{
    font-size:48px;
    font-weight:900;
    color:#07152f;
}

.title-line{
    width:90px;
    height:4px;
    background:#ffc107;
    margin:20px auto;
}

.section-title p{
    font-size:22px;
    color:#555;
    line-height:1.7;
}

/* BRAND BOX */

.brand-box{
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:14px;
    height:150px;

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

    transition:0.3s;
}

.brand-box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.brand-box img{
    max-width:75%;
    max-height:70px;
    object-fit:contain;
}

/* BUTTON */

.btn-brand{
    background:#00152d;
    color:#ffc107;
    padding:18px 40px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:0.3s;
}

.btn-brand:hover{
    background:#012549;
    color:#fff;
}

/* FEATURE SECTION */

.feature-section{
    background:#00152d;
    padding:55px 0;
}

.feature-box{
    display:flex;
    gap:20px;
    color:#fff;
}

.feature-box i{
    font-size:52px;
    color:#ffc107;
}

.feature-box h5{
    font-size:22px;
    font-weight:800;
    margin-bottom:12px;
}

.feature-box p{
    color:#d8d8d8;
    margin:0;
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:991px){

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

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

    .section-title h2{
        font-size:38px;
    }

    .section-title p{
        font-size:18px;
    }

}