/* Product Container Styling */
.kgep-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.kgep-product {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    max-width: 350px;
    width: 100%;
    box-sizing: border-box;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.kgep-product:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.kgep-product img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Heading and Paragraph Styling */
.kgep-product h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.kgep-product p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
}

.kgep-product strong {
    color: #000;
    font-weight: 600;
}

/* Button Styling */
.kgep-enquiry-btn {
    background-color: #0056b3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.kgep-enquiry-btn:hover {
    background-color: #004494;
}

/* Enquiry Form Modal Styling */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    max-width: 95%;
    margin: 100px auto;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}

/* Form Labels */
.kgep-label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

/* Form Inputs and Select Styling */
#kgep-form input, #kgep-form textarea, #kgep-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#kgep-form select {
    appearance: none;
    background-color: #fff;
	width: 100%;
}

/* Submit Button */
#kgep-form button {
    background-color: #0056b3;
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#kgep-form button:hover {
    background-color: #004494;
}

/* Thank You Message */
.thank-you-message {
    color: green;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kgep-product {
        max-width: 100%;
    }

    .modal-content {
        width: 90%;
        padding: 15px;
    }

    #kgep-form button {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .kgep-product {
        padding: 15px;
    }

    .modal-content {
        padding: 15px;
    }

    #kgep-form input, #kgep-form textarea {
        padding: 10px;
    }

    #kgep-form button {
        padding: 10px;
        font-size: 15px;
    }
}
