/* Reset margin and padding for all elements and set box-sizing to border-box */
* {
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Set the default font and background animation for the body */
body {
    font-family: "Madimi One", sans-serif; /* Set the default font to "Madimi One" with a fallback to sans-serif */
    background: white;
    background-size: 400% 400%; /* Set the background size to 400% of its original size for animation */
    animation: gradientAnimation 10s ease infinite; /* Apply the gradient animation with a duration of 10 seconds, easing, and infinite loop */
    overflow-x: hidden;
}

/* Define the keyframes for the background gradient animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%; /* Start the background position at 0% horizontally and 50% vertically */
    }
    50% {
        background-position: 100% 50%; /* Move the background position to 100% horizontally and 50% vertically at 50% of the animation */
    }
    100% {
        background-position: 0% 50%; /* Return the background position to 0% horizontally and 50% vertically at the end of the animation */
    }
}

/* Style for section text */
sectionText {
    font-size: 55px; /* Set the font size for section text */
}

/* Style for small text */
smallText {
    font-size: 30px; /* Set the font size for small text */
}

/* Style for info text */
infoText {
    font-size: 20px; /* Set the font size for info text */
}

/* Style for the header */
header {
    background-color:#411900; /* Black with opacity for see-through effect */
    color: #fff; /* White text color */
    padding: 10px 0; /* Vertical padding */
    position: sticky; /* Make the header stick to the top of the page */
    top: 0; /* Position at the top */
    z-index: 1000; /* Ensure it stays on top of other elements */
    box-shadow: 0 0px 10px black; /* Add a shadow for depth */
    border: 3px solid #06402B; /* Add a border with a specific color */
}

/* Style for the navigation bar */
.navbar {
    background-color: #06402B;
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space out items evenly */
    align-items: center; /* Center items vertically */
    padding: 15px 0;
}

/* Style for navigation bar list items */
.navbar ul {
    display: flex; /* Use flexbox for the list */
    margin-left: 20px; /* Add left margin */
    padding: 0; /* Remove default padding */
    list-style-type: none; /* Remove bullet points from list */
    font-size: 20;
}

/* Style for navigation bar links */
.navbar ul a {
    color: #fff; /* White text color */
    text-decoration: none; /* Remove underline */
    font-size: 25px; /* Set font size */
  
    margin-right: 50px; /* Add right margin for spacing between links */
}

.navbar a.active
{
	color: #f6e2b9;
}

.navbar .logo {
    display: flex; /* Use Flexbox for layout */
    align-items: center; /* Align items vertically */
    gap: 10px; /* Add spacing between the image and the text */
    
}

.navbar .logo img {
    height: 50px; /* Adjust the height to fit the navbar */
    width: auto; /* Maintain the aspect ratio */
    border-radius: 50%;
}

.navbar .logo a {
    color: #f6e2b9; /* Ensure the text color matches the navbar design */
    text-decoration: none; /* Remove underline */
    font-size: 25px; /* Adjust font size as needed */
    display: flex; /* Ensure proper alignment */
    align-items: center; /* Align text vertically */
}

.author {
    font-family: Marck Script; /* Use the Corinthia font */
    font-size: 25px; /* Set the font size to 18px */
    color: #f6e2b9; /* Optional: Set a dark text color */
   margin-top:3px;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(0,0,0, 0.8);
    color: white;
    margin-top: 50px;
    border: 3px solid #06402B;
}

#hero {
    background-image: url('hero.jpg'); 
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 40px 20px;
    color: #fff;
    margin-bottom: 30px;
    height: 60vh;
    display: flex; /* Enable Flexbox */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
}

#hero h1 {
    font-size: 2.5rem;
    background-color: rgba(0, 0, 0, 0.5); /* Translucent black background */
    padding: 10px 20px; /* Add padding for better spacing */
    border-radius: 5px; /* Optional: Add rounded corners */
    
}

#hero h2{
    Font-size:2rem;
    background-color: rgba(0, 0, 0, 0.5); /* Translucent black background */
    padding: 10px 20px; /* Add padding for better spacing */
    border-radius: 5px; /* Optional: Add rounded corners */
}
#hero .btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #06402B;
    color: #f6e2b9;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

#hero .btn:hover {
    background-color: #16a085;
    color: #fff;
}

form[name="login-form"] {
    margin: 0 auto;
    padding: 20px;
    border: 2px solid black;
    width: 35%;
    text-align: left;
    border-radius: 15px;
    
    background-color: #f9f9f9; /* Same background color as the form */
    Margin-top: 170px;
    margin-bottom: 300px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

form[name="login-form"] h1{
    text-align: center; /* Center the h2 within the form */
}

form[name="login-form"] label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000; /* Set label text color to black */
}

form[name="login-form"] input, form[name="login-form"] textarea{
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form[name="login-form"] button {
    background-color: #06402B; /* Updated color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    display: block;
    margin: 0 auto;
}

form[name="login-form"] button:hover {
    background-color: #04301F; /* Darker green for hover */
}

.form-select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.form-select:focus {
    border-color: #555;
    outline: none;
}

/* Style for the add_gallery form */
form[name="add_gallery"] {
    margin: 0 auto;
    padding: 20px;
    border: 2px solid black;
    width: 35%;
    text-align: left;
    border-radius: 15px;
    
    background-color: #f9f9f9; /* Same background color as the form */
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

form[name="add_gallery"] h1 {
    text-align: center; /* Center the h1 within the form */
}

form[name="add_gallery"] label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000; /* Set label text color to black */
}

form[name="add_gallery"] input[type="text"],
form[name="add_gallery"] input[type="file"],
form[name="add_gallery"] textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form[name="add_gallery"] textarea {
    resize: none; /* Prevent resizing of the textarea */
    height: 100px; /* Set a fixed height for the textarea */
}

form[name="add_gallery"] button {
    background-color: #06402B; /* Updated color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    display: block;
    margin: 0 auto;
}

form[name="add_gallery"] button:hover {
    background-color: #04301F; /* Darker green for hover */
}

.admingallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
    padding: 20px;
    background-color: #f8f9fa; /* Light gray background */
    border: 2px solid black;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    
    width: 90%
}

.adminfolder-item {
    width: 500px;
    background-color: white;
    border: 2px solid #06402B; /* Updated color */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Set relative positioning for the containers */
}

.adminfolder-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.folder-cover {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 30px;
}

.folder-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.adminfolder-content {
    display: none; /* Make the container a flexbox */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: center; /* Center items horizontally */
    gap: 20px; /* Add spacing between items */
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background-color: #ffffff;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.admingallery-item {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content horizontally */
    justify-content: flex-start; /* Align items to the top */
    width: 500px; /* Set a fixed width for each item */
    margin: 10px; /* Add spacing around each item */
    text-align: center;
    background-color: #ffffff;
    border: 2px solid #06402B; /* Updated color */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Set relative positioning for the containers */
}

.admingallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top:30px;
}

.admingallery-item h3 {
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
}

.delete-button {
    background-color: #06402B; /* Matches the green theme */
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
    display: flex; /* Use flexbox for centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    text-align: center; /* Ensure text alignment */
    height: 40px; /* Set a consistent height for the button */
    line-height: normal; /* Reset line height */
}

.delete-button:hover {
    background-color: #04301F; /* Darker green for hover */
}

/* Style for delete buttons on folders and gallery items */
.adminfolder-item .delete-button,
.admingallery-item .delete-button,
form[name="edit_project"] .delete-button {
    background-color: #06402B; /* Matches the green theme */
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
    display: flex; /* Use flexbox for centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    text-align: center; /* Ensure text alignment */
    height: 40px; /* Set a consistent height for the button */
    line-height: normal; /* Reset line height */
}

.adminfolder-item .delete-button:hover,
.admingallery-item .delete-button:hover,
form[name="edit_project"] .delete-button:hover {
    background-color: #04301F; /* Darker green for hover */
}

.adminfolder-item .delete-button,
.admingallery-item .delete-button {
    position: absolute; /* Position the button absolutely within the container */
    top: 0; /* Align it to the top */
    left: 0; /* Align it to the left */
    width: 100%; /* Make it cover the full width of the container */
    height: 40px; /* Set a fixed height for the button */
    background-color: #06402B; /* Updated color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    border-radius: 0; /* Remove border radius */
    font-size: 16px; /* Adjust font size */
    text-align: center; /* Center the text */
    line-height: 40px; /* Vertically center the text */
    cursor: pointer; /* Change cursor to pointer */
    z-index: 10; /* Ensure it appears above other content */
    transition: background-color 0.3s ease; /* Add a hover transition */
    margin-bottom: 10px;
    border-radius: 7px;
}

.adminfolder-item .delete-button:hover,
.admingallery-item .delete-button:hover {
    background-color: #04301F; /* Darker green for hover */
}

.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 10px;
}

.no-pictures {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-top: 20px;
}

form[name="addimg"] {
    margin: 20px auto;
    padding: 20px;
    border: 2px solid black;
    width: 80%; /* Adjust width as needed */
    text-align: left;
    border-radius: 15px;
   
    background-color: #f9f9f9; /* Light gray background */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

form[name="addimg"] label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000; /* Set label text color to black */
}

form[name="addimg"] input[type="text"],
form[name="addimg"] input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

form[name="addimg"] button {
    background-color: #06402B; /* Updated color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

form[name="addimg"] button:hover {
    background-color: #04301F; /* Darker green for hover */
}

form[name="addimg"] .error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 10px;
}

/* Filter Form Styling */
.filter-container {
    text-align: center;
    margin: 20px 0;
}

.filter-form label {
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.filter-form input[type="radio"] {
    display: none;
}

.filter-dot {
    width: 12px;
    height: 12px;
    border: 2px solid #333;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    transition: background-color 0.3s ease;
}

.filter-form input[type="radio"]:checked + .filter-dot {
    background-color: #333;
}

.filter-button {
    margin-left: 20px;
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: -5px;
}

.filter-button:hover {
    background-color: #0056b3;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 2px solid #2642cd;
    border-radius: 10px; /* Add rounded corners */

}

.popup.show {
    display: block;
}

.popup button {
    margin-top: 10px;
}

/* Style for the add_enquiry form */
form[name="add_enquiry"] {
    margin: 0 auto;
    padding: 20px;
    border: 2px solid black;
    width: 35%;
    text-align: left;
    border-radius: 15px;
    
    background-color: #f9f9f9; /* Same background color as the form */
    margin-top: 50px;
    margin-bottom: 187px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

/* Form title styling */
form[name="add_enquiry"] h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Label styling */
form[name="add_enquiry"] label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000; /* Set label text color to black */
}

/* Input, textarea, and select styling */
form[name="add_enquiry"] input[type="text"],
form[name="add_enquiry"] input[type="tel"],
form[name="add_enquiry"] input[type="email"],
form[name="add_enquiry"] select,
form[name="add_enquiry"] textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Button styling */
form[name="add_enquiry"] button {
    width: 100%;
    padding: 10px;
    background-color: #06402B; /* Matches the green theme */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form[name="add_enquiry"] button:hover {
    background-color: #04301F; /* Darker green for hover */
}

/* Success and error message styling */
.success-message {
    color: green;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

/* Admin Enquiry Container */
.admin-enquiry-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
    padding: 20px;
    background-color: #f8f9fa; /* Light gray background */
    border: 2px solid black;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
   
    width: 95%
}

/* Admin Enquiry Item */
.admin-enquiry-item {
    width: 100%;
    max-width: 400px;
    background-color: #f9f9f9;
    border: 2px solid #06402B;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 10px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Delete Button */
.delete-enquiry-button {
    background-color: #06402B;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    text-align: center;
}

.delete-enquiry-button:hover {
    background-color: #04301F;
}

/* Enquiry Details */
.enquiry-details p {
    font-size: 14px;
    margin: 5px 0;
    color: #333;
}

.enquiry-details p strong {
    color: #06402B;
}

/* No Enquiries Message */
.no-enquiries {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-top: 20px;
}

.title{ 
    text-align: center;
    font-size: 2.5rem;
    margin-top: 15px;
}

.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Black background with transparency */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    flex-direction: column; /* Stack content vertically */
    overflow: hidden; /* Prevent scrolling */
}

.lightbox-content {
    max-width: 90%; /* Increase the maximum width */
    max-height: 80%; /* Increase the maximum height */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px; /* Add spacing between the image and the caption */
}

#lightboxCaption {
    color: white;
    font-size: 1.5em; /* Increase font size */
    text-align: center;
    max-width: 90%; /* Ensure the caption doesn't exceed the image width */
    word-wrap: break-word; /* Wrap long text */
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 2em;
    user-select: none;
    transform: translateY(-50%);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Style for the form container */
form[name="services"] {
    margin: 20px auto;
    padding: 20px;
    max-width: 500px;
    background-color: #f9f9f9; /* Same background color as the form */
    border: 2px solid black; /* Match the site's color scheme */
    border-radius: 10px; /* Rounded corners */
    color: black; /* Text color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

/* Style for the form labels */
form[name="services"] label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #000; /* Set label text color to black */
}

/* Style for the input field */
form[name="services"] input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #06402B;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff; /* White background for input */
    color: #000; /* Black text color */
}

/* Style for the submit button */
form[name="services"] button[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    background-color: #06402B; /* Match the site's color scheme */
    color: #fff; /* Button text color */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

/* Hover effect for the submit button */
form[name="services"] button[type="submit"]:hover {
    background-color: #04301F; /* Slightly lighter green on hover */
}
/* Style for the dropdown in the services form */
form[name="services"] select[name="type"] {
    width: 100%; /* Full width */
    padding: 8px; /* Add padding for better usability */
    margin-bottom: 10px; /* Add spacing below the dropdown */
    border: 1px solid #ccc; /* Light border */
    border-radius: 4px; /* Rounded corners */
    font-size: 14px; /* Adjust font size */
    background-color: #fff; /* White background */
    color: #333; /* Dark text color */
    box-sizing: border-box; /* Include padding and border in width */
}

/* Add focus effect for the dropdown */
form[name="services"] select[name="type"]:focus {
    border-color: #555; /* Highlight border on focus */
    outline: none; /* Remove default outline */
}

.services{
    text-align: center;
    font-size: 2rem;
    margin-top: 15px;
    margin-bottom: 20px;
    justify-content: center;
}


/* Style for the services container */
.services-container {
    display: flex; /* Enable Flexbox */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: center; /* Center items horizontally */
    gap: 10px; /* Add spacing between items */
    margin-top: 20px;
    width: 99.9%;
}

/* Style for each service item */
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff; /* Light background */
    border: 2px solid black; /* Light border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 300px; /* Fixed width for each item */
}

/* Style for the delete button */
.delete-btn {
    background-color: #06402B; /* Red background */
    color: #fff; /* White text */
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.delete-btn:hover {
    background-color: #04301F; /* Darker red on hover */
}

* {
    box-sizing: border-box;
}

#content {
    display: flex; /* Use Flexbox for layout */
    justify-content: space-between; /* Add space between the boxes */
    align-items: flex-start; /* Align the boxes at the top */
    gap: 20px; /* Add spacing between the boxes */
    margin: 20px 0; /* Add vertical spacing for the section */
}

/* Style for the services list */
.services-list {
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ddd; /* Light border */
    width: 25%; /* Set width */
    border-radius: 15px; /* Rounded corners */
    text-align: center; /* Center text inside the box */
    padding: 10px; /* Add padding for spacing */
    margin-top: 0; /* Remove top margin */
    margin-left: 20px;
    display: flex; /* Enable Flexbox */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
}

.services-list ul {
    margin: 10px 0; /* Reduce the vertical margin for the list */
    padding: 0; /* Remove any extra padding */
}

.services-list li {
    margin-bottom: 1px; /* Reduce the gap between list items */
    line-height: 1; /* Adjust line height for better spacing */
    font-size: 15px;
}

.services-list h3{
    font-size: 1.2rem;
}



/* Style for each service item */
.service-item-show {
    list-style-type: none; /* Remove default bullet points */
    padding: 10px 0; /* Add spacing between items */
    font-size: 16px;
    color: #333; /* Dark text color */
    display: flex;
    align-items: center; /* Align text and icon vertically */
    gap: 10px; /* Add spacing between the tick and the text */
    justify-content: center; /* Center the text horizontally */
}

/* Add a custom tick icon before each service */
.service-item-show::before {
    content: "✔"; /* Unicode for a tick */
    color: #06402B; /* Green color for the tick */
    font-size: 18px; /* Adjust the size of the tick */
    margin-right: 5px; /* Add spacing between the tick and the text */
}

/* Remove the last border */
.service-item-show:last-child {
    border-bottom: none;
}

/* Style for the information box */
.information {
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ddd; /* Light border */
    width: 100%; /* Set width to 45% */
    border-radius: 15px; /* Rounded corners */
    text-align: center; /* Center text inside the box */
    padding: 10px; /* Add padding for spacing */
    margin-top: 0; /* Remove top margin */
}

/* Style for the contact info box */
.contact-info {
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ddd; /* Light border */
    width: 25%; /* Set width to 20% */
    border-radius: 10px; /* Rounded corners */
    text-align: center; /* Center text inside the box */
    padding: 20px; /* Add padding for spacing */
    margin-top: 0; /* Remove top margin */
    margin-right: 20px; /* Add right margin for spacing */
}



/* Style for the button inside contact info */
.contact-info .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #06402B; /* Match the site's color scheme */
    color: #fff; /* White text */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-size: 14px;
    transition: background-color 0.3s ease;
    width: 90%; /* Button width */
}

/* Hover effect for the button */
.contact-info .btn:hover {
    background-color: #04301F; /* Slightly lighter green on hover */
}


/* Style for the info form */
form[name="info"] {
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    background-color: #f9f9f9;
    border: 2px solid black;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form[name="info"] label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000; /* Set label text color to black */
}

form[name="info"] textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

form[name="info"] button {
    padding: 10px 20px;
    background-color: #06402B;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
}

form[name="info"] button:hover {
    background-color: #04301F;
}



.edit-form {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid black;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 50%;
}

.edit-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

.edit-form textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.edit-form button {
    padding: 10px 20px;
    background-color: #06402B;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    width:100%;
}

.edit-form button:hover {
    background-color: #04301F;
}

.info-container{
    flex-direction: row;
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center items horizontally */
    padding: 20px;
    margin: 20px auto;
    gap: 20px;
}

/* Style for each info item */
.info-item {
    display: flex; /* Use Flexbox for layout */
    justify-content: space-between; /* Space out the content */
    align-items: center; /* Align items vertically */
    padding: 10px 15px; /* Add padding for spacing */
    margin-bottom: 10px; /* Add spacing between items */
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ddd; /* Light border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width:300px;
    width: 40%; /* Set a fixed width for the form */
    text-align: left; /* Align text inside the form to the left */
}

/* Styling for labels inside the contact form */
form[name="contact"] label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000; /* Set label text color to black */
}

/* Styling for inputs inside the contact form */
form[name="contact"] input {
    width: 100%; /* Full width */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 4px; /* Rounded corners */
    font-size: 14px;
    background-color: #fff; /* White background */
    color: #333; /* Dark text color */
}

/* Styling for the submit button inside the contact form */
form[name="contact"] button {
    padding: 10px 20px;
    background-color: #06402B; /* Green background */
    color: #fff; /* White text */
    border: none;
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
    width: 100%;
}

/* Hover effect for the submit button */
form[name="contact"] button:hover {
    background-color: #04301F; /* Slightly lighter green on hover */
}



/* Style for the edit-contact form */
form[name="edit-contact"] {
    margin: 20px auto; /* Center the form horizontally */
    padding: 20px;
    background-color: #f9f9f9; /* Light background */
    border: 2px solid black; /* Light border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 300px; /* Set a fixed width for the form */
    text-align: left; /* Align text inside the form to the left */
}

/* Styling for labels inside the edit-contact form */
form[name="edit-contact"] label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000; /* Set label text color to black */
}

/* Styling for inputs inside the edit-contact form */
form[name="edit-contact"] input {
    width: 100%; /* Full width */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 4px; /* Rounded corners */
    font-size: 14px;
    background-color: #f9f9f9; /* White background */
    color: #333; /* Dark text color */
}

/* Styling for the submit button inside the edit-contact form */
form[name="edit-contact"] button {
    padding: 10px 20px;
    background-color: #06402B; /* Green background */
    color: #fff; /* White text */
    border: none;
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
    margin-bottom: 5px;
}

/* Hover effect for the submit button */
form[name="edit-contact"] button:hover {
    background-color: #04301F; /* Slightly lighter green on hover */
}

/* Style for the testimonials form */
form[name="testimonials"] {
    margin: 20px auto; /* Center the form horizontally */
    padding: 20px;
    background-color: #f9f9f9; /* Light background */
    border: 2px solid black; /* Light border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 50%; /* Set a fixed width for the form */
    text-align: left; /* Align text inside the form to the left */
    margin-bottom: 270px;
    margin-top: 80px;
}

/* Styling for labels inside the testimonials form */
form[name="testimonials"] label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000; /* Set label text color to black */
}

/* Styling for inputs and textarea inside the testimonials form */
form[name="testimonials"] input,
form[name="testimonials"] textarea {
    width: 100%; /* Full width */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 4px; /* Rounded corners */
    font-size: 14px;
    background-color: #fff; /* White background */
    color: #333; /* Dark text color */
}

/* Styling for the submit button inside the testimonials form */
form[name="testimonials"] button {
    padding: 10px 20px;
    background-color: #06402B; /* Green background */
    color: #fff; /* White text */
    border: none;
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
    width:100%;
}

/* Hover effect for the submit button */
form[name="testimonials"] button:hover {
    background-color: #04301F; /* Slightly lighter green on hover */
}

form[name="testimonials"] h2{
    text-align: center;
    font-size: 2rem;
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Style for the contact form */
form[name="contact"] {
    margin: 20px auto; /* Center the form horizontally */
    padding: 20px;
    background-color: #f9f9f9; /* Light background */
    border: 2px solid black; /* Light border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 300px; /* Set a fixed width for the form */
    text-align: left; /* Align text inside the form to the left */
}

/* Styling for labels inside the contact form */
form[name="contact"] label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000; /* Set label text color to black */
}

/* Styling for inputs inside the contact form */
form[name="contact"] input {
    width: 100%; /* Full width */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 4px; /* Rounded corners */
    font-size: 14px;
    background-color: #fff; /* White background */
    color: #333; /* Dark text color */
}

/* Styling for the submit button inside the contact form */
form[name="contact"] button {
    padding: 10px 20px;
    background-color: #06402B; /* Green background */
    color: #fff; /* White text */
    border: none;
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

/* Hover effect for the submit button */
form[name="contact"] button:hover {
    background-color: #04301F; /* Slightly lighter green on hover */
}
 /* Add spacing between buttons in the form-actions container */
form[name="info"] .form-actions {
    display: flex;
    gap: 10px; /* Add a gap between the buttons */
    margin-top: 10px; /* Add spacing above the buttons */
}
/* Admin Testimonials Container */
.admin-testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
    padding: 20px;
    background-color: #f8f9fa; /* Light gray background */
    border: 2px solid black;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    width: 95%;
}

/* Admin Testimonial Item */
.admin-testimonial-item {
    width: 100%;
    max-width: 400px;
    background-color: #f9f9f9;
    border: 2px solid #06402B;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 10px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Delete Button */
.delete-testimonial-button {
    background-color: #06402B;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    text-align: center;
}

.delete-testimonial-button:hover {
    background-color: #04301F;
}

/* Testimonial Details */
.testimonial-details p {
    font-size: 14px;
    margin: 5px 0;
    color: #333;
}

.testimonial-details p strong {
    color: #06402B;
}

/* No Testimonials Message */
.no-testimonials {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-top: 20px;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 15px;
}

.testimonial-title{
    font-size: 2.5rem;
    text-align: center;
    margin-top:30px;
}



/* Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
   
    width:100%;
    margin: 0 auto;
}

/* Carousel */
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Testimonial Item */
.testimonial-item {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Stars */
.stars {
    color: #f39c12;
    margin: 10px 0;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute; /* Position the buttons relative to the carousel container */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for vertical centering */
    background-color: #06402B;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    z-index: 10; /* Ensure buttons appear above the carousel */
}

.carousel-btn:hover {
    background-color: #046C46;
}

.prev-btn {
    left: 10px; /* Position the left button */
}

.next-btn {
    right: 10px; /* Position the right button */
}

/* Style for the middle content (information and testimonials) */
.middle-content {
    display: flex;
    flex-direction: column; /* Stack the information and testimonials vertically */
    gap: 20px; /* Add spacing between the stacked sections */
    flex: 1; /* Allow the middle content to take up available space */
    max-width: 60%; /* Limit the width of the middle content */
    margin: 0 auto; /* Center the middle content */
}

/* Style for the Add Review button */
.add-review {
    text-align: center;
    margin-top: 5px;
}

.add-review .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #06402B; /* Match the site's color scheme */
    color: #fff; /* White text */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.add-review .btn:hover {
    background-color: #04301F; /* Slightly lighter green on hover */
}

textarea{
    resize: vertical;
}

.carousel .testimonial-item p {
    width: 80%; /* Set the width of the description to 80% */
    margin: 0 auto; /* Center the description horizontally */
    text-align: center; /* Center the text */
}

.dropdown {
    display: none; /* Hide dropdown by default */
    ; /* Align the dropdown to the right */
    }

.dropbtn {
    background-color: #411900;
    color: #f6e2b9;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    margin-right: 40px;
   font-size:1.5rem;
   
    
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #411900;
    color: #f6e2b9;
    min-width: 20px;
    z-index: 1;
    right:0;
    right:40px;
    font-size: 1.9rem;
    text-align: right;
}

.dropdown-content ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1.09rem;
}

.dropdown-content a:hover {
    background-color: #311300;
}


.gallery-description {
    font-size: 1.2rem;
    color: black;
    margin-top: 10px;
    text-align: center; /* Center the text */
}


/* Media Query for Responsive Design */
@media (max-width: 1320px) {
    .navbar .nav-links{
        display: none; /* Hide the menu */
    }
    .dropdown {
        display: block; /* Show the dropdown */
    }

    

    #content {
        flex-direction: column; /* Stack the boxes vertically */
        align-items: center; /* Center the boxes horizontally */
        gap: 20px; /* Add spacing between the boxes */
    }

    .middle-content{
        display: contents;
    }

    .information{
        order: -1;
        width: 70%;
    }

   .services-list,.contact-info{
        width: 70%;
        margin: 0 auto; /* Center the boxes horizontally */
    }

    .carousel-container{
        width: 70%;
        margin: 0 auto; /* Center the boxes horizontally */
        order: 1;
    }

    .add-review{
        width:100%;
        order:1;
    }

    .add-review .btn{
        width: 50%;
    }

   
}

@media(max-width: 1130px){
    .adminfolder-item, .admingallery-item{
        width: 350px;
    }
    .folder-cover, .admingallery-item img {
        height:225px;
    }
}


@media(max-width: 1050px){
    form[name="add_enquiry"],form[name="services"],form[name="addimg"],form[name="testimonials"],form[name="contact"],form[name="edit-contact"],form[name="edit-contact"],form[name="login-form"],form[name="services"],form[name="add_gallery"]{
        width: 90%;
    }

    
    form[name="info"]{
        width: 90%;
    }

    #hero{
        height: 50vh;
    } 
}


@media(max-width: 815px){
    .adminfolder-item, .admingallery-item{
        width: 280px;
    }
    .folder-cover, .admingallery-item img {
        height:170px;
    }
    .folder-title{
        font-size: 1rem;
    }
    .admingallery-item h3 {
        font-size: 0.9rem;
    }

}


@media(max-width: 680px){
    .dropbtn{
        font-size: 1.2rem;
        padding: 10px 15px;
    }
    .dropdown-content a {
        font-size: 0.8rem;
    }

    .navbar .logo img {
        height: 40px;
    }

    .navbar .logo a{
        font-size: 1.2rem;
    }

    .author{
        font-size: 15px;
        margin-top:0;
    }

    .navbar{
        padding: 10px 0;
    }

    .header{
        padding: 8px 0;
    }

    .navbar ul a {
        margin-right: 15px;
    }

    .title{
        font-size: 2rem;
    }

    form[name="add_gallery"]{
        margin-top: 10px;
    }

    .filter-container{
        margin: 10px 0;
    }
    #hero{
        height: 40vh;
    } 

    #hero h1 {
        font-size: 2rem; /* Reduce the font size of the main heading */
    }

    #hero h2 {
        font-size: 1.5rem; /* Reduce the font size of the subheading */
    }

    #hero .btn {
        font-size: 0.9rem; /* Reduce the font size of the button */
        padding: 10px 15px; /* Adjust padding for smaller screens */
    }

    .services-list h2,
    .information h2,
    .contact-info h2 {
        font-size: 1.2rem; /* Reduce the font size of section headings */
    }

    .services-list h3{
        font-size: 1.1rem;
        
    }

    .services-list p,
    .information p,
    .contact-info p {
        font-size: 0.9rem; /* Reduce the font size of paragraphs */
    }

    .service-item-show {
        font-size: 0.9rem; /* Reduce the font size of service items */
    }

    .add-review .btn {
        font-size: 0.9rem; /* Reduce the font size of the "Add Review" button */
    }

    .carousel .testimonial-item p {
        font-size: 0.9rem; /* Reduce the font size of testimonial text */
    }

    .contact-info .btn {
        font-size: 0.9rem; /* Reduce the font size of the "Enquire Now" button */
    }

   
    form[name="add_enquiry"],
    form[name="services"],
    form[name="addimg"],
    form[name="testimonials"],
    form[name="contact"],
    form[name="edit-contact"],
    form[name="login-form"],
    form[name="add_gallery"],
    form[name="info"] {
        font-size: 0.9rem; /* Reduce the overall font size in forms */
    }

    form[name="add_enquiry"] label,
    form[name="services"] label,
    form[name="addimg"] label,
    form[name="testimonials"] label,
    form[name="contact"] label,
    form[name="edit-contact"] label,
    form[name="login-form"] label,
    form[name="add_gallery"] label,
    form[name="info"] label {
        font-size: 0.8rem; /* Reduce the font size of labels */
    }

    form[name="add_enquiry"] input,
    form[name="services"] input,
    form[name="addimg"] input,
    form[name="testimonials"] input,
    form[name="contact"] input,
    form[name="edit-contact"] input,
    form[name="login-form"] input,
    form[name="add_gallery"] input,
    form[name="info"] input,
    form[name="add_enquiry"] textarea,
    form[name="services"] textarea,
    form[name="addimg"] textarea,
    form[name="testimonials"] textarea,
    form[name="contact"] textarea,
    form[name="edit-contact"] textarea,
    form[name="login-form"] textarea,
    form[name="add_gallery"] textarea,
    form[name="info"] textarea {
        font-size: 0.8rem; /* Reduce the font size of input fields and textareas */
        padding: 8px; /* Adjust padding for smaller screens */
    }

    form[name="add_enquiry"] button,
    form[name="services"] button,
    form[name="addimg"] button,
    form[name="testimonials"] button,
    form[name="contact"] button,
    form[name="edit-contact"] button,
    form[name="login-form"] button,
    form[name="add_gallery"] button,
    form[name="info"] button {
        font-size: 0.8rem; /* Reduce the font size of buttons */
        padding: 8px 12px; /* Adjust padding for smaller screens */
    }

    form[name="add_enquiry"] h1,
    form[name="services"] h1,
    form[name="addimg"] h1,
    form[name="testimonials"] h1,
    form[name="contact"] h1,
    form[name="edit-contact"] h1,
    form[name="login-form"] h1,
    form[name="add_gallery"] h1,
    form[name="info"] h1,
    form[name="add_enquiry"] h2,
    form[name="services"] h2,
    form[name="addimg"] h2,
    form[name="testimonials"] h2,
    form[name="contact"] h2,
    form[name="edit-contact"] h2,
    form[name="login-form"] h2,
    form[name="add_gallery"] h2,
    form[name="info"] h2 {
        font-size: 1.5rem; /* Reduce the font size of form headings */
    }

    form[name="services"] button[type="submit"] {
        font-size: 0.8rem; /* Further reduce the font size of the button */
        padding: 6px 10px; /* Adjust padding for smaller screens */
       
        margin: 10px auto; /* Center the button */
    }

    form[name="services"] input[type="text"],
    form[name="services"] select[name="type"] {
       
        padding: 6px; /* Adjust padding for smaller screens */
        font-size: 0.8rem; /* Reduce font size further */
    }

    h2.services {
        font-size: 1.4rem; /* Slightly reduce the font size */
        text-align: center; /* Center the text for better alignment */
        margin-bottom: 15px; /* Adjust spacing below the heading */
    }

    .service-item {
       
        padding: 8px 10px; /* Adjust padding for smaller screens */
        font-size: 0.8rem; /* Reduce the font size */
    }

    .service-item p {
        font-size: 0.8rem; /* Reduce the font size of the text */
    }

    .delete-btn {
        font-size: 0.8rem; /* Reduce the font size of the delete button */
        padding: 6px 8px; /* Adjust padding for smaller screens */
    }

    form[name="add_gallery"] select,
    form[name="login-form"] select {
       
        padding: 8px; /* Adjust padding for smaller screens */
        font-size: 0.8rem; /* Reduce font size */
    }

    /* Scale photo input on Add Gallery and Add Pictures forms */
    form[name="add_gallery"] input[type="file"],
    form[name="addimg"] input[type="file"] {
        padding: 8px; /* Adjust padding for smaller screens */
        font-size: 0.8rem; /* Reduce font size */
    
}
.admin-enquiry-item {
    padding: 10px; /* Adjust padding for smaller screens */
    font-size: 0.8rem; /* Reduce the font size */
}

.admin-enquiry-item p {
    font-size: 0.8rem; /* Reduce the font size of the text */
}

.delete-enquiry-button {
    font-size: 0.8rem; /* Reduce the font size of the delete button */
    padding: 8px 10px; /* Adjust padding for smaller screens */
}

.admin-testimonial-item {
    padding: 10px; /* Adjust padding for smaller screens */
    font-size: 0.8rem; /* Reduce the font size */
}

.admin-testimonial-item p {
    font-size: 0.8rem; /* Reduce the font size of the text */
}

.delete-testimonial-button {
    font-size: 0.8rem; /* Reduce the font size of the delete button */
    padding: 8px 10px; /* Adjust padding for smaller screens */
}

.adminfolder-item {
    font-size: 0.9rem; /* Reduce the font size for folder items */
}

.admingallery-item {
    font-size: 0.9rem; /* Reduce the font size for gallery items */
}

.adminfolder-item h3,
.admingallery-item h3 {
    font-size: 1rem; /* Reduce the font size of titles */
}

.adminfolder-item .delete-button,
    .admingallery-item .delete-button {
        font-size: 0.9rem; /* Reduce the font size of the delete button */
        padding: 8px 12px; /* Adjust padding for smaller screens */
    }

    .gallery-description {
        font-size: 0.9rem; /* Reduce the font size of the description */
        margin-top: 5px; /* Adjust spacing above the description */
    }
}

@media(max-width: 600px){
    .footer p{
        font-size: 0.8rem;
    }

}

@media(max-width:590px){
    .information, .services-list, .contact-info, .carousel-container{
        width: 95%;
    }
}

@media (max-width: 550px) {
    .filter-container {
        font-size: 0.9rem; /* Reduce the overall font size */
    }

    .filter-form label {
        font-size: 0.8rem; /* Reduce the font size of labels */
        margin: 0 5px; /* Adjust spacing between labels */
    }

    .filter-dot {
        width: 10px; /* Reduce the size of the filter dots */
        height: 10px; /* Reduce the size of the filter dots */
        margin-right: 3px; /* Adjust spacing between the dot and text */
    }

    .filter-button {
        font-size: 0.8rem; /* Reduce the font size of the button */
        padding: 5px 8px; /* Adjust padding for smaller screens */
        margin-top: 5px; /* Adjust spacing above the button */
    }
}

@media(max-width: 500px){
    .dropbtn{
        font-size: 1rem;
        padding: 8px 12px;
    }
    .dropdown-content a {
        font-size: 0.7rem;
    }

    .navbar .logo img {
        height: 35px;
    }

    .navbar .logo a{
        font-size: 1.1rem;
    }

    .author{
        font-size: 12px;
        margin-top:0;
    }

    .navbar{
        padding: 9px 0;
    }

    .header{
        padding: 7px 0;
    }

    .navbar ul a {
        margin-right: 13px;
    }
}

@media(max-width: 430px){
    .dropbtn{
        font-size: 0.7rem;
        padding: 6px 10px;
        margin-right:20px;
    }

    .dropdown-content  {
       right:20px;
    }
    .dropdown-content a {
        font-size: 0.7rem;
    }

    .navbar .logo img {
        height: 30px;
    }

    .navbar .logo a{
        font-size: 0.9rem;
    }

    .author{
        font-size: 10px;
        margin-top:0;
    }

    .navbar{
        padding: 7px 0;
    }

    .header{
        padding: 5px 0;
    }

    .navbar ul a {
        margin-right: 10px;
    }

    .title{
        font-size: 1.5rem;
    }
    #hero{
        height: 30vh;
    } 
    #hero h1 {
        font-size: 1.8rem; /* Reduce the font size of the main heading */
    }

    #hero h2 {
        font-size: 1.2rem; /* Reduce the font size of the subheading */
    }

    #hero .btn {
        font-size: 0.8rem; /* Reduce the font size of the button */
        padding: 8px 12px; /* Adjust padding for smaller screens */
    }

    .services-list h2,
    .information h2,
    .contact-info h2 {
        font-size: 1rem; /* Reduce the font size of section headings */
    }

    .services-list h3 {
        font-size: 0.9rem; /* Reduce the font size of subheadings */
    }

    .services-list p,
    .information p,
    .contact-info p {
        font-size: 0.8rem; /* Reduce the font size of paragraphs */
    }

    .service-item-show {
        font-size: 0.8rem; /* Reduce the font size of service items */
    }

    .add-review .btn {
        font-size: 0.8rem; /* Reduce the font size of the "Add Review" button */
    }

    .carousel .testimonial-item p {
        font-size: 0.8rem; /* Reduce the font size of testimonial text */
    }

    .contact-info .btn {
        font-size: 0.8rem; /* Reduce the font size of the "Enquire Now" button */
    }

    footer p {
        font-size: 0.7rem; /* Reduce the font size of footer text */
    }

    .service-list li{
        font-size: 1.8rem; /* Reduce the font size of service items */
       
    }

    form[name="add_enquiry"],
    form[name="services"],
    form[name="addimg"],
    form[name="testimonials"],
    form[name="contact"],
    form[name="edit-contact"],
    form[name="login-form"],
    form[name="add_gallery"],
    form[name="info"] {
        font-size: 0.8rem; /* Reduce the overall font size in forms */
    }

    form[name="add_enquiry"] label,
    form[name="services"] label,
    form[name="addimg"] label,
    form[name="testimonials"] label,
    form[name="contact"] label,
    form[name="edit-contact"] label,
    form[name="login-form"] label,
    form[name="add_gallery"] label,
    form[name="info"] label {
        font-size: 0.7rem; /* Reduce the font size of labels */
    }

    form[name="add_enquiry"] input,
    form[name="services"] input,
    form[name="addimg"] input,
    form[name="testimonials"] input,
    form[name="contact"] input,
    form[name="edit-contact"] input,
    form[name="login-form"] input,
    form[name="add_gallery"] input,
    form[name="info"] input,
    form[name="add_enquiry"] textarea,
    form[name="services"] textarea,
    form[name="addimg"] textarea,
    form[name="testimonials"] textarea,
    form[name="contact"] textarea,
    form[name="edit-contact"] textarea,
    form[name="login-form"] textarea,
    form[name="add_gallery"] textarea,
    form[name="info"] textarea {
        font-size: 0.7rem; /* Reduce the font size of input fields and textareas */
        padding: 6px; /* Adjust padding for smaller screens */
    }

    form[name="add_enquiry"] button,
    form[name="services"] button,
    form[name="addimg"] button,
    form[name="testimonials"] button,
    form[name="contact"] button,
    form[name="edit-contact"] button,
    form[name="login-form"] button,
    form[name="add_gallery"] button,
    form[name="info"] button {
        font-size: 0.7rem; /* Reduce the font size of buttons */
        padding: 6px 10px; /* Adjust padding for smaller screens */
    }

    form[name="add_enquiry"] h1,
    form[name="services"] h1,
    form[name="addimg"] h1,
    form[name="testimonials"] h1,
    form[name="contact"] h1,
    form[name="edit-contact"] h1,
    form[name="login-form"] h1,
    form[name="add_gallery"] h1,
    form[name="info"] h1,
    form[name="add_enquiry"] h2,
    form[name="services"] h2,
    form[name="addimg"] h2,
    form[name="testimonials"] h2,
    form[name="contact"] h2,
    form[name="edit-contact"] h2,
    form[name="login-form"] h2,
    form[name="add_gallery"] h2,
    form[name="info"] h2 {
        font-size: 1.2rem; /* Reduce the font size of form headings */
    }

    form[name="services"] input[type="text"],
    form[name="services"] select[name="type"] {
        width: 100%; /* Reduce the width further */
        padding: 6px; /* Adjust padding for smaller screens */
        font-size: 0.7rem; /* Reduce font size further */
    }

    form[name="services"] button[type="submit"] {
        font-size: 0.7rem; /* Further reduce the font size of the button */
        padding: 6px 10px; /* Adjust padding for smaller screens */
       
        margin: 10px auto; /* Center the button */
    }

    .service-item {

        padding: 6px 8px; /* Adjust padding for smaller screens */
        font-size: 0.7rem; /* Further reduce the font size */
    }

    .service-item p {
        font-size: 0.7rem; /* Further reduce the font size of the text */
    }

    .delete-btn {
        font-size: 0.7rem; /* Further reduce the font size of the delete button */
        padding: 5px 6px; /* Adjust padding for smaller screens */
    }

    form[name="add_gallery"] select,
    form[name="login-form"] select {
        padding: 6px; /* Adjust padding for smaller screens */
        font-size: 0.7rem; /* Further reduce font size */
    }

    /* Further scale photo input on Add Gallery and Add Pictures forms */
    form[name="add_gallery"] input[type="file"],
    form[name="addimg"] input[type="file"] {
        padding: 6px; /* Adjust padding for smaller screens */
        font-size: 0.7rem; /* Further reduce font size */
    }

    .admin-enquiry-item {
        padding: 8px; /* Adjust padding for smaller screens */
        font-size: 0.7rem; /* Further reduce the font size */
    }

    .admin-enquiry-item p {
        font-size: 0.7rem; /* Further reduce the font size of the text */
    }

    .delete-enquiry-button {
        font-size: 0.7rem; /* Further reduce the font size of the delete button */
        padding: 6px 8px; /* Adjust padding for smaller screens */
    }

    .admin-testimonial-item {
        padding: 8px; /* Adjust padding for smaller screens */
        font-size: 0.7rem; /* Further reduce the font size */
    }

    .admin-testimonial-item p {
        font-size: 0.7rem; /* Further reduce the font size of the text */
    }

    .delete-testimonial-button {
        font-size: 0.7rem; /* Further reduce the font size of the delete button */
        padding: 6px 8px; /* Adjust padding for smaller screens */
    }

    .adminfolder-item {
        font-size: 0.8rem; /* Further reduce the font size for folder items */
    }

    .admingallery-item {
        font-size: 0.8rem; /* Further reduce the font size for gallery items */
    }

    .adminfolder-item h3,
    .admingallery-item h3 {
        font-size: 0.9rem; /* Further reduce the font size of titles */
    }

    .adminfolder-item .delete-button,
    .admingallery-item .delete-button {
        font-size: 0.8rem; /* Further reduce the font size of the delete button */
        padding: 6px 10px; /* Adjust padding for smaller screens */
    }

    .gallery-description {
        font-size: 0.8rem; /* Further reduce the font size of the description */
        margin-top: 5px; /* Adjust spacing above the description */
    }

}
