/* 🔥 HERO BACKGROUND */
.hero {
    background: linear-gradient(135deg, #0d1b3f, #0b2a6b);
    color: #fff;
    padding: 40px 0;
}

/* 🔥 CONTENT WIDTH */
.hero-content {
    max-width: 520px;
}

/* 🔥 BADGE */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

/* 🔥 HEADING */
.hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.hero h1 span {
    color: #ffd166;
}

/* 🔥 SUBTEXT */
.hero p {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.9;
}

/* 🔥 BUTTONS */
.hero-buttons {
    margin-top: 20px;
}

.hero-buttons .btn {
    margin-right: 10px;
    border-radius: 6px;
    padding: 10px 18px;
}

/* 🔥 RIGHT VISUAL CONTAINER */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* 🔥 HERO IMAGE (FINAL FIX) */
.hero-img,
.hero-img img {
    width: 90%;
    max-width: 860px;   /* 👈 controlled smaller size */
    height: auto;
    display: block;
    border-radius: 12px;
    margin-left: auto;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 🔥 ALIGNMENT FIX */
.hero .row {
    align-items: center;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .hero {
        padding: 30px 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-visual {
        justify-content: center;
        margin-top: 20px;
    }

    .hero-img,
    .hero-img img {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}