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

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

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

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

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

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

.hero-content p{
    font-size:24px;
    line-height:1.8;
}

/* SERVICES */

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

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

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

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

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

/* SERVICE CARD */

.service-card{
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:14px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.service-icon{
    width:95px;
    height:95px;
    border-radius:50%;
    background:#00152d;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 28px;
}

.service-icon i{
    font-size:48px;
    color:#ffc107;
}

.service-card h4{
    font-size:30px;
    font-weight:900;
    color:#08152f;
    margin-bottom:22px;
    line-height:1.3;
}

.service-card p{
    color:#444;
    line-height:1.9;
    font-size:18px;
}

.card-line{
    width:60px;
    height:3px;
    background:#ffc107;
    margin:25px auto 0;
}

/* FEATURE SECTION */

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

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

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

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

.feature-box p{
    margin:0;
    color:#d7d7d7;
    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:991px){

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

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

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

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

    .service-card h4{
        font-size:22px;
    }

    .service-card p{
        font-size:16px;
    }

}