*{
    direction: rtl;
    text-align: right;
    padding: 0;
    margin: 0;
}
 
.header {
    background-color: #C4CCCE;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    padding: 20px 0; /* Add padding */
    position: relative; /* Position relative to use z-index */
    z-index: 10; /* Higher z-index to appear above other elements */
}
 
.nav-link {
    background-color: #1E9F85; /* Tab background color */
    color: white; /* Tab text color */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition */
}
.nav-link.active {
    background-color: white; /* Active tab background color */
    color: black; /* Change text color if needed */
}

.nav-link:hover {
    background-color: #17a68e; /* Darker shade for hover effect */
}

.footer {
    background-color: #C4CCCE;
    padding: 20px 0; /* Add padding for spacing */
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    position: relative; /* For z-index usage */
    z-index: 10; /* Ensure visibility above other elements */
}
     
/* Custom styles for smaller screens */
@media (max-width: 768px) {
    .circle {
        width: 80%; /* Make circles larger on smaller screens */
        margin: 0 auto; /* Center circles */
    }
}

/* Custom styles for larger screens */
@media (min-width: 992px) {
    .circle {
        width: 100%; /* Default size for larger screens */
    }
}


.footer-links {
    display: flex;
    flex-direction: column; /* Stack links vertically */
    margin: 10px; /* Add some margin for spacing */
}

.footer-link {
    color: black; /* Link color */
    text-decoration: none; /* Remove underline */
    margin: 5px 5px; /* Space between links */
    font-size: 14px; /* Smaller font size */
}


.footer-link:hover {
    text-decoration: underline; /* Underline on hover */
}

.footer .row {
    margin-bottom: 20px; /* Space between rows */
}

.footer h5 {
    margin-bottom: 10px; /* Space between header and links */
}
.content-block {
    background-color: #f9f9f9
}
.content-block a{
text-decoration: none;
}
.content-block-description {
    padding: 40px;
}      

.btn-home {
    background-color: #17a68e; /* Updated background color */
    color: white; /* Text color */
    border: none; /* Remove border if needed */
}

.btn-home:hover {
    background-color: #148b7d; /* Darker shade for hover effect */
    color: #f8f9fa; /* Light text color on hover for better contrast */
}
.form-background {
    background-color: #E7EAE9; /* Light gray background */
    padding: 20px; /* Add padding */
    border-radius: 5px; /* Rounded corners */
} 

.modal-header .btn-close {
    margin: 0; /* Remove any left margin */
    padding: 0; /* Adjust padding if necessary */
}
 #select_location{
    padding: 3px;
 }
 .radio-inline *{
    display: inline;
 }
.circle {
    width: 150px; /* Set the width for the circle */
    height: 150px; /* Set the height for the circle */
    border-radius: 50%; /* Make it circular */
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    margin: 20px auto; /* Add margin for space around the circle */
    padding: 15px; /* Add padding inside the circle */
    background-color: #1E9F85; /* Background color */
    color: white; /* Text color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: add shadow for depth */
}

.circle-title {
    font-size: 1rem; /* Adjust title font size */
}
 
.form-title {
    margin-bottom: 20px; /* Space below the title */
    font-size: 1.5rem; /* Font size for the title */
    color: #1E9F85; /* Color of the title */
    text-align: center; /* Center the title */
}
 
.section-title {
    font-size: 1.75rem; /* Adjust as needed */
    color: #1E9F85; /* Consistent color with other titles */
    margin-bottom: 20px; /* Space below the title */
    text-align: center; /* Center title */
}

.content-block {
    margin: 20px 0; /* Margin for spacing between blocks */
}

.content-block-description {
    background-color: #f9f9f9; /* Ensure light background */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Add some padding for better spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
.input-group {
    display: flex;
    align-items: center;
    margin-top: 10px; /* Retain top margin */
}

.custom-file {
    margin-right: 10px; /* Space between file input and text input */
    position: relative; /* Keep positioning for the file input */
    display: inline-block; /* Maintain display style */
    width: auto; /* Adjust to fit content */
}

.custom-file-input {
    opacity: 0; /* Hide the default file input */
    position: absolute;
    z-index: 2; /* Ensure it's clickable */
    width: 100%; /* Occupy full width of custom file */
    height: 100%; /* Occupy full height of custom file */
}

.custom-file-label {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    background-color: hsl(210, 17%, 98%);
    cursor: pointer;
    transition: background-color 0.2s;
}

.custom-file-label:hover {
    background-color: #e2e6ea; /* Hover effect */
}

.form-control {
    border: 1px solid #ced4da; /* Consistent border */
    border-radius: 0.25rem; /* Consistent border radius */
}

.file-name {
    margin: 0;
    font-size: 1rem; /* Adjust as needed */
    color: #495057; /* Default text color */
}
/* Sidebar styles */
 

.sidebar-links {
    list-style: none; /* Remove list bullets */
    padding: 0; /* Remove padding */
}

.sidebar-links li {
    margin: 10px 0; /* Space between links */

} 
.sidebar-links .btn {
    background-color: #E7EAE9; /* Match sidebar background */
    color: #17a68e; /* Button text color */
    border-bottom: 1px solid #17a68e;
    text-decoration: none;

}

.sidebar-links .btn:hover {
    background-color: #148b7d; /* Change background on hover */
    color: white; /* Change text color on hover */
}
.sidebar *{
 text-align: right !important; 

}
.sidebar {
    background-color: #E7EAE9; /* Light gray background */
    padding: 20px; /* Padding around sidebar */
    border-right: 1px solid #ced4da; /* Right border */
 }

 .child-links {
    padding-left: 20px; /* Indent child links */
    background-color: #F0F4F5; /* Transparent background */
    border-right: 3px solid #17a68e; /* Left border for visual separation */
    margin: 5px 10px; /* Adjusted right margin for spacing */
}

.child-links .btn {
    background-color: #F0F4F5; /* Transparent background */
    color: #17a68e; /* Text color */
    padding: 10px; /* Padding for better click area */
    text-align: left; /* Align text to the left */
}

.child-links .btn:hover {

      background-color: #148b7d; /* Change background on hover */
    color: white; /* Change text color on hover */
    
}

.parent-link .btn {
    font-weight: bold; /* Bold font for parent links */
    color: #1E9F85; /* Parent link color */
}

.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    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.8); /* Black background with opacity */
}

.popup-content {
    margin: auto;
    display: block;
    max-width: 90%; /* Adjust as needed */
    max-height: 90%; /* Adjust as needed */
    margin-top: 10%; /* Centering the image vertically */
}
.img-circle {
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image covers the circle without distortion */
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.carousel-item img,
.carousel-item video {
    max-height: 150px; /* Set your desired height here */
    object-fit: fill; /* Ensures images cover the area without distortion */
    width: 100%;
}

.rating-section {
    margin-top: 20px; /* Space above the rating section */
    text-align: center; /* Center the content */
}

.star-rating {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center stars */
    margin-bottom: 10px; /* Space below stars */
}

.star-rating input {
    display: none; /* Hide radio buttons */
}

.star-rating label {
    font-size: 40px; /* Increase star size */
    color: lightgray; /* Default star color */
    cursor: pointer; /* Pointer on hover */
    transition: color 0.2s, transform 0.2s; /* Smooth transition for color and scaling */
}

.star-rating label:hover {
    color: gold; /* Highlight on hover */
    transform: scale(1.2); /* Scale up on hover */
}

.star-rating input:checked ~ label {
    color: gold; /* Highlight selected stars */
}

.star-rating .rated {
    color: gold; /* Color for rated stars */
}

.rating-message {
    font-size: 18px; /* Font size for rating message */
    color: #333; /* Color for text */
    margin-top: 10px; /* Space above message */
}

#map {
        height: 600px; /* Adjust height */
        width: 100%;
    }