:root {
    --primary-orange: #e20604;
    --dark-bg: #1f2329;
    --light-text: #ffffff;
    --dark-text: #333333;
    --navbar-height: 100px !important;
    --topbar-height: 40px;
    --brown: #7a1823;
}


/* --- Overall Background for the Contact Section --- */
.overall-contact-bg {
    background-color: var(--dark-text);
    /* Big background color here */
    /* padding: 60px 0; */
    /* Add some padding around the content inside */
    font-family: "Lexend Deca", sans-serif !important;
}

.contact-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    /* Center the entire section */
}

.section-heading {
    color: var(--light-text);
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: bold;
}

/* Contact Cards Styling */
.contact-card {
    background-color: var(--light-text);
    border: 5px solid var(--brown);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    /* Super Box Shadow for cards! */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 5px rgba(0, 0, 0, 0.05);
    /* Two layers of shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-8px);
    /* Lift effect on hover, slightly more pronounced */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 5px rgba(0, 0, 0, 0.07);
    /* Enhanced shadow on hover */
}

.contact-card .icon {
    font-size: 30px;
    color: var(--light-text);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    background-color: var(--brown);
    height: 50px;
    width: 50px;
    border-radius: 50px;
}

.contact-card:hover .icon {
    color: var(--light-text);
    background-color: var(--primary-orange);
}

.contact-card h3 {
    color: var(--brown);
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: "Lexend Deca", sans-serif !important;
}

.contact-card p,
.contact-card a {
    color: var(--text-color);
    font-size: 1.1em;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Lexend Deca", sans-serif !important;
}

.contact-card a:hover {
    color: var(--hover-color);
}

/* Contact Form Styling */
.contact-form-section {
    background-color: var(--card-bg-color);
    border: 1px solid var(--card-border-color);
    border-radius: 10px;
    padding: 30px;
    /* Box shadow for the form as well */
    box-shadow: 0 8px 30px rgba(233, 231, 231, 0.63), 0 0 0 5px rgba(241, 240, 240, 0.514);
    /* Similar shadow for consistency */
    margin-top: 40px;
}

.contact-form-section h3 {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 2em;
    text-align: center;
}

.form-label {
    font-weight: bold;
    color: var(--light-text);
    font-family: "Lexend Deca", sans-serif !important;
}

.form-control {
    border-color: var(--input-border-color);
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--focus-border-color);
}

.btn-submit {
    background-color: var(--primary-orange);
    color: var(--light-text);
    border: none;
    padding: 12px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--brown);
    transform: translateY(-2px);
    color: var(--light-text);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .overall-contact-bg {
        padding: 40px 0;
        /* Adjust padding for smaller screens */
    }

    .contact-section {
        padding: 20px 15px;
    }

    .section-heading {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .contact-card {
        margin-bottom: 20px;
        padding: 20px;
    }

    .contact-card .icon {
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .contact-card h3 {
        font-size: 1.3em;
    }

    .contact-card p,
    .contact-card a {
        font-size: 1em;
    }

    .contact-form-section {
        padding: 20px;
    }

    .contact-form-section h3 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .btn-submit {
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .col-md-4 {
        width: 100%;
    }

    .contact-card {
        margin-bottom: 15px;
    }
}