body {
    font-family: 'Arial', sans-serif; /* Clean font for the body */
    margin: 0;
    background-color: #f4f4f4; /* Light background for contrast */
}
.navbar {
    display: flex; /* Flexbox for layout */
    justify-content: space-between; /* Space between elements */
    align-items: center; /* Center items vertically */
    padding: 15px 30px; /* Padding for spacing */
    background-color: #a596db;/* Navbar background color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.nav-list {
    display: flex; /* Horizontal layout for list */
    align-items: center; /* Center items vertically */
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

.nav-list .logo {
    margin-right: 20px; /* Space between logo and links */
}

.nav-list li {
    margin: 0 15px; /* Space between links */
}

.nav-list a {
    text-decoration: none; /* Remove underline */
    color: white; /* White text color */
    font-size: 18px; /* Font size for links */
    padding: 10px 15px; /* Padding for links */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

.nav-list a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Light hover effect */
    transform: scale(1.05); /* Slight scale on hover */
}
.gst{
    align-items: left;
    justify-content: baseline;
}
.logo img {
    width: 50px; /* Fixed width for logo */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Circular logo */
    border: 2px solid white; /* White border for contrast */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}
.logo image :hover{
    background-color: #cedeed;
}
.rightnav {
    display: flex; /* Flexbox for right side items */
    align-items: center; /* Center vertically */
    color: white ;
}

.name {
    font-family: 'Arial', sans-serif; /* Clean font for the name */
    font-size: 50px; /* Large font size for prominence */
    font-weight: bold; /* Bold text for emphasis */
    color: #302e46; /* Bright blue color for the text */
    text-align: center; /* Center the text */
    padding: 20px; /* Padding for spacing around the text */
    text-shadow: 8px 4px 8px rgba(12, 12, 12, 0.3), /* First shadow */
                 8px 4px 8px rgba(0, 0, 0, 0.2); /* Second shadow for depth */
    background-color: #e7f4d5;
}
.name {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
}

.btn {
    padding: 8px 15px; /* Button padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    background-color: white; /* White button */
    color: #007bff; /* Button text color matching navbar */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    color: white; /* White text on hover */
}

.prod {
    background-color: #b3b9c0; /* Background color */
    color: rgb(8, 8, 8); /* Text color */
    font-size: 24px; /* Font size */
    font-weight: bold; /* Bold text */
    text-align: center; /* Center the text */
    padding: 15px; /* Padding for spacing */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    margin: 20px auto; /* Center it horizontally with margin */
    max-width: 300px; /* Maximum width */
}
.pro-list {
    height: auto; /* Allow dynamic height based on content */
    display: flex;
    padding: 20px 10px;
    border-radius: 15px;
    border: 1px solid #ccc; /* Softer border color */
    max-width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow for depth */
    background-color: #e4dcdc; /* White background for the section */
    transition: transform 0.3s; /* Smooth transition for hover effect */
}

.pro-list:hover {
    transform: scale(1.02); /* Slight scale on hover */
}

.thumbnail {
    width: 30%; /* Increased width for a better image display */
    display: flex;
    justify-content: center; /* Center the image */
    align-items: center; /* Center the image vertically */
    padding: 10px;
}

.thumbnail img {
    max-width: 100%; /* Responsive image */
    border-radius: 10px; /* Rounded corners for the image */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for image */
}

.ulsize {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin-left: 20px; /* Add some space between image and text */
    flex: 1; /* Allow text area to grow */
}

.sectag {
    font-size: 24px; /* Adjust font size */
    font-weight: bold; /* Make the section tag bold */
    color: #333; /* Dark color for better readability */
    margin-bottom: 10px; /* Space below the section tag */
}

.price {
    color: rgb(164, 85, 57); /* Keep the original color */
    font-size: 18px; /* Slightly smaller for balance */
    margin-bottom: 10px; /* Space below the price */
}

.D-btn {
    width: 100%; /* Full width button container */
    display: flex;
    justify-content: flex-start; /* Align button to the left */
    margin-bottom: 10px; /* Space below the button */
}

.D-btn button {
    padding: 10px 15px; /* Button padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    background-color: #007bff; /* Bootstrap primary color */
    color: white; /* White text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth background color transition */
}

.D-btn button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; /* Adjust font size */
    color: #555; /* Softer color */
    padding: 10px 0; /* Space above and below the delivery text */
}

.about {
    max-width: 100%; /* Maximum width for the section */
    margin: 20px auto; /* Center the section */
    padding: 5px; /* Padding for inner spacing */
    background-color: rgb(77, 53, 63); /* Background color for the section */
    border-radius: 8px; /* Rounded corners */
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);/* Subtle shadow for depth */
}

.aboutDetail {
    font-size: 24px; /* Font size for the title */
    font-weight: bold; /* Bold font for emphasis */
    color: white; /* color for text */
    margin-bottom: 15px; /* Space below the title */
}

.aboutD {
    font-size: 16px; /* Font size for address */
    color: white; /* Slightly lighter color for less emphasis */
    margin-bottom: 20px; /* Space below the address */
    line-height: 1.5; /* Spacing between lines */
}

.contact {
    /* You can style the contact section here */
    margin-bottom: 20px; /* Space below the contact section */
    color: #ccc;
    text-size-adjust: 10px;
}

.trust {
    display: flex; /* Enable Flexbox layout */
    justify-content: center; /* Align items to the right */
    align-items: center; /* Center items vertically */
    margin-right: 10px; /* Margin on the right */
    width: 100%; /* Full width of the container */
}

.im {
    max-width: 80%; /* Responsive image */
    height: 80px; /* Maintain aspect ratio */
    border-radius: 5px; /* Rounded corners for the image */
}
.copyright {
    background-color: #34495e; /* Slightly lighter background for copyright */
    padding: 20px 10px; /* Padding for spacing */
    text-align: center; /* Center text */
    font-size: 14px; /* Smaller font for copyright text */
    border-radius: 8px;
}

.copyright {
    color: white; /* White text for copyright */
}

