 body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            
            padding-bottom: 20px;
        }

        .product-hero-banner {
  width: 100%;
  height: 80vh; /* Full screen height */
  background-image: url('../../images/products-back.png');
  background-size:contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin: 0;
  padding: 5px;
}



       
       /* --- Stylish Highlight Section Styles (Enhanced with Background Image) --- */
.stylish-highlight-section {
    /* Original padding and margin */
    padding: 100px 0; /* Increased padding for more visual space */
    margin-top: 60px; /* Space from the section above it */

    /* Background Image Properties */
    background-image: url('../images/highlight_bg.jpg'); /* REPLACE WITH YOUR IMAGE PATH */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image tiling */
    background-attachment: fixed; /* Optional: Creates a parallax scroll effect */

    position: relative; /* Needed for the overlay */
    overflow: hidden; /* Ensures nothing spills out */
    color: #ffffff; /* Default text color for this section (will be overridden) */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* Subtle text shadow for readability */
}

/* Overlay for Readability */
.stylish-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    z-index: 0; /* Ensures it's behind the content */
}

.stylish-highlight-section .container {
    position: relative; /* Bring container content above the overlay */
    z-index: 1;
    /* text-align: center; already on HTML */
}

.stylish-highlight-title {
    font-size: 3.8em; /* Even larger, more impactful heading */
    color: #ffffff; /* White text for contrast on dark overlay */
    margin-bottom: 25px;
    font-weight: 800; /* Bolder font weight */
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); /* Stronger text shadow */
}

.stylish-highlight-text {
    font-size: 1.3em; /* Slightly larger readable text size */
    color: #f0f0f0; /* Off-white for body text */
    max-width: 850px; /* Wider text for readability */
    margin: 0 auto 45px auto; /* Center text and add more bottom margin */
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.stylish-highlight-btn {
    display: inline-block;
    background-color: #ED9455; /* Your brand orange */
    color: white;
    padding: 18px 45px; /* Larger button */
    border-radius: 50px; /* Pill-shaped button */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em; /* Larger font for button */
    letter-spacing: 0.5px; /* Slight letter spacing */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* More prominent shadow */
}

.stylish-highlight-btn:hover {
    background-color: #d6804a; /* Darker orange on hover */
    transform: translateY(-5px); /* More significant lift effect */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* Even more prominent shadow on hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stylish-highlight-section {
        padding: 80px 0;
    }
    .stylish-highlight-title {
        font-size: 3em;
    }
    .stylish-highlight-text {
        font-size: 1.1em;
        padding: 0 20px;
    }
    .stylish-highlight-btn {
        padding: 15px 35px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .stylish-highlight-section {
        padding: 60px 0;
        background-attachment: scroll; /* Disable parallax on mobile for performance */
    }
    .stylish-highlight-title {
        font-size: 2.5em;
    }
    .stylish-highlight-text {
        font-size: 1em;
        padding: 0 15px;
    }
    .stylish-highlight-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .stylish-highlight-title {
        font-size: 2em;
    }
    .stylish-highlight-text {
        font-size: 0.95em;
    }
    .stylish-highlight-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}
       
        /* Product Grid Layout */
        .product-grid {
            display: grid;
            flex-direction: column;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        /* Individual Product Card Styles */
        .product-card {
            background-color: #fff;
            border-radius: 12px; /* Slightly more rounded corners */
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* Softer shadow */
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            padding-bottom: 25px; /* More padding at bottom */
            display: flex;
            height: 480px;
            min-height: 400px;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

        }

        .product-card:hover .product-image {
    transform: scale(1.05); /* Scales the image to 105% of its original size */
}
        /* Product Image Styles */
        .product-image-container {
            width: 100%;
            height: 270px; /* Fixed height for image area */
            overflow: hidden;
            background-color: #f5f5f5; /* Lighter background for image area */
            border-bottom: 1px solid #eee;
            /* Remove flex properties here, as the image will be static inside */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image {
            max-width: 100%; /* Ensure image doesn't overflow container */
            max-height: 100%; /* Ensure image doesn't overflow container */
            display: block; /* Remove extra space below image */
            margin: auto; /* Center image horizontally and vertically within container */
            border-top-left-radius: 10px;
            object-fit: contain;
            display: block;
            border-top-right-radius: 10px;
            transition: transform 0.3s ease-in-out;
        }

        /* Product Information Styles */
        .product-info {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Distributes space: title/desc at top, button at bottom */
            flex-grow: 1; /* Allows this section to take available space */
            text-align: left;
        }

        .product-title {
            font-size: 1.4em;
            margin-top: 0;
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .product-description {
            font-size: 0.95em;
            line-height: 1.5;
            color: #666;
            /* Remove flex-grow from here. Let the description size naturally. */
            margin-bottom: 15px; /* Add margin below description for spacing before button */
            display: -webkit-box;
            /* If descriptions are long, consider truncating them: */
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3; /* Limits to 3 lines, adjust as needed */
            text-overflow: ellipsis;
            overflow: hidden;
        }

        /* Inquire Button Styles */
        .inquire-button {
            background-color: #FFA500;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%; /* Make button full width of its container */
    box-sizing: border-box;
    margin-top: auto;
        }

        .inquire-button:hover {
            background-color: #E69500;
            transform: translateY(-2px);
        }

        

        /* Section Titles */
        .section-title {
            text-align: center;
            font-size: 2.5em;
            color: #333;
            margin-top: 60px;
            margin-bottom: 30px;
            border-bottom: 2px solid #FFA500;
            padding-bottom: 10px;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
            width: fit-content;
            max-width: 90%;
        }

        /* Add padding to the main content area */
main {
    padding: 20px; /* Adjust as needed */
}

/* To address the orange bar, inspect its source. If it's your footer,
   ensure it's positioned correctly. A common issue is a fixed footer
   without sufficient padding on the main content or body. */
footer {
    width: 100%;
    /* Ensure it's not absolutely or fixed positioned unless necessary,
       and if it is, ensure `main` or `body` has sufficient `padding-bottom`. */
    position: relative; /* Default flow or static */
    clear: both; /* Clear any floats if used previously */
    background-color: #FFA500; /* Assuming this is your footer color */
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 50px; /* Add space above the footer if needed */
}

/* Header styles (ensure they don't cause overlap either) */



        /* --- NEW MODAL STYLES --- */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1000; /* Sit on top (should be higher than other content) */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
        }

        .modal-content {
            background-color: #fefefe;
            margin: auto; /* Fallback for older browsers */
            padding: 30px;
            border: 1px solid #888;
            border-radius: 10px;
            width: 90%; /* Responsive width */
            max-width: 600px; /* Max width for larger screens */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative; /* For absolute positioning of close button */
            animation-name: animatemodal;
            animation-duration: 0.4s;
        }

        @keyframes animatemodal {
            from {transform: scale(0.7); opacity: 0;}
            to {transform: scale(1); opacity: 1;}
        }

        .close-button {
            color: #aaa;
            font-size: 36px;
            font-weight: bold;
            position: absolute; /* Position relative to modal-content */
            top: 10px;
            right: 20px;
            cursor: pointer;
        }

        .close-button:hover,
        .close-button:focus {
            color: #333;
            text-decoration: none;
        }

        .modal-content h2 {
            text-align: center;
            color: #333;
            margin-top: 0;
            margin-bottom: 25px;
            font-size: 2em;
        }

        .modal-content label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: bold;
        }

        .modal-content input[type="text"],
        .modal-content input[type="email"],
        .modal-content input[type="tel"],
        .modal-content textarea {
            width: calc(100% - 20px); /* Adjust for padding */
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1em;
            box-sizing: border-box; /* Include padding in width */
        }

        .modal-content textarea {
            resize: vertical; /* Allow vertical resizing */
            min-height: 80px;
        }

        .modal-content button[type="submit"] {
            background-color: #28a745; /* Green for submit */
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: bold;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        .modal-content button[type="submit"]:hover {
            background-color: #218838; /* Darker green on hover */
        }

        /* Responsive adjustments for modal */
        @media (max-width: 600px) {
            .modal-content {
                width: 95%;
                padding: 20px;
            }
            .close-button {
                font-size: 30px;
                top: 5px;
                right: 10px;
            }
            .modal-content h2 {
                font-size: 1.8em;
            }
        }