body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.nav-item {
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Hero Section with Background Image */
.hero-section {
    background-image: url('home_bk_img.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/* Black and White Theme */
.text-gray-600 {
    color: #4B5563;
}

.btn-black {
    background-color: #000;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background-color: #333;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: #000;
}

.btn-outline-black {
    border: 2px solid #000;
    color: #000;
    transition: all 0.3s ease;
}

.btn-outline-black:hover {
    background-color: #000;
    color: #fff;
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gallery-img {
    transition: all 0.3s ease;
}

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

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Style for active navigation item */
.nav-item.active {
    font-weight: 600;
    color: #000;
    border-bottom: 2px solid #000;
    /* Or any color that matches your design */
    padding-bottom: 4px;
}




