

        /* মেইন ফর্ম কন্টেইনার */
#proposalForm {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* রো (Row) সেটআপ */
.form-comment.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* কলাম সেটআপ */
.col-md-6, .col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

/* বড় স্ক্রিনের জন্য (Desktop/Laptop) */
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ফর্ম গ্রুপ এবং লেবেল */
.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    color: #2e31ff; /* আপনার ছবির নীল রঙ */
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group label i {
    margin-right: 8px;
}

/* ইনপুট এবং টেক্সট এরিয়া ডিজাইন */
.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #2e31ff;
    outline: none;
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

/* বাটন ডিজাইন (SEND US) */
.btn-primary {
    background-color: #eeeeee; /* ছবির মতো হালকা গ্রে রঙ */
    color: #333;
    border: 1px solid #ccc;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}

/* বাটন ডিজেবল থাকা অবস্থায় (Sending...) */
.btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}


/* ব্যাকগ্রাউন্ড ওভারলে স্টাইল */
#popupOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
}

/* পপ-আপ বক্স স্টাইল */
#thankYouPopup {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 480px;
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    border-radius: 4px;
}

#thankYouPopup .check-icon {
    font-size: 50px;
    color: #2e31ff;
    margin-bottom: 15px;
}

#thankYouPopup h3 {
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
}

#thankYouPopup p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

#thankYouPopup button {
    background: #f4f4f4;
    border: 1px solid #ddd;
    padding: 12px 40px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: 0.3s;
}

#thankYouPopup button:hover {
    background: #e0e0e0;
}