/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

h1,
h2,
h3 {
    color: #349a67;
}

/* Header */
header {
    background-color: #123222;
    padding: 20px;
}

header .logo {
    width: 150px;
    height: auto;
}

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

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

/* Hero Section */
.hero-section {
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero-section .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section .hero-content p {
    font-size: 1.5rem;
}

/* About Section */
#about {
    padding: 50px 0;
    background-color: #93aedf;
}

#about p {
    font-size: 1.2rem;
}

/* Vision & Mission Section */
#vision-mission {
    padding: 50px 0;
    background: #041f35;
    color: white;
}

#vision-mission .values {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.value {
    padding: 20px;
    background: #349a67;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
#services {
    background: #fff;
    padding: 50px 0;
    background-size: cover;
}

#services h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    background: #93aedf;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
}

#services {
    padding: 80px 0;
    color: white;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.service-item h3 {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.2em;
    color: #fff;
}

.service-item:hover {
    transform: scale(1.05);
}


/* Projects Section */
#projects {
    background-color: #349a67;
    padding: 50px 0;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Contact Section */
#contact {
    background-color: #93aedf;
    padding: 50px 0;
}

/* Footer */
footer {
    background-color: #041f35;
    padding: 20px;
    color: white;
}

footer p {
    font-size: 1rem;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}