/* Global Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Contact Section Title */
.contact-us {
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    color: #f7c62b;
}

/* Header Section */
.header-bg {
    background: black;
    padding: 40px 20px;
    color: white;
    margin-top: 100px;
}

.header-text-card {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgb(15, 23, 42), rgb(17, 24, 39)) !important;
    flex-wrap: wrap;
}

.header-card {
    background-color: #111;
    color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 80%;
    margin: 2rem auto;
    text-align: center;
}

.header-card-second {
    background-color: white;
    color: black;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-card-second:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.header-all-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.header-p-text {
    font-size: 1rem;
    margin-top: 1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ccc;
    margin-bottom: 20px;

}

.header-location {
    font-size: 1rem;
    text-align: center;
    color: #444;
    margin-top: 0.5rem;
}

/* Map Container */
.map-container {
    position: relative;
    width: 90%;
    height: 400px;
    margin: 3rem auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form Section */
.contact-us-form {
    text-align: center;
    margin-top: 4rem;
    padding: 0 2rem 4rem;
    color: #f7c62b;

}

.form-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.form-img-flex {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.form-img-flex img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 15px;
}

form {
    width: 45%;
    min-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.cont {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
}

.form-group {
    margin-bottom: 1.2rem;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.form-group button {
    padding: 0.75rem 2rem;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group button:hover {
    background-color: #0056b3;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .form-flex {
        flex-direction: column;
        align-items: center;
    }

    .form-img-flex,
    form {
        width: 100%;
    }

    .contact-us {
        font-size: 2.5rem;
        padding: 1rem;
    }

    .header-all-text {
        font-size: 2rem;
        padding: 0 1rem;

        
    }

    .header-p-text {
        padding: 0 1.2rem;
    }
}
