﻿body {
    #sendButton

{
    font-family: Cambria;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    border: 1.5px solid black;
    background-color: #a60101;
    color: white; /* Text color */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
    cursor: pointer; /* Change cursor to pointer */
}
.hrLine {
    position: relative;
    width: 100%;
    border: none;
    height: 2px;
    background: #a60101;
  }
#sendButton:hover {
    background-color: black; /* Change background color on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
}

#sendButton:active {
    transform: scale(0.95); /* Slightly shrink the button when clicked */
}
.placeOrder li span {
    color: black !important;
}
.coal-description {
    font-family: Cambria, serif; /* Use Cambria font, fallback to serif */
    font-size: 17px; /* Set font size */
    font-weight: 400; /* Set font weight */
    line-height: 1.5; /* Improve readability with line height */
    text-align: justify; /* Justify text for better alignment */
    /* Add margin for spacing */
    padding: 10px; /* Add padding for inner spacing */
    padding-left: 10px;
}

.category-image {
    width: 50px; /* Set the width of the image */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between image and text */
    vertical-align: middle; /* Align image with text */
    border-radius: 5px; /* Optional: rounded corners */
}


/* Modal background */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100vh; /* Full height */
    /*overflow: auto; /* Enable scroll if needed */ /* background-color: rgb(0,0,0); Fallback color /*  /* Black w/ opacity */
    background-color: rgba(0,0,0,0.7);
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: 8% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.placeOrder button {
    background-color: white;
    color: black;
    border-radius: 1px;
}

input[type="text"], textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    transition: border-color 0.3s;
}

.wrapper {
    margin: 3% auto;
    width: 470px;
    max-width: 92%;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

    .wrapper h2 {
        position: relative;
        font-size: 22px;
        font-weight: 600;
        color: #333;
        padding-bottom: 20px;
    }

    .wrapper form {
        margin-top: 30px;
    }

        .wrapper form .input-box {
            height: 52px;
            margin: 18px 0;
        }

form .input-box input {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    border: 1.5px solid #C7BEBE;
    border-bottom-width: 2.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.input-box input:focus,
.input-box input:valid {
    border-color: #4070f4;
}

form .policy {
    display: flex;
    align-items: center;
}

form h3 {
    color: #707070;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

.input-box.button input {
    color: #fff;
    letter-spacing: 1px;
    border: none;
    background: #4070f4;
    cursor: pointer;
}

    .input-box.button input:hover {
        background: #0e4bf1;
    }

form .text h3 {
    color: #333;
    width: 100%;
    text-align: center;
}

    form .text h3 a {
        color: #4070f4;
        text-decoration: none;
    }

        form .text h3 a:hover {
            text-decoration: underline;
        }

.container1 {
    margin-top: -87px; /* Add some space at the top */
    padding: 107px;
    padding-bottom: 25px;
}

.placeOrder {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
}

    .placeOrder li {
        display: flex; /* Use flexbox for layout */
        align-items: center; /* Center items vertically */
        margin-bottom: 20px; /* Space between items */
        border: 1px solid #ccc; /* Add a border */
        border-radius: 5px; /* Rounded corners */
        padding: 10px; /* Padding inside the list item */
        transition: box-shadow 0.3s; /* Smooth transition for hover effect */
        font-size: 21px;
        font-family: Titillium Web, sans-serif;
    }

        .placeOrder li:hover {
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow on hover */
        }

.category-image {
    width: 80px; /* Set a fixed width for images */
    height: auto; /* Maintain aspect ratio */
    margin-right: 15px; /* Space between image and text */
    border-radius: 5px; /* Rounded corners for images */
}

button1 {
    margin-left: auto; /* Push the button to the right */
    padding: 8px 15px; /* Padding for the button */
    background-color: white; /* Button background color */
    color: #a60101; /* Button text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

    button1:hover {
        background-color: black; /* Darker shade on hover */
        color: white;
    }

@media (max-width: 768px) {
    .container1 {
        padding: 10px; /* Reduce padding on smaller screens */
        margin-top:0px;
    }

    .placeOrder li {
         /* Stack items vertically */
        align-items: flex-start; /* Align items to the start */
        font-size: 13px;
        font-family: Titillium Web, sans-serif;
    }
    .prapadcls{
        margin-bottom: 0.5rem;
    }
    .placeOrder li span{
        flex-direction: column;
        align-self: center;
        color: black !important;
    }

    .category-image {
        width: 100%; /* Make images responsive */
        max-width: 80px; /* Limit max width */
    }

    button1 {
        width: 80px; /* Make buttons full width */
        align-self: center;
    }
}

.close {
    color: #aaa; /* Light gray color */
    float: right; /* Align to the right */
    font-size: 28px; /* Size of the close icon */
    font-weight: bold; /* Make it bold */
}

    .close:hover,
    .close:focus {
        color: black; /* Change color on hover */
        text-decoration: none; /* Remove underline */
        cursor: pointer; /* Pointer cursor on hover */
    }
/* Content Styles */
.content {
    background-color: white; /* White background for content */
    padding: 20px; /* Add padding to the content */
    margin-top: 10px; /* Space between header and content */
    border-top: 1px solid #e0e0e0; /* Optional: border at the top of the content */
}


}
