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

/* Header */
header {
    background-color: rgba(0, 176, 240, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 120px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

/* Hero Section */
#home {
    position: relative;
    height: 100vh;
}

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

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

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

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

.hero-text h1 {
    font-size: 3em;
    color: #00b0f0;
}

.hero-text p {
    font-size: 1.2em;
}

/* About Section */
#about {
    background: url('images/about-bg.png') fixed center/cover;
    padding: 80px 0;
    text-align: center;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.value {
    background: #404040;
    padding: 15px;
    border-radius: 5px;
    width: 150px;
    text-align: center;
}

/* Services Section */
#services {
    background-color: #404040;
    padding: 80px 0;
    text-align: center;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background: #333;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    width: 45%;
}

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

.service-item h3 {
    color: #00b0f0;
}

/* Projects Section */
#projects {
    background: url('images/projects-bg.png') fixed center/cover;
    padding: 80px 0;
    text-align: center;
}

.projects-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.project-item {
    background: #404040;
    padding: 10px;
    border-radius: 5px;
    width: 30%;
    text-align: center;
}

.project-item img {
    width: 100%;
    border-radius: 5px;
}

.project-item h3 {
    color: #00b0f0;
}

/* Contact Section */
#contact {
    background: #00b0f0;
    padding: 80px 0;
    text-align: center;
}

footer {
    background: #333;
    text-align: center;
    padding: 20px;
}