.elementor-9387 .elementor-element.elementor-element-64641bb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-ae1e873 *//* Contact Page Styling - Deep Blue Theme */
.contact-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.contact-header p {
    color: #666;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info {
    background: #111; /* Dark Premium Theme */
    color: #fff;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #003366; /* Deep Blue Color */
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    margin-right: 15px;
    color: #003366; /* Deep Blue Icons */
    margin-top: 5px;
}

.info-item h4 {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

.info-item p, .info-item a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Updated Button with Deep Blue & White Text */
.submit-btn {
    background: #003366; /* Deep Blue Background */
    color: #ffffff;      /* White Text */
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #002244; /* Darker Blue on Hover */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */