/* ===== FORM CARD ===== */
.enquire-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    max-width: 700px;   /* 👈 yahan width control hogi */
    margin: 0 auto;     /* 👈 center me laane ke liye */
}

 

/* ===== HEADER INSIDE FORM ===== */
/* Center align heading text */
/* Center align heading text */
.enquire-header {
    text-align: center;
    margin-bottom: 30px;
}

.enquire-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px;
}

.enquire-header p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* ===== INPUTS ===== */
.enquire-box input,
.enquire-box textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #f7faff;
    transition: all 0.3s ease;
}

.enquire-box input:focus,
.enquire-box textarea:focus {
    outline: none;
    border-color: #1e73be;
    box-shadow: 0 0 0 3px rgba(30,115,190,0.15);
    background: #fff;
}

/* ===== BUTTON ===== */
.enquire-box button[type="submit"] {
    background: linear-gradient(135deg, #1e73be, #0056a3);
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquire-box button[type="submit"] {
    display: block;
    margin: 20px auto 0;
}
/* FORCE CENTER ALIGN HEADING & SUBTEXT */
.enquire-box .enquire-header {
    text-align: center !important;
}

.enquire-box .enquire-header h2 {
    text-align: center !important;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.enquire-box .enquire-header p {
    text-align: center !important;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


