   
.nav {
  position: relative;
  top: -20px; /* adjust -3px / -8px based on need */ 
    }


.logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
}




.logo {
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

/* WRAPPER */
.form-wrapper {
    background: #f4f6f7;
    padding: 60px 20px;
}

/* FORM CARD */
.contact_form_container {
    max-width: 1050px;
    margin: auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.contact_form_title {
    background: linear-gradient(135deg, #E63946, #F77F00);
    color: #fff;
    padding: 15px 25px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 5px 5px 0 0;
    display: inline-block;
    margin-bottom: 20px;
}

/* CONDITIONS TEXT */
.contact_form_container p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* LABELS */
label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* INPUT FIELDS */
.form-control {
    height: 48px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    background: #f1f3f5;
    font-size: 15px;
    padding: 10px 15px;
    transition: 0.3s;
}

/* TEXTAREA */
textarea.form-control {
    height: 120px;
    resize: none;
}

/* FOCUS EFFECT */
.form-control:focus {
    background: #fff;
    border-color: #0d1f3f;
    box-shadow: 0 0 0 2px rgba(86,183,176,0.15);
}

/* RADIO & CHECKBOX */
.form-check {
    margin-right: 15px;
    margin-bottom: 10px;
}

.form-check-input {
    margin-top: 4px;
}

.form-check-label {
    font-size: 14px;
    color: #555;
}

/* FIELDSET LEGEND */
legend {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

/* SELECT BOX */
.custom-select {
    height: 45px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    padding: 5px 10px;
    font-size: 14px;
}

/* BUTTON */
.contact_button {
    background: #1a2f52;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.contact_button:hover {
    background: linear-gradient(135deg, #E63946, #F77F00);
    cursor: pointer;
}

/* SPACING FIX */
.form-row {
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact_form_container {
        padding: 25px;
    }

    .contact_form_title {
        font-size: 18px;
        padding: 12px 18px;
    }
}


.required{
    color: red;
    font-weight: bold;
}