
.contact-container{
    width: 100%;
}
.contactbox{
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
    margin-left: 10%;
}
.imagesec img{
    width: 300px;
    height: 300px;
}
.content{
    width: 700px;
    font-size: 25px;
}
.form-container{
    display: flex;
    justify-content: space-evenly;
    width: 90%;
    margin: auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.forms{
    width: 40%;
    margin: auto;
}
.form-container input, .form-container textarea {
    margin-bottom: 15px;
    border-radius: 5px;
}
.form-container button {
    width: 100%;
    background-color: #6B8E23;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}
.form-container button:hover {
    background-color: #218838;
}
.map-box iframe{
    width: 500px;
    height: 500px;
}



@media screen and (max-width: 1024px) {
    .contactbox{
        width: 90%;
        display: flex;
        justify-content: space-evenly;
        margin-top: 50px;
        margin-left: 5%;
    }
    .imagesec img {
        width: 250px;
        height: 250px;
    }
    .content {
        width: 50%;
        font-size: 22px;
    }
    .form-container{
        display: flex;
        justify-content: space-evenly;
        width: 90%;
        margin: auto;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .forms {
        width: 35%;
    }
}

@media screen and (max-width: 768px) {
    .contactbox {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .imagesec img {
        width: 220px;
        height: 220px;
    }
    .content {
        width: 80%;
        font-size: 20px;
    }
    .form-container {
        flex-direction: column;
        width: 95%;
    }
    .forms {
        width: 90%;
    }
    .map-box {
        margin-top: 20px;
    }
}

@media screen and (max-width: 426px) {
    .contactbox {
        flex-direction: column;
        text-align: center;
    }
    .imagesec img {
        width: 180px;
        height: 180px;
    }
    .content {
        width: 100%;
        font-size: 18px;
    }
    .form-container {
        width: 95%;
        padding: 10px;
    }
    .forms {
        width: 100%;
    }
    .form-container button {
        font-size: 14px;
        padding: 8px;
    }
    .map-box iframe{
        width: 300px;
        height: 300px;
    }
    
}

@media screen and (max-width: 320px) {
    .imagesec img {
        width: 150px;
        height: 150px;
    }
    .content {
        font-size: 16px;
    }
    .form-container {
        padding: 8px;
    }
    .forms {
        width: 100%;
    }
}
