body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 80px;
    background: #000;
}

.logo img {
    height: 50px;
}

/* NAV */
.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav a:hover {
    color: #c59d5f;
}

/* HERO */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
}

.slide.active {
    opacity: 1;
}

/* OVERLAY */
.overlay {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.6);
    height: 100%;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.overlay p {
    margin-bottom: 10px;
}

.hero-sub {
    font-size: 14px;
    color: #ccc;
}

/* BUTTON */
.btn {
    margin-top: 15px;
    padding: 12px 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #1ebe5d;
    box-shadow: 0 0 15px #25D366;
}

/* SECTIONS */
.services,
.pricing,
.why {
    text-align: center;
    padding: 50px 20px;
}

/* 🔥 CONTAINERS (THIS FIXES YOUR PROBLEM) */
.services-container,
.pricing-container,
.why-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
/* CARDS */
.card {
    width: 250px;
    padding: 22px;
    border-radius: 12px;
    background: #fff;
    color: #111;
    text-align: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    color: #555;
}

.price {
    color: #c59d5f;
    font-weight: bold;
}

/* CTA */
.cta {
    text-align: center;
    padding: 50px;
    background: #111;
    color: white;
}

.cta p {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #000;
    color: white;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero {
        height: 60vh;
    }

    .overlay h2 {
        font-size: 22px;
        text-align: center;
    }

    .overlay p {
        font-size: 14px;
        text-align: center;
    }

    .card {
        width: 90%;
    }

    .cta {
        padding: 30px 15px;
    }
}