body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
}

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

header {
    background: #fe0a6a;
    padding: 20px 0;
}

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-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.parallax {
    background: url('images/slide1.png') fixed no-repeat center;
    background-size: cover;
    padding: 100px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

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

footer {
    background: #333;
    padding: 20px;
}

/* Gallery Images Style */
.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

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

/* Header Logo */
header .logo {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* Services Section Layout */
#services {
    background-color: #1a1a1a;
    padding: 50px 0;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
    padding: 0 20px;
}

.service-item {
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
    max-width: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fe0a6a;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 15px;
}