/* 🔥 TOPBAR */
.topbar{
    position:absolute;
    top:0;
    width:100%;
    z-index:1000;
    color:#fff;
    background: rgba(0,0,0,0.3);
}

/* ❌ HIDE TOPBAR IN MOBILE */
@media(max-width:991px){
    .topbar{
        display:none;
    }
}

/* 🔥 NAVBAR */
.navbar{
    position:absolute;
    top:40px;
    width:100%;
    z-index:1000;
    background: transparent !important;
}

/* FIX NAVBAR POSITION IN MOBILE */
@media(max-width:991px){
    .navbar{
        top:0;
    }
}
a{
    text-decoration: none;
}
/* NAV LINKS */
.nav-link{
    color:#fff !important;
    font-weight:500;
}
.nav-link:hover{
    color:#ffc107 !important;
}

/* BUTTON */
.quote-btn{
    border:1px solid #fff;
    color:#fff;
}
.quote-btn:hover{
    background:#fff;
    color:#000;
}

/* 🔥 BANNER */
.banner{
    position:relative;
    height:500px;
    display:flex;
    align-items:center;
}

/* IMAGE */
.banner img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY */
.banner::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(10,40,80,0.75);
    z-index:1;
}

/* CONTENT */
.banner .content{
    position:relative;
    z-index:2;
    color:#fff;
}

/* LINE */
.line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,0.3);
    margin:10px 0;
}

/* BREADCRUMB */
.breadcrumb{
    background:none;
}
.breadcrumb-item a{
    color:#ccc;
}
.breadcrumb-item.active{
    color:#fff;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    color: #eeff00; /* optional */
    font-weight: 600;
}



/* MARQUEE SCROLL */
.marquee {
    white-space: nowrap;
    animation: scroll 25s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}