* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Modern Header */
.modern-header {
    background: #fcfcfb;
    border-bottom: 2px solid #6a11cb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.modern-header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    padding: 10px 0;
}

.modern-header nav ul li a {
    color: #637bb3ec;
    text-decoration: none;
    font-weight: 1000;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.modern-header nav ul li a:hover {
    background: #aa9bba;
    color: #f8f7f7;
}

/* Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.hero-slider .slider {
    display: flex;
    animation: slide 12s infinite;
}

.hero-slider .slide {
    flex: 1;
    min-width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-slider .slide-content {
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero-slider .slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-slider .slide-content p {
    font-size: 1.2rem;
}

@keyframes slide {
    0%, 25% { transform: translateX(0); }
    33%, 58% { transform: translateX(-100%); }
    66%, 91% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}


.about, .contact, .services {
    padding: 50px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.about-content img {
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services .cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #f1f1f1;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.whatsapp-button, .instagram-button {
    display: inline-block;
    color: white;
    padding: 12px 20px;
    margin-top: 20px;
    margin-right: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #1ebc5a;
}

.instagram-button {
    background-color: #E4405F;
}

.instagram-button:hover {
    background-color: #c72c48;
}

.whatsapp-button i, .instagram-button i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .services .cards {
        flex-direction: column;
        align-items: center;
    }

    .modern-header nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
