/*  Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

/* Panner section starts here */
.hero-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100vh;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    .hero-image img {
        height: 70vh;
    }
}

/* Constuling starts here */
.row{
    background: #fffbe6;
    width: 100%;
}
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    padding: 40px 20px;
    border-radius: 10px;
}

.text-content {
    max-width: 55%;
}

.text-content h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.image-content img {
    max-width: 100%;
    height: auto;
}

.head-color{
    color: #FFCC00;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .image-content {
        max-width: 80%;
    }
}