/* ===============================
   HERO SECTION – KOLUNJI
================================= */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Wrapper Spacing */
.section-wrapper {
    padding: 60px 0;
}
.hero-content,
.hero-content h1,

.hero-content .hero-btn {
    font-family: "Laila", serif;
}
/* Hero Background Section */
.hero-box {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 8%;
    position: relative;
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* White Content Card */
.hero-content {
    background: rgba(255, 255, 255, 0.92);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    position: relative;
    z-index: 1;
    font-family: "Laila", serif;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Heading */
.hero-content h1 {
    font-size: 38px;
    color: #4b2e1e;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Sub Text */
.hero-subtext {
    font-size: 18px;
    color: #6b5b4d;
    margin-bottom: 25px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

/* Button */
.hero-btn {
    display: inline-block;
    background: #2f7d32;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-family: "Laila", serif;
    font-weight: 500;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

/* Button Hover */
.hero-btn:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #2f7d32;
}

/* Decorative Images */
.hero-img {
    position: absolute;
    top: 0;
    right: 10px;
    width: 30%;
    max-width: 110px;
    transform: rotate(9deg);
    opacity: 0.9;
}

.hero-img-2 {
    position: absolute;
    bottom: 10px;
    left: -20px;
    width: 30%;
    max-width: 110px;
    transform: rotate(90deg);
    opacity: 0.9;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {

    .hero-box {
        height: auto;
        min-height: 500px;
        padding: 40px 20px;
        justify-content: center;
    }

    .hero-content {
        padding: 30px 25px;
        max-width: 100%;
        margin: 20px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtext {
        font-size: 14px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}