/* com css */

.content-area p {
    max-height: none;
    overflow: visible;
    display: block;
    padding: 10px;
}
.images-content-area, .content-area {
    height: auto;
    width: auto;
}
.images-content-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* form css  */

.form-containers {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    background-color: #6FDA44;
    color: #fff;
    padding: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #6FDA44;
}

@media (max-width: 600px) {
    .form-containers {
        padding: 20px;
    }

    .h2 {
        font-size: 1.5rem;
    }

    .submit-btn {
        font-size: 1rem;
    }
}
 /* form css end  */


/* seo css  */

.solution-section-slider-area .solution-slider-area.owl-carousel .owl-dots{
    display: none !important;
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: white; */
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
    margin-right: 20px;
}

.left-section img {
    max-width: 100%;
    padding: 40px;
    border-radius: 10px;
}

.left-section h2 {
    margin-top: 15px;
    color: #333;
    font-size: 24px;
    text-align: center;
}

.right-section {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.service {
    background-color: white;
    padding: 20px;
    width: 45%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.service h3 {
    color: #2bb673;
    font-size: 18px;
    margin-bottom: 10px;
}

.service p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.service a {
    color: #2bb673;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.service a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: stretch;
    }

    .right-section {
        flex-direction: column;
    }

    .service {
        width: 100%;
    }
}