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

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.6;
    background: #fafafa;
}

section {
    padding: 100px 10%;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
}

p {
    margin-bottom: 15px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 18px;
}

.cta {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: #fff;
    color: #2575fc;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
}

/* Services */
.services {
    background: #fff;
    text-align: center;
}

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

.service-card {
    background: #f5f7ff;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
    }

    .service-card h3 {
        margin-bottom: 10px;
    }

/* Gallery */

.gallery {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    justify-items: center;
}

.gallery-item {
    width: 220px;
    text-decoration: none;
}

    .gallery-item img {
        width: 220px;
        height: 130px;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

    .gallery-item span {
        display: block;
        margin-top: 8px;
        font-weight: 500;
        color: #333;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }
/* Contact */
.contact {
    background: #111;
    color: #fff;
    text-align: center;
}

    .contact a {
        color: #6aa9ff;
        text-decoration: none;
        font-weight: 500;
    }

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    background: #000;
    color: #aaa;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.nav-logo {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-cta {
    padding: 8px 18px;
    background: #6aa9ff;
    color: #000 !important;
    border-radius: 20px;
    font-weight: 600;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-links a:hover {
        color: #6aa9ff;
    }

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-toggle {
        display: block;
        color: #fff;
        font-size: 26px;
        cursor: pointer;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #000;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px 0;
    }

        .nav-links.active {
            display: flex;
        }
}

}

@media (max-width: 480px) {
    section {
        padding: 60px 6%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

    .whatsapp-float.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    }

.gallery-grid {
    grid-template-columns: 1fr;
}
}
