* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5%;
    background: linear-gradient(to right, #c8e6c9, #f1f8e9);
    height: 100vh;
}

.left {
    flex: 1;
}

.right {
    flex: 1;
    text-align: center;
}

.logo {
    width: 80px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #4CAF50;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
}

.hero-img {
    max-width: 80%;
}

.demos {
    padding: 60px 5%;
    background: #f9f9f9;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.demo-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-card {
    background: white;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.demo-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.btn-small {
    padding: 8px 20px;
    background: #ff5722;
    color: white;
    border-radius: 20px;
    text-decoration: none;
}

.footer {
    background: #E0F1DC;
    color: black;
    padding: 30px 5%;
    text-align: center;
    margin-top: 50px;
}

.section {
    background-color: #73c7b8;
    /* padding: 50px; */
    /* position: relative; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}


/* Floating Images */
.float-img {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.float-img.broccoli {
    top: 50%;
    right: 50%;
    width: 250px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.banner-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.banner-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.banner-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.banner-item {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-item:hover img {
    transform: scale(1.1);
}

.banner-item:hover .banner-overlay {
    opacity: 1;
}

.banner-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.banner-item p {
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        padding: 60px 5%;
    }

    .hero-section .left,
    .hero-section .right {
        flex: unset;
        text-align: center;
    }

    .hero-img {
        max-width: 100%;
    }

    .demo-card {
        width: 260px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 80px 5%;
    }

    h1 {
        font-size: 2.5rem;
    }

    .demo-grid {
        flex-direction: column;
    }

    .demo-card {
        width: 100%;
        margin-bottom: 30px;
    }

    .banner-item {
        width: 250px;
        height: 180px;
    }

    .broccoli {
        margin-right: -15%;
        top: 50% !important;
        width: 100px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 5%;
    }

    h1 {
        font-size: 2rem;
    }

    .demo-card {
        width: 100%;
    }

    .banner-item {
        width: 220px;
        height: 160px;
    }

    .banner-section h2 {
        font-size: 1.8rem;
    }

    .theme-img {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 50px 5%;
    }

    h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 8px 20px;
        font-size: 1rem;
    }

    .demo-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .banner-item {
        width: 100%;
        height: 150px;
    }

    .banner-section h2 {
        font-size: 1.6rem;
    }

}