/* Main Section styling Web*/
.main-section {
    padding-top: 10px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 2s ease-in-out forwards;
}

.main-section h1 {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: bold;
    color: black;
}

.main-section h2 {
    font-size: 1.5rem;
    color: black;
    padding-top: 10px;
    padding-bottom: 20px;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

.image-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.demo-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    bottom: 30%;
    left: 68%;
    transform: translateX(-50%);
    text-align: left;
    color: #fff;
}

.button-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.button-group .btn {
    padding: 10px 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.button-group .btn i {
    font-size: 1.5rem;
    margin-left: 5px;
}

#btnMain{
    width: 290px;
}

.web-banner {
    display: block;
}

.mobile-banner {
    display: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Main Section styling Mobile*/
@media (max-width: 768px) {
    .web-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .main-section {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;
        background-color: white;
        width: 100%;
    }

    .image-container {
        max-width: 100%;
        overflow: hidden;
        height: auto;
        position: relative;
    }

    .demo-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin: 0 auto;
    }

    .text-overlay {
        position: relative;
        background-color: #000000;
        border-radius: 5px;
        color: white;
        text-align: left;
        padding: 15px;
        margin: 0 auto;
        margin-top: -97px;
        max-width: 100%;
        left: 50%;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    .text-overlay h1 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
        color: #ffffff;
    }

    .text-overlay h2 {
        font-size: 1rem;
        font-weight: normal;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .button-group {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .button-group .btn {
        padding: 10px 20px;
        font-size: 1rem;
        font-weight: bold;
        background-color: #F16A23;
        color: white;
        border: none;
        border-radius: 5px;
        text-align: center;
        cursor: pointer;
        text-decoration: none;
        width: 100%;
        max-width: 100%;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    #btnMain{
        width: 100%;
    }

    .button-group .btn i {
        font-size: 1.2rem;
        margin-left: 8px;
    }

    .button-group .btn:hover {
        background-color: #d15417;
    }
}
