/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body is at least the height of the viewport */
    margin: 0;
}

/* Header */
header {
    background: linear-gradient(135deg, #0078d4, #4da8da);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Main Section */
main {
    padding: 0;
    flex: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #0078d4;
}

/* Service Cards */
.service {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service h3 {
    font-size: 1.5rem;
    color: #0078d4;
    margin-bottom: 10px;
}

.service p {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Contact Form */
form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

button {
    background: #0078d4;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background: #005bb5;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #0078d4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    margin-top: 20px;
}

.button:hover {
    background: #005bb5;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1c1c1c, #333);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: auto;
}

footer a {
    color: #4da8da;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 5px 0;
}

section {
    padding: 50px 0;
}

#contact {
    padding: 70px 0;
    background: linear-gradient(135deg, #f7f9fc, #dfe9f3);
}

#contact h2 {
    color: #0078d4; 
}