a{
    text-decoration: none;
}

/* BANNER HEIGHT */
.carousel-item {
    height: 70vh;
    min-height: 420px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 35%;
}

.carousel-caption h1 {
    font-size: 42px;
    font-weight: 800;
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-orange {
    background: #ff6a2a;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 10px;
}

.btn-blue {
    background: #002e5d;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
}

/* FIX BUTTONS ON MOBILE */
@media (max-width: 576px) {
    .carousel-caption {
        bottom: 25%;
    }
    .carousel-caption h1 {
        font-size: 26px;
    }
    .carousel-caption p {
        font-size: 14px;
    }
    .btn-orange,
    .btn-blue {
        width: 100%;
        display: block;
        margin: 5px 0;
    }
}

/* ROAD STRIP STYLE */
.road-strip {
    width: 100%;
    height: 25px;
    background: #f8c900;
    position: relative;
    z-index: 1;
}

.road-strip::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    background-image: repeating-linear-gradient(
        to right,
        black 0px,
        black 20px,
        transparent 20px,
        transparent 40px
    );
}

/* STATS BOX FLOATING */
.stats-wrapper {
    position: relative;
    margin-top: -100px;
    z-index: 10;
}

.stats-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 25px;
    box-shadow: 0px 8px 40px rgba(0,0,0,0.15);
}

/* Stats Items */
.stats-item {
    padding: 15px 10px;
    position: relative;
}

.stats-icon {
    font-size: 32px;
    color: #ff5f20;
    margin-bottom: 5px;
}

.stats-number {
    font-size: 28px;
    font-weight: 800;
}

.stats-label {
    color: #444;
    font-size: 15px;
}

/* Divider (desktop) */
.stats-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 2px;
    background: #e0e0e0;
}

/* Mobile divider fixes */
@media (max-width: 768px) {
    .stats-item:not(:last-child)::after {
        right: 50%;
        top: auto;
        bottom: 0;
        width: 70%;
        height: 2px;
        left: 15%;
    }

}
@media (max-width: 767px) {
    .stats-item:not(:last-child)::after {
        right: 50%;
        top: auto;
        bottom: 0;
        width: 70%;
        height: 2px;
        left: 15%;
    }
    .stats-wrapper {
    position: relative;
    margin-top: -160px !important;
    z-index: 10;
}
}

@media (max-width: 991px) {
.stats-wrapper {
    position: relative;
    margin-top: -100px;
    z-index: 10;
}
}

