

/* contact us css */
/* =========================
   CONTACT PAGE - PREMIUM UI
   ========================= */

.con {
    max-width: 1100px;
    margin: 80px auto;
    padding: 40px 25px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Top Heading */
.con h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0a2540;
}

.con > p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

/* Columns spacing */
.con1, .con2 {
    padding: 10px 20px;
}

/* LEFT COLUMN (INFO) */
.con1 h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.con1 p {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* RIGHT COLUMN (FORM) */
.con2 {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    box-shadow: inset 0 0 0 1px #e5e7eb;
}

/* Form headings */
.con2 h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #0a2540;
}

.con2 p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* CONTACT FORM 7 INPUTS */
.con2 input,
.con2 textarea {
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    margin-bottom: 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.25s ease;
    outline: none;
    background: #ffffff;
}

/* Focus effect */
.con2 input:focus,
.con2 textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56,189,248,0.15);
}

/* Textarea */
.con2 textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
.con2 input[type="submit"] {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Button Hover */
.con2 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14,165,233,0.3);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .con {
        padding: 25px 15px;
        margin: 40px 10px;
    }

    .con h2 {
        font-size: 26px;
    }

    .con1, .con2 {
        padding: 10px 5px;
    }

    .con2 {
        margin-top: 25px;
    }
}