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

    body {
        font-family: Poppins;
        background: #f4f1ea;
        color: #333;
        padding-top: 100px;
    }

    /* NAVBAR */

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 8%;
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .logo {
        height: 60px;
    }

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

    .nav-links a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .btn {
        background: #c9a46c;
        color: white;
        padding: 12px 22px;
        border-radius: 25px;
        text-decoration: none;
        transition: 0.3s;
        display: flex;
        align-items: center;
    }

    .btn:hover {
        background: #a88552;
    }

    /* HERO */

    .hero {
        position: relative;
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6);
        transition: 1s ease;
    }

    .hero-content {
        position: relative;
        color: white;
        text-align: center;
    }

    .hero h1 {
        font-size: 52px;
        font-family: 'Playfair Display';
        margin-bottom: 20px;
    }

    /* SERVICES */

    .services {
        padding: 80px 20px;
        text-align: center;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: auto;
    }

    .card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: 0.4s;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

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

    /* GALLERY */

    .gallery {
        padding: 80px 20px;
        text-align: center;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: auto;
    }

    .gallery img {
        width: 100%;
        border-radius: 12px;
        transition: 0.4s;
    }

    .gallery img:hover {
        transform: scale(1.05);
    }

    /* CONTACT */

    .contact {
        padding: 80px 20px;
        text-align: center;
    }

    .contact form {
        max-width: 500px;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact input,
    .contact textarea {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

    .contact button {
        background: #c9a46c;
        color: white;
        border: none;
        padding: 12px;
        border-radius: 6px;
        cursor: pointer;
    }

    /* FOOTER */

    .footer {
        background: #111;
        color: white;
        text-align: center;
        padding: 30px;
        margin-top: 50px;
    }

    /* CATEGORY SYSTEM */

    .portfolio {
        padding: 80px 20px;
        text-align: center;
    }

    #categoryFilter {
        padding: 10px;
        margin: 20px 0;
        font-size: 16px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: auto;
    }

    .project {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
    }

    .project img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .project:hover {
        transform: translateY(-10px);
    }

    .project h3 {
        padding: 10px;
    }


    .view-more-container {
        text-align: center;
        margin-top: 40px;
    }

    /* BUTTON STYLE */

    .view-more-btn {
        display: inline-block;
        background: #c9a46c;
        color: white;
        padding: 12px 28px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        animation: bounce 2s infinite;
        transition: 0.3s;
    }

    /* HOVER EFFECT */

    .view-more-btn:hover {
        background: #a88552;
        animation: none;
        transform: scale(1.05);
    }

    /* BOUNCE ANIMATION */

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }

        60% {
            transform: translateY(-5px);
        }

    }


    /* WHATSAPP */

    /* .whatsapp {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #25D366;
        color: white;
        padding: 14px 18px;
        border-radius: 30px;
        text-decoration: none;
        animation: bounce 2s infinite;
        transition: 0.3s;
    }

    .whatsapp:hover {
        animation: none;
        transform: scale(1.1);
    } */

    /* WHATSAPP PREMIUM BUTTON */

    .whatsapp {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 60px;
        height: 60px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        z-index: 999;
        animation: bounce 2s infinite;
    }

    .whatsapp img {
        width: 32px;
        height: 32px;
    }

    /* PULSE EFFECT */

    .whatsapp::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #25D366;
        opacity: 0.5;
        z-index: -1;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }

        70% {
            transform: scale(1.6);
            opacity: 0;
        }

        100% {
            transform: scale(1.6);
            opacity: 0;
        }
    }

    /* TOOLTIP */

    .tooltip {
        position: absolute;
        right: 75px;
        background: #111;
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 13px;
        opacity: 0;
        white-space: nowrap;
        transition: 0.3s;
    }

    .whatsapp:hover .tooltip {
        opacity: 1;
    }

    /* MOBILE */

    @media(max-width:768px) {


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

    }


    /* HAMBURGER */

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        transition: 0.4s;
    }

    /* MOBILE NAV */

    @media(max-width:768px) {

        .hamburger {
            display: flex;
        }

        /* .nav {
            position: relative;
        } */

        /* dropdown menu */

        .nav-links {
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .nav-links.active {
            max-height: 400px;
            padding: 20px 0;
        }



    }

    /* hamburger animation */

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-btn {
        list-style: none;
        margin-top: 10px;
    }

    .mobile-btn .btn {
        display: inline-block;
    }


    /* FOOTER PREMIUM */

    .footer {
        background: #0f0f0f;
        color: #ddd;
        padding: 60px 20px 20px;
    }

    .footer-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
    }

    .footer-logo {
        height: 60px;
        margin-bottom: 15px;
    }

    .footer-col h3 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 18px;
    }

    .footer-col p {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-col ul li a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s;
    }

    .footer-col ul li a:hover {
        color: #c9a46c;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #222;
        font-size: 14px;
        color: #aaa;
    }


    /* REVIEW SECTION */

    /* .reviews{
padding:80px 20px;
background:#f9f9f9;
text-align:center;
}

#reviewForm{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

#reviewForm input,
#reviewForm select,
#reviewForm textarea{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
}

#reviewForm button{
background:#c9a46c;
color:white;
border:none;
padding:12px;
border-radius:6px;
cursor:pointer;
}

#reviewsContainer{
margin-top:40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:1000px;
margin-left:auto;
margin-right:auto;
}

.review-card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
text-align:left;
}

.review-card h4{
margin:0;
}

.review-stars{
color:#f5b301;
margin:5px 0;
} */

    /* REVIEW SECTION */

    .reviews {
        padding: 100px 20px;
        background: #f9f9f9;
        text-align: center;
    }

    .review-title {
        font-size: 40px;
        margin-bottom: 40px;
        font-family: 'Playfair Display';
    }

    .review-form {
        max-width: 500px;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 60px;
    }

    .review-form input,
    .review-form textarea {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

    .review-form button {
        background: #c9a46c;
        color: white;
        border: none;
        padding: 12px;
        border-radius: 6px;
        cursor: pointer;
    }

    /* STAR RATING */

    .star-rating {
        font-size: 28px;
        color: #ddd;
        cursor: pointer;
    }

    .star-rating span {
        transition: 0.3s;
    }

    .star-rating span.active {
        color: #f5b301;
    }

    /* REVIEW CARDS */

    .review-wrapper {
        position: relative;
        overflow: hidden;
    }

    .review-cards {
        display: flex;
        gap: 20px;
        /* overflow-x: auto; */
        overflow-y: hidden;
        scroll-behavior: smooth;
        padding: 20px;
    }

    /* Hide scrollbar */

    .review-cards::-webkit-scrollbar {
        display: none;
    }

    .review-cards {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .review-card {
        min-width: 260px;
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        /* text-align: left; */
    }

    .review-card h4 {
        margin: 0;
    }

    .review-stars {
        color: #f5b301;
        margin: 5px 0;
    }



    /* arrow buttons */

    .review-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #c9a46c;
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
    }

    .review-arrow.left {
        left: 10px;
    }

    .review-arrow.right {
        right: 10px;
    }

    /* FOOTER BASE */
.footer {
    background: #111;
    color: #ddd;
    padding: 60px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

/* HEADINGS */
.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c19a6b; /* wood gold */
}

/* SOCIAL ICONS */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #222;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icons a:hover {
    background: #c19a6b; /* luxury wood tone */
    color: #111;
    transform: translateY(-5px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}