body {
    padding-top: 76px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    /* Remove background-image properties from here */
    background-color: #f8f9fa; /* A subtle light background color for underlying content */
    position: relative; /* Needed for the ::before pseudo-element positioning */
    min-height: 100vh; /* Ensures the body covers the full viewport height */
}

body::before {
    content: "";
    position: fixed; /* Fixes the background to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://trendingzone.site/ap/assets/images/logo11.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* Scales the image to cover the entire container */
    /* background-size: 100% 100%; /* Alternative: Stretches image to cover exactly 100% width and height */
    
    opacity: 0.35; /* This sets the visibility to 35% (65% transparent) */
    z-index: -1; /* Ensures the background stays behind all content */
}


/* Rest of your existing CSS remains the same */
.hero-section {
    /* To make the background image more visible behind this section,
       you might want to make its background more transparent or use rgba colors. */
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.navbar-brand img {
    height: 30px; /* Adjust as needed */
    margin-right: 10px;
    vertical-align: middle;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Add a subtle background to cards to make text more readable over a background image */
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.service-card {
    /* Also consider rgba for backgrounds here */
    background: linear-gradient(45deg, rgba(248, 249, 250, 0.95), rgba(233, 236, 239, 0.95));
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

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

.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #007bff;
}

.contact-info {
    /* Also consider rgba for backgrounds here */
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    color: white;
    border-radius: 10px;
    padding: 30px;
}