/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* Header */
header {
    background-color: rgba(51, 51, 51, 0.9);
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

.logo {
    width: 120px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #facd00;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
}

.slideshow-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

/* Parallax Section */
.parallax {
    background: url('images/background.png') fixed center/cover;
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: center;
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.service-item img {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #3c7ba6;
    color: white;
    text-align: center;
    padding: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #facd00;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
}