/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

/* Header Section */
header {
    background-color: #007bff;
    color: white;
    padding: 20px;
}

/* Sections */
section {
    background: white;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    position: relative;
}
/* Contact Form */
form {
    max-width: 400px;
    margin: auto;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
/* Style the Welcome Section */
.welcome-section {
    background: url('welcome-bg.jpg') no-repeat center center/cover; /* Background image */
    height: 100vh; /* Full-screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Dark overlay for readability */
.overlay {
    background: rgba(0, 0, 0, 0.5); /* Dark transparent layer */
    padding: 50px;
    border-radius: 10px;
}

/* Heading Styles */
.welcome-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Subtitle */
.welcome-section p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.btn {
    background-color: #ff5722;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background-color: #e64a19;
}


