/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth; /* Enables smooth scrolling */
}

/* Header and Navigation */
header {
    background-color: #2c3e50; /* Dark blue */
    color: #fff;
    padding: 1rem 0;
    position: fixed; /* Makes the navbar stick to the top */
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Updated Logo Styling */
nav .logo img { /* Target the image inside the logo link */
    height: 40px; /* Adjust height as needed */
    vertical-align: middle; /* Aligns the image nicely with other nav items */
    border-radius: 5px; /* Optional: if you want rounded corners for the logo */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #1abc9c; /* Teal color on hover */
}

/* General Section Styling */
section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Hero Section with Background Image */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
     url('https://images.pexels.com/photos/2199293/pexels-photo-2199293.jpeg'); /* Your image here */
    background-color: #34495e; /* Fallback color */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Parallax effect */
    background-repeat: no-repeat;
    color: #fff;
    min-height: 100vh; /* Full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px; /* Offset for fixed header */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #1abc9c;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #16a085;
}

/* Services Section */
.services-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.service-card {
    background-color: #f4f4f4;
    padding: 2rem;
    border-radius: 8px;
    flex-basis: 45%; /* Each card takes up 45% of the container width */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #1abc9c;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #34495e;
}

/* Footer */
/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-info a {
    color: #ffffff; /* This is now white */
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.contact-info a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 1rem;
}