@charset "utf-8";
/* CSS Document */



/* Call to Action Section */
.cta {
    text-align: center;
    background-color: #4a90e2;
    padding: 40px 20px;
    color: #fff;
}
.cta h2 {
    font-size: 36px;
    margin-bottom: 10px;
}
.cta p {
    font-size: 18px;
}
.cta .btn {
    padding: 10px 20px;
    background-color: #2d2d2d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 0px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
	color: #000000;

}
.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}
.contact-form input,
.contact-form textarea {
    width: 95%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.contact-form button {
    background-color: #4a90e2;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
	
}
.contact-form button:hover {
    background-color: #357ab8;
}

/* Call & WhatsApp Buttons */
.contact-buttons {
    display: flex;
    justify-content: space-around;
    max-width: 700px;
	margin: 10px auto;
	gap: 20px;
	padding: 12px;
}
.contact-buttons a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
	width: 100px;
}
.contact-buttons a i {
    margin-right: 10px;
}
.call-btn {
    background-color: #28a745;
}
.whatsapp-btn {
    background-color: #25d366;
}



/* Responsive Design */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 28px;
    }
    .cta p {
        font-size: 16px;
    }
    .contact-buttons {
        flex-direction: column;
    }
    .contact-buttons a {
        margin-bottom: 10px;
    }
}


/* Contact Header Section - Isolated Styling */
.contact-header {
    position: relative;
    background-image: url('../images/banner blank bg.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-header .overlay {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay to improve text readability */
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 1200px;
}

.contact-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-header p {
    font-size: 18px;
    margin: 0;
}

/* Fix Nav Bar Interaction */
header {
    position: relative;
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header {
        height: 250px;
    }

    .contact-header h1 {
        font-size: 26px;
    }

    .contact-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-header {
        height: 200px;
    }

    .contact-header h1 {
        font-size: 22px;
    }

    .contact-header p {
        font-size: 14px;
    }
}
