.section-1{
    position: relative;
    max-width: 2000px;
    margin: 0 auto;
    width: 100%;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: all 0.5s ease;
}

.section-1 .hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.section-1 .hero-content {
    margin: 0 auto;
    display: flex;
    max-width: 2000px;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.section-1 .hero-content .bg-img{
    position: relative;
    margin-left: -0%;
    width: 10%;
    height: 30%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.section-1 .hero-text {
    flex: 1;
    max-width: 900px;
    padding: 2rem;
    transition: all 0.5s ease;
}

.section-1 .hero-title {
    font-size: 6rem;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'montserrat', sans-serif;
    transition: all 0.5s ease;
}

.section-1 .hero-title img{
    position: relative;
    object-fit: contain;
    top: 10px;
    transition: all 0.5s ease;
}

.section-1 .hero-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.6;
    transition: all 0.5s ease;
}

.section-1 .hero-image {
    flex: 1;
    max-width: 600px;
    transition: all 0.5s ease;
}

.section-1 .hero-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.section-1 .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #FF6F00;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.section-1 .cta-button:hover {
    background-color: #e65c00d8;
}

.section-1 .decorative-shape {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: #ff6b00;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.5s ease;
}

/* Responsive Design */
@media (max-width: 968px) {
    .section-1 .hero-content {
        /* flex-direction: column; */
    }

    .section-1 .hero-text {
        padding: 0rem;
    }

    .section-1 .hero-image {
        /* order: -1; */
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-1 .hero {
        min-height: 500px;
    }

    .section-1 .hero-text {
        padding: 0.5rem;
    }

    .section-1 .cta-button {
        width: 70%;
        text-align: center;
    }
}

/* 320px */
@media  screen and (min-width: 320px) {
    .section-1 .hero-content .bg-img{
        display: none;
    }

    .section-1 .hero-text {
        position: relative;
        left: 0px;
        padding: 10px;
    }
    .section-1 .hero-title {
        font-size: 1.4rem;
        width: 200px;
        text-align: left;
    }
    .section-1 .hero-title img{
        position: relative;
        object-fit: contain;
        top: 7px;
        width: 50px;
    }
    .section-1 .hero-description {
        width: 250px;
        text-align: left;
    }

    .section-1 .hero-image img {
        position: absolute;
        width: 150px;
        top: 0;
        left: 60%;
    }
}
/* 375px */
@media  screen and (min-width: 375px) {
    .section-1 .hero-content .bg-img{
        display: none;
    }

    .section-1 .hero-text {
        position: relative;
        left: 0px;
        padding: 10px;
    }
    .section-1 .hero-title {
        font-size: 1.7rem;
        width: 250px;
        text-align: left;
    }
    .section-1 .hero-title img{
        position: relative;
        object-fit: contain;
        top: 7px;
        width: 50px;
    }
    .section-1 .hero-description {
        width: 280px;
        text-align: left;
    }
    
    .section-1 .hero-image img {
        position: absolute;
        width: 200px;
        top: 0;
        left: 60%;
    }
}
/* 425px */
@media  screen and (min-width: 425px) {
    .section-1 .hero-content .bg-img{
        display: none;
    }

    .section-1 .hero-text {
        position: relative;
        left: 0px;
        padding: 10px;
    }
    .section-1 .hero-title {
        font-size: 2rem;
        width: 300px;
        text-align: left;
    }
    .section-1 .hero-title img{
        position: relative;
        object-fit: contain;
        top: 7px;
        width: 50px;
    }
    .section-1 .hero-description {
        width: 350px;
        text-align: left;
    }
    
    .section-1 .hero-image img {
        position: absolute;
        width: 250px;
        top: 0;
        left: 62%;
    }
}
/* 768px */
@media  screen and (min-width: 768px) {
    .section-1 .hero-content .bg-img{
        position: relative;
        display: block;
        left: 0;
        object-fit: contain;
        height: 100%;
        z-index: -1;
    }
    .section-1 .hero-title {
        font-size: 3rem;
        width: 400px;
    }
    .section-1 .hero-description {
        width: 400px;
    }
    .section-1 .hero-title img{
        position: relative;
        object-fit: contain;
        top: 7px;
        width: 70px;
    }

    .section-1 .hero-image img {
        position: relative;
        width: 100%;
        top: -80px;
        height: 400px;
        object-fit: contain;
        left: 0%;
    }
}
/* 969px */
@media  screen and (min-width: 969px) {
    .section-1 .hero-content .bg-img{
        position: relative;
        display: block;
        left: 0;
        object-fit: contain;
        height: 100%;
        z-index: -1;
    }
    .section-1 .hero-title {
        font-size: 3.5rem;
        width: 500px;
    }
    .section-1 .hero-description {
        width: 500px;
    }

    .section-1 .hero-title img{
        position: relative;
        object-fit: contain;
        top: 7px;
        width: 70px;
    }

    .section-1 .hero-image img {
        position: relative;
        top: -90px;
        height: auto;
        object-fit: contain;
        left: 0%;
    }
}
/* 1440px */
@media  screen and (min-width: 1440px) {
    .section-1 .hero-content .bg-img{
        position: relative;
        display: block;
        left: 0;
        object-fit: contain;
        height: 100%;
        z-index: -1;
    }
    .section-1 .hero-title {
        font-size: 5rem;
        width: 700px;
    }
    .section-1 .hero-description {
        width: 700px;
    }
    .section-1 .hero-title img{
        position: relative;
        object-fit: contain;
        top: 7px;
        width: 70px;
    }

    .section-1 .hero-image img {
        position: relative;
        top: -30px;
        height: auto;
        object-fit: contain;
        left: 0%;
    }
}
