* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
    scroll-behavior: smooth;
}

/* HEADER */
header {
    background: #111;
    color: white;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header ul {
    list-style: none;
    display: flex;
}

header ul li {
    margin-left: 25px;
}

header ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

header ul li a:hover {
    color: orange;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e") no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0,0,0,0.65);
    padding: 50px;
    border-radius: 10px;
    animation: fadeIn 2s ease;
}

.hero h2 {
    font-size: 45px;
}

.hero p {
    margin: 20px 0;
}

.hero button {
    padding: 12px 25px;
    border: none;
    background: orange;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.hero button:hover {
    background: darkorange;
}

/* SECTIONS */
section {
    padding: 100px 60px;
    text-align: center;
}

/* SERVICES */
.services-container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-box {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-box h3 {
    margin: 15px 0 10px;
}

.service-box p {
    padding: 0 20px 20px;
}

.service-box:hover {
    transform: translateY(-10px);
}

/* DARK SECTION */
.dark {
    background: #111;
    color: white;
}

/* CONTACT FORM */
form {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 12px;
    border: none;
    background: orange;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

form button:hover {
    background: darkorange;
}

.contact-info {
    margin-top: 30px;
}

/* FOOTER */
footer {
    background: black;
    color: white;
    padding: 20px;
}

/* ANIMATIONS */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease;
}

.fade-section.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}
/* GALLERY */
.gallery-container {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}
/* WHATSAPP BUTTON */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}
.section-image {
    width: 100%;
    max-width: 700px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
