    body {
        margin: 0;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f4f4f4;
    }

    /* Header */
    header {
        position: relative;
        background: url("/img/header.jpg") center/cover no-repeat; */
        color: white;
        height: 75vh;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    header::before {
        content: "";
        position: absolute;
        inset: 0;
         
        background: rgba(0, 0, 0, 0.15); 
        /* dark overlay */
    }

    .header-content {
        position: relative;
        z-index: 1;
    }

    .logo {
        max-width: 320px;
        width: 85%;
        height: auto;
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
    }

    .tagline {
        font-size: 1.3rem;
        font-weight: 300;
        letter-spacing: 2px;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.55);
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }


    /* Navigation */
    nav {
        background: #222;
        padding: 12px 0;
        text-align: center;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    nav a {
        color: white;
        text-decoration: none;
        margin: 0 20px;
        font-weight: bold;
        letter-spacing: 1px;
    }

    nav a:hover {
        color: #f0c040;
    }

    /* Sections */
    section {
        padding: 50px 20px;
        max-width: 1100px;
        margin: auto;
        background: white;
        margin-bottom: 20px;
    }

    section h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    /* Services */
    .services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .card {
        background: #fafafa;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .card h3 {
        margin-top: 0;
    }

    /* Gallery */
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery img {
        width: 100%;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery img:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    /* Contact */
    .contact-intro {
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-form {
        max-width: 600px;
        margin: auto;
    }

    .contact-form label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 1px solid #ccc;
        font-size: 1rem;
    }

    .contact-form textarea {
        resize: vertical;
        min-height: 120px;
    }

    .contact-form button {
        background: #222;
        color: white;
        border: none;
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .contact-form button:hover {
        background: #f0c040;
        color: #000;
    }

    .contact-details {
        text-align: center;
        margin-top: 40px;
    }

    /* Lightbox */
    #lightbox {
        display: none;
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        justify-content: center;
        align-items: center;
    }

    #lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 8px;
    }

    #lightbox .close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
    }

    footer {
        background: #222;
        color: white;
        text-align: center;
        padding: 20px;
    }

    footer p {
        margin: 0;
    }