
.contact-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-card h5 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.1rem;
    margin: 0;
}

.container2 {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.contact-hero {
    background-image: url('./imge/contact-banner.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.contact-hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text contrast */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-hero-content {
    z-index: 1;
    padding: 20px;
}

.contact-hero h1 {
    font-size: 48px;
    margin: 0;
    text-transform: uppercase;
}

.contact-hero p {
    font-size: 18px;
    margin: 10px 0;
}

.cta-btn {
    background-color:#ab934f;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: black;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }
.contact-hero{
    height: 500px;
    width: 100%;
}
    .contact-hero p {
        font-size: 16px;
    }
}

.card1 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Card Icon Animation */
.card-icon {
    font-size: 2rem;
    transition: color 0.3s ease;
    margin-bottom: 15px;
    color: goldenrod;
}

.card1:hover .card-icon {
    color: #007bff;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-group label {
    font-weight: bold;
}

.submit-btn {
    background-color:#ab934f;
    color: white;
    border: none;
    width: 100%;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Responsive Map */
.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}