* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #222;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.topbar {
    background: #111;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    font-weight: 600;
    color: #222;
}

nav ul li a:hover {
    color: #0b63f6;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.hero {
    height: 85vh;
    background: url("img/hero.jpg") center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #f1f1f1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    backdrop-filter: blur(6px);
}

.btn {
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: bold;
    display: inline-block;
    transition: 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.primary {
    background: #0b63f6;
    color: #fff;
}

.secondary {
    background: #fff;
    color: #111;
}

.section {
    padding: 70px 0;
}

.section h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.section-sub {
    color: #555;
    margin-bottom: 35px;
}

.gray {
    background: #f5f7fa;
}

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

.card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: 0.25s;
}

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

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card h3 {
    padding: 15px 15px 5px;
}

.card p {
    padding: 0 15px 20px;
    color: #555;
}

.about {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.about ul {
    margin-top: 15px;
    list-style: none;
}

.about ul li {
    margin: 8px 0;
}

.about-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.footer {
    background: #111;
    color: #fff;
    padding: 25px 0;
    text-align: center;
}

.whatsapp {
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Navbar */
@media(max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        right: 5%;
        background: #fff;
        width: 200px;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    }

    nav ul.show {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

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

    .hero-content h1 {
        font-size: 36px;
    }
}