/* Explore Our Products Section */
#products {
    background-color: #f8f9fa;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image maintains aspect ratio and fills space */
    border-radius: 8px;
}

/* Set fixed size for product images */
.product-img {
    width: 100%;  /* Make sure the width is 100% of the column */
    height: 300px; /* Set a fixed height (adjust this based on your design needs) */
    object-fit: cover; /* Ensures the image is properly cropped */
}

.product-card img:hover {
    transform: scale(1.05);
}

/* Product Description */
.product-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-top: 10px;
    text-align: center;
}

/* Modal Body Image Styling */
.modal-body img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Add padding to the body to avoid content being hidden behind the fixed navbar */
body {
    /* padding-top: 80px; Adjust this value based on the height of your navbar */
}

/* Navbar fixed to the top */
/* .navbar.fixed-top {
    z-index: 9999; /* Ensure the navbar stays above other content */
} */

/* Other styles for the rest of your page */
#home {
    padding-top: 100px; /* For example, add extra space on top of sections */
}

#contact {
    background-color: #f3a75f; /* กำหนดพื้นหลังเป็นสีเทา */
}

/* Custom styles for logo and text */
.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Arial', sans-serif; /* You can set a custom font */
}

.logo-img {
    width: 40px;  /* Size of the logo image */
    height: 40px; /* Size of the logo image */
    margin-right: 10px; /* Space between logo and text */
}

.logo-text {
    font-size: 1.5rem; /* Font size of the logo text */
    font-weight: bold; /* Make the text bold */
    color: #fff; /* Text color */
}

.logo-text small {
    font-size: 0.6rem; /* Smaller size for the word "Brand" */
    color: #f1a23a; /* Change the color of the word "Brand" */
}

/* Additional responsive styles if needed */
@media (max-width: 768px) {
    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}