.contact-main {
    margin: 50px 0px;
}

.contact-main .contact {
    background-color: var(--offwhite-background);
    border-radius: 20px;
    padding: 40px 50px;
}

.contact-main .contact .contact-left-info {
    background-image: url('../images/contact/leftbackground.png');
    color: white;
    padding: 40px;
    border-radius: 50px;
}

.contact-main .contact .contact-left-info h1 {
    margin-bottom: 20px;
}

.contact-main .contact .contact-left-info .contact-socialmedia {
    display: flex;
    justify-content: center;
}

.contact-main .contact .contact-left-info .contact-socialmedia div {
    padding: 10px;
    margin-top: 20px;
}

.contact-main .contact .contact-left-info .contact-socialmedia div i {
    font-size: 25px;
}

.contact-main .contact .contact-left-image {
    margin-top: 30px;
}

.contact-main .contact .contact-main-form {
    background-color: white;
    border: 2px solid var(--main-color);
    padding: 40px 50px;
    border-radius: 50px;
}

.contact-main .contact .contact-main-form h2 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
}

.contact-main .contact .contact-main-form .captcha-main button {
    border: none;
    background-color: transparent;
}

.contact-main .contact .contact-main-form input,
.contact-main .contact .contact-main-form select,
.contact-main .contact .contact-main-form textarea,
.contact-main .contact .contact-main-form .file-input-container {
    margin-bottom: 20px;
    background-color: #FAFAFA;
    padding: 15px;
    border: none;
    border-radius: 15px;
}

.contact-main .contact .contact-main-form .file-input-container {
    display: flex;
}

.contact-main .contact .contact-main-form input::placeholder {
    color: #989898;
}

.contact-main .contact .contact-main-form textarea::placeholder {
    color: #989898;
}

.contact-main .contact .contact-main-form select {
    color: #989898;
}

.contact-main .contact .contact-main-form textarea {
    min-height: 150px;
}

.contact-main .contact .contact-main-form input#file {
    display: none;
}

/* otp style is here  */

      .otp-verification-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 9999;
        justify-content: center;
        align-items: center;
      }

      .otp-verification-content {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
      }

      .otp-input-group {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
      }

      .otp-digit {
        width: 50px;
        height: 50px;
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        font-family: 'Courier New', monospace;
        text-transform: uppercase;
        border: 2px solid #ddd;
        border-radius: 5px;
        outline: none;
        transition: all 0.3s;
      }

      .otp-digit:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
      }

      .otp-digit.filled {
        border-color: var(--main-color);
        background-color: #FAFAFA;
      }

      .otp-timer {
        font-size: 14px;
        color: #666;
        margin-top: 10px;
      }

      .otp-timer.expired {
        color: #dc3545;
      }

      .otp-resend {
        margin-top: 15px;
        text-align: center;
      }

      .otp-resend button {
        background: none;
        border: none;
        color: #007bff;
        text-decoration: underline;
        cursor: pointer;
        font-size: 14px;
      }

      .otp-resend button:disabled {
        color: #999;
        cursor: not-allowed;
      }

      .otp-verify-btn {
        width: 100%;
        padding: 10px;
        margin-top: 20px;
      }

      .otp-error {
        color: #dc3545;
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
      }

      .otp-success {
        color: #28a745;
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
      }

      .otp-step {
        margin-bottom: 20px;
      }

      .otp-step h4 {
        color: #333;
        margin-bottom: 10px;
      }

      .otp-step.active {
        display: block;
      }

      .otp-step.inactive {
        display: none;
      }

      .contact-info-summary {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
      }

      .contact-info-summary p {
        margin-bottom: 5px;
        font-size: 14px;
      }

      .close-otp-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
      }

      .loading-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.9);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        border-radius: 10px;
      }

      .loading-overlay.active {
        display: flex;
      }

@media screen and (max-width: 576px) {
    .contact-main .contact {
        padding: 10px;
    }

    .contact-main .contact .contact-left-info {
        padding: 20px;
        border-radius: 30px;
    }

    .contact-main .contact .contact-main-form {
        margin-top: 30px;
        padding: 15px;
        border-radius: 30px;
    }

    .contact-main .contact .contact-left-info .col-1 {
      margin-right: 10px;
    }

}