.hero-slider {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 60, 93, 0.95) 0%, rgba(11, 60, 93, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    max-width: 650px;
}

.hero-tagline {
    display: inline-block;
    background: var(--orange-accent);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtext {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-btn-primary {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: var(--primary-blue);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Abstract Shapes */
.hero-shapes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave {
    width: 100%;
    height: auto;
    display: block;
}

/* Right Side Image */
.hero-visual {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 90%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.hero-visual img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Swiper Custom */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--orange-accent);
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slider {
        height: 80vh;
    }

    .hero-slide {
        background-position: center top;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-visual {
        display: none;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(11, 60, 93, 0.9) 0%, rgba(11, 60, 93, 0.7) 100%);
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
        padding-top: 50px;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}