/* Reset default margin and padding */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth; /* Smooth scrolling */
    background: url('assets/images/container-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white; /* Default text color for better contrast */
}

/* Navigation Bar */
header {
    background: rgba(51, 51, 51, 0.8); /* Semi-transparent background */
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff9900; /* Orange color on hover */
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Home Section */
.home {
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.home p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* About Us Section */
.about {
    background: rgba(0, 0, 0, 0.7); /* Darker background for contrast */
}

/* Services Section */
.services ul {
    list-style: none;
    padding: 0;
}

.services ul li {
    background: rgba(51, 51, 51, 0.8); /* Semi-transparent background */
    color: white;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Gallery Section */
.gallery {
    background: rgba(0, 0, 0, 0.7); /* Darker background for contrast */
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-grid img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: rgba(0, 0, 0, 0.7); /* Darker background for contrast */
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.quotation-form {
    flex: 1;
    background: rgba(51, 51, 51, 0.8); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.quotation-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.quotation-form input,
.quotation-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
}

.quotation-form button {
    background: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quotation-form button:hover {
    background: #ff9900; /* Orange color on hover */
}

.map {
    flex: 1;
    background: rgba(51, 51, 51, 0.8); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
}

/* Footer */
footer {
    background: rgba(51, 51, 51, 0.8); /* Semi-transparent background */
    color: white;
    text-align: center;
    padding: 10px 0;
}