.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-header h2 {
    font-size: 32px;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
}

.contact-header h1 {
    font-size: 52px;
    font-weight: 500;
    background: linear-gradient(270deg, #6a11cb, #2575fc, #6a11cb);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animateGradient 3s linear infinite;
}

@keyframes animateGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.contact-header h1 span {
    color: #333;
}

.contact-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.contact_content h3 {
    font-size: 34px;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 5rem !important;
}

.contact_left img {
    width: 100%;
}

.contact_info__box {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.box_icon img {
    width: 40px;
}

.box_info h6 {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
}

.contact_info {
    padding-left: 4rem;
}

@media(max-width:992px) {
    .contact_content {
        margin-top: 2rem;
    }
}



@media(max-width:768px) {
    .contact_content h3 {
        font-size: 22px;
        margin-bottom: 3rem !important;
        text-align: center;
    }

    .contact_left {
        display: none;
    }

    .contact_bottom {
        padding-top: 0;
    }

    .contact-header h2 {
        font-size: 23px;
    }

    .box_icon img {
        width: 25px;
    }

    .box_info h6 {
        font-size: 18px;
    }

    .box_info p {
        margin-top: 3px;
    }

    .contact_info {
        padding-left: 2rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-header h1 {
        font-size: 25px;
    }


    .contact_left__heading h3 {
        font-size: 24px;
    }

    .contact-info a {
        font-size: 16px;
    }

    .contact_right {
        padding: 1rem;
        padding-bottom: 5rem !important;
    }

}