.contactUs-sec h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #333333;
    margin-top: 10px;
}

.contactUs .box{
    width: 90%;
    background: linear-gradient(180deg, #50C26A 0%, #9DF295 100%);
    height: 600px;
    border-radius: 25px;
    margin: auto;
}

.contact-card {
    padding: 30px;
}

.contactUs .box .row2 {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    width: 100%;
}

label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

input,
textarea {
    background: #eafff3;
    border: none;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 15px;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #666;
}

textarea {
    height: 160px;
    resize: none;
}

.read-more-btn {
    margin-top: 10px;
    background: transparent;
    border: 3px solid #0b8f3f;
    color: #0b8f3f;
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #0b8f3f;
    color: #ffffff;
}


.contact-info-wrapper {
    width: 100%;
    max-width: 760px;
    padding: 20px;
}

.contact-card {
    padding: 32px;
    color: #ffffff;
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 22px;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    margin-bottom: 14px;
}

.info-item.address {
    align-items: flex-start;
}

.contact-info-wrapper .info-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(78%) saturate(620%) hue-rotate(96deg) brightness(95%) contrast(95%);
}

.icon {
    font-size: 20px;
    min-width: 26px;
}

.map-box {
    margin-top: 22px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

.team-section {
    padding: 40px 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
}

.team-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.avatar img{
    width: 100px;
    height: 100px;
}

.details h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0b5f43;
    text-align: start;
}

.details p {
    margin: 4px 0;
    font-size: 14px;
    color: #0b7d5d;
    line-height: 1.4;
}

.details p img {
    width: 25px;
    height: 25px;
    /* background-color: #0b7d5d; */
    padding: 5px;
}
/* Responsive */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contactUs-sec h2 {
        font-size: 1.3rem;
    }
    .contactUs .box {
        width: 95%;
        height: auto;
        padding: 20px;
        margin-bottom: 30px;
    }
    .contact-card {
        padding: 20px;
    }
    .contactUs .box .row2 {
        flex-direction: column;
        gap: 15px;
    }
    .form-group {
        margin-bottom: 15px;
    }
    label {
        font-size: 14px;
    }
    input,
    textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    textarea {
        height: 120px;
    }
    .read-more-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
    .contact-info-wrapper {
        padding: 15px;
        max-width: 100%;
        
    }
    .contact-card h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }
    .info-item {
        gap: 12px;
        font-size: 14px;
        margin-bottom: 12px;
    }
    .icon {
        font-size: 18px;
        min-width: 24px;
    }
    .map-box iframe {
        height: 200px;
    }
    .team-section {
        padding: 30px 20px;
    }
    .team-grid {
        gap: 30px 20px;
    }
    .team-card {
        gap: 15px;
    }
    .avatar img {
        width: 80px;
        height: 80px;
    }
    .details h3 {
        font-size: 14px;
    }
    .details p {
        font-size: 13px;
    }
    .details p img {
        width: 14px;
        height: 14px;
    }
}
