﻿body {background-color:white;
}
.contact-heading-wrapper {
    margin-top: 60px; /* adjust this based on your header height */
}
.contact-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #0a0a17;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-subheading {
    text-align: center;
    color: #6c7a91;
    margin-bottom: 2rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    font-size:12px;
}

.contact-info {
    flex: 1 1 300px;
    max-width: 360px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font: #6c7a91
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin: 0.25rem 0;
    color: #6c7a91;
    font-size: 0.95rem;
}

.contact-info a {
    color: #4b5563;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 0.5rem;
    display: flex;
    gap: 1rem;
    font-size: 1.25rem;
    color: #374151;
}

/* Right: Form */
.contact-form {
    flex: 1 1 400px;
    max-width: 370px;
    font-family: 'Segoe UI', sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    font-weight: 500;
    color: #2c303c;
    margin-bottom: 0.25rem;
    display: block;
    font-size:14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.8rem;
    color: #1f2937;
    background-color: #fff;
}

.form-group placeholder {
    color:#9ca3b3
}
.submit-btn {
    background-color: #0f172a;
    color: white;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    width:auto;
    font-size: 0.875rem;
}

    .submit-btn:disabled {
        background-color: #cccccc !important; /* Light gray */
        color: #666666 !important; /* Darker text */
        cursor: not-allowed;
        opacity: 0.8;
    }

    .submit-btn:hover {
        background-color: #1a1e34;
    }

.submit-btn:hover {
    background-color: #1e293b;
}

.small-icon svg {
    width: 16px;
    height: 16px;
}

#cu_submitMessage {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

    #cu_submitMessage.success {
        color: green;
    }

    #cu_submitMessage.error {
        color: red;
    }