.contact-section {
    padding: clamp(40px, 5vw, 80px) 20px;
    min-height: calc(100vh - 25px); /* Adjust based on footer height */
}

.contact-section .container {
    display: flex;
    justify-content: center;
}

.container .contact-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: clamp(300px, 90%, 1100px);
}

/*    Created by Virdha Musawwir     GitHub: https://github.com/mmsvirdha    Year: 2025    */


.container .contact-container .left-side-detail {
    width: 25%;
    height: 100%;
    position: relative;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-container .left-side-detail::before {
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--main-color);
}

/*    Created by Virdha Musawwir     GitHub: https://github.com/mmsvirdha    Year: 2025    */

.contact-container .left-side-detail .contact-detail {
    margin: 14px;
    text-align: center;
}

.contact-container .left-side-detail .contact-detail .contact-detail-topic {
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 500;
}

.contact-container .left-side-detail .contact-detail .contact-detail-text {
    font-size: clamp(12px, 1.3vw, 14px);
    color: #afafb6;
}

/*    Created by Virdha Musawwir     GitHub: https://github.com/mmsvirdha    Year: 2025    */

.container .contact-container .right-side-detail {
    width: 75%;
    margin-left: 90px;
}

.contact-container .left-side-detail .contact-detail i{
    font-size: 30px;
}

.contact-container .right-side-detail .input-box {
    height: 50px;
    width: 100%;
    margin: 12px 0;
}

.right-side-detail .input-box textarea,
.right-side-detail .input-box input {
    height: 100%;
    width: 100%;
    border: none;
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 500;
    border-radius: 10px;
    background: #b3b3b3;
    padding: 12px 15px;
    resize: none;
}

/*    Created by Virdha Musawwir     GitHub: https://github.com/mmsvirdha    Year: 2025    */


.right-side-detail .message-box {
    min-height: 110px;
    margin-top: 6px;
}

.right-side-detail .send-message-button {
    margin-top: 12px;
    display: block;
    width: 100%;
}

/*    Created by Virdha Musawwir     GitHub: https://github.com/mmsvirdha    Year: 2025    */

.right-side-detail .send-message-button input[type="submit"] {
    color: var(--bg-color);
    background: var(--main-color);
    font-size: clamp(14px, 1.5vw, 18px);
    outline: none;
    border: none;
    padding: 7px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.send-message-button input[type="submit"]:hover {
    background: var(--main-color);
}

.contact-text {
    font-size: clamp(13px, 1.5vw, 16px);
    line-height: 1.3;
}

/*    Created by Virdha Musawwir     GitHub: https://github.com/mmsvirdha    Year: 2025    */

footer {
    width: 100%;
    font-size: clamp(11px, 6vw, 13px);
    background: var(--main-color);
    text-align: center;
    color: var(--bg-color);
    padding: 2px;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .container .contact-container {
        flex-direction: column-reverse;
        /*padding: 20px;*/
        gap: 30px;
    }

    .container .contact-container .left-side-detail {
        padding-bottom: 25px;
    }

    /*    Created by Virdha Musawwir     GitHub: https://github.com/mmsvirdha    Year: 2025    */

    .container .contact-container .left-side-detail,
    .container .contact-container .right-side-detail {
        width: 100%;
        margin: 0;
    }

    .contact-container .left-side-detail::before {
        display: none;
    }

/*    Created by Virdha Musawwir     GitHub: https://github.com/mmsvirdha    Year: 2025    */

    .right-side-detail .input-box,
    .right-side-detail .message-box {
        width: 100%;
    }
}



