/* Contact Widget Container */
.nd-contact-widget {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Content Card */
.nd-contact-card {
    position: relative;
    background: #fff;
    /* Optional: Keep shadow if they want a card look, or remove for flat look. Keeping for now as it structures the 2 cols */
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

/* Left Column - Info */
.nd-contact-info {
    flex: 1;
    padding: 60px;
    min-width: 300px;
}

.nd-contact-logo {
    max-width: 150px;
    margin-bottom: 30px;
}

.nd-contact-title {
    font-family: "Montserrat", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0d1e4c;
    margin-bottom: 20px;
}

.nd-contact-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: "Montserrat", Sans-serif;
}

.nd-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nd-contact-item {
    display: flex;
    align-items: flex-start;
    font-family: "Montserrat", Sans-serif;
    gap: 15px;
    color: #333;
    font-weight: 600;
}

.nd-contact-item i {
    color: #0d1e4c;
    font-size: 20px;
    margin-top: 3px;
}

/* Right Column - Form */
.nd-contact-form-col {
    flex: 1;
    padding: 60px;
    min-width: 300px;
}

.nd-form-group {
    margin-bottom: 20px;
}

.nd-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.nd-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.nd-form-input:focus {
    border-color: #0d1e4c;
}

textarea.nd-form-input {
    min-height: 120px;
    resize: vertical;
}

.nd-submit-btn {
    background-color: #2b4ea1;
    color: #fff;
    /* Pink color matching image */
    border: 1px solid #2b4ea1;
    padding: 10px 20px;
    border-radius: 30px;
    /* Slight rounding */
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: inherit;
}

.nd-submit-btn:hover {
    background-color: #4A74CA;
    color: white;
}

.nd-submit-btn i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nd-contact-card {
        flex-direction: column;
    }

    .nd-contact-widget {
        padding: 20px 0;
    }

    .nd-contact-info,
    .nd-contact-form-col {
        padding: 30px;
    }
}