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 */

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

.about-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;
}

.breadcrumb-custom{
    font-size:24px;
}

/* ABOUT SECTION */

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

.section-subtitle{
    color:#f0a500;
    font-weight:700;
    font-size:22px;
    margin-bottom:15px;
}

.section-title{
    font-size:60px;
    font-weight:900;
    color:#08152f;
    line-height:1.2;
}

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

.about-section p{
    font-size:20px;
    line-height:1.9;
    color:#444;
    margin-bottom:28px;
}

/* BUTTON */

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

.btn-about:hover{
    background:#012549;
    color:#ffc107;
}

/* FEATURE GRID */

.feature-grid{
    border-top:1px solid #e5e5e5;
    border-left:1px solid #e5e5e5;
}

.feature-box{
    padding:35px;
    border-right:1px solid #e5e5e5;
    border-bottom:1px solid #e5e5e5;
    height:100%;
    transition:0.3s;
    background:#fff;
}

.feature-box:hover{
    background:#fafafa;
}

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

.feature-box h5{
    font-size:28px;
    font-weight:800;
    color:#08152f;
    margin-bottom:15px;
}

.feature-box p{
    font-size:18px;
    line-height:1.8;
    margin:0;
}

/* STAT SECTION */

.stat-section{
    background:url('../images/hero-bg.jpg') center center/cover no-repeat;
    position:relative;
    padding:55px 0;
}

.stat-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,16,40,0.82);
}

.stat-section .container{
    position:relative;
    z-index:2;
}

.stat-box{
    display:flex;
    gap:18px;
    color:#fff;
}

.stat-box i{
    font-size:58px;
    color:#ffc107;
}

.stat-box h2{
    font-size:54px;
    font-weight:900;
    margin-bottom:5px;
}

.stat-box h5{
    font-size:20px;
    font-weight:800;
    margin-bottom:10px;
}

.stat-box p{
    margin:0;
    color:#d7d7d7;
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:991px){

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

    .section-title{
        font-size:42px;
    }

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

    .feature-box h5{
        font-size:22px;
    }

    .stat-box h2{
        font-size:38px;
    }

}