a {
    text-decoration: none;
}


/* HERO BANNER */
#heroBanner {
    position: relative;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 550px;
}

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

/* DARK RIGHT GRADIENT OVERLAY */
.hero-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 36, 61, 0.9), rgba(0, 36, 61, 0.1));
}

/* TEXT AREA */
.hero-content {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    color: white;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-top: 15px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* BUTTONS */
.hero-btns .hero-call {
    padding: 12px 32px;
    background: #E02850;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    margin: 5px;

}

.hero-btns .hero-quote {
    padding: 12px 32px;
    border-radius: 50px;
    margin: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

/* CAROUSEL CONTROLS */
/* .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1);
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            padding: 20px;
        } */

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

/* RESPONSIVE */
@media(max-width: 991px) {
    .hero-content {
        width: 80%;
        right: 10%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media(max-width: 576px) {
    .hero-wrapper::after {
        width: 100%;
        left: 0;
        background: rgba(0, 36, 61, 0.7);
    }

    .hero-content {
        width: 90%;
        right: 5%;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }
}


.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-item {
    padding: 15px 10px;
    position: relative;
}

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

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

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

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

@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: -80px !important;
        z-index: 10;
    }
}

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