/* Global Styles */
body {
    font-family: 'DicotMedium Regular';
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;
}

header {
    background-color: #222;
    padding: 15px;
    text-align: center;
    position: relative;
}

h1 {
    margin: 0;
    font-family: 'DicotMedium Regular';
    font-size: 30pt;
    color: #00AFF0;
}

/* Hamburger Menu Button */
.hamburger {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    margin-top: 10px; /* Below the h1 */
}

/* Navigation Styles */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 10px 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
}

nav ul li a:hover {
    color: #EB268F;
}

main {
    padding: 20px;
    text-align: center;
}

.logo-link{
    text-decoration: none;
    color: #00AFF0;
    font-size: 35pt;
    font-family: 'DicotMedium Regular';

}

.logo-link:hover{
    color: #00AFF0;
    font-size: 39pt;
    font-family: 'DicotMedium Regular';
    transition: color 0.3s;
    
}

.contact-info li {
    list-style: none;
}

.contact-info li a {
    color: #EB268F;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
    
}

.contact-info li a:hover {
    font-size: 16pt;
    text-decoration: underline;
    transition: color 0.3s;
    font-style: italic;
}

.success-message{
    color: #28a745;
    font-family: 'DicotMedium Regular';
    font-size: 16pt;
    font-weight: bold;
    word-wrap: break-word;
}

/* Background Video Styling */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the video covers the entire background */
    z-index: -1; /* Sends the video behind the content */
}

/* Global Styles */
html, body {
    height: 100%; /* Ensure the body takes full height */
    margin: 0; /* Remove default margin */
}

/* Flexbox on Body */
body {
    display: flex;
    flex-direction: column; /* Stack children vertically */
}

/* Main Content */
.hero {
    flex: 1; /* Allow the hero section to grow and fill available space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    position: relative; /* Position relative for absolute children */
    text-align: center;
}

/* Background Video Styling */
.background-video {
    position: fixed; /* Fixed position to cover the entire background */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire background */
    z-index: -1; /* Sends the video behind the content */
}

/* Hero Content */
.hero-content {
    position: relative; /* Position relative to allow stacking over the video */
    z-index: 1; /* Ensure content is above the video */
    align-items: center;
}


/* Footer Styling*/
.footer-content {
    background-color: #222;
    padding: 15px;
    text-align: center;
    position: relative;
    display: flex;
    
}

.footer-content-copyright {
    color: #fff;
    font-family: 'DicotMedium Regular';
    font-size: 16pt;
    margin: 0 auto;
    

}

.footer-content-creator {
    color: red;
    font-family: 'DicotMedium Regular';
    font-size: 12pt;
}


.hero-content h2 {
    font-size: 24pt;
    color: #fff;
    font-family: 'DicotMedium Regular';
    text-shadow: 0 4px 8px #fff;
    margin-top: 100px ;
}

.hero-content p {
    color: #fff;
    font-family: 'DicotMedium Regular';
    text-shadow: 0 4px 8px #fff;
    margin-top: 100px ;
    font-size: 20pt;
    margin-top: 100px ;
}
/* Hero Button Styling */
.hero-button {
    padding: 10px 20px;
    background-color: #EB268F;
    color: white;
    font-size: 14pt;
    font-family: 'DicotMedium Regular';
    border-radius: 5px;
    border: none;
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Make it behave like a button */
    transition: background-color 0.3s;
    margin-top: 200px; 
}

.hero-button:hover {
    background-color: #EB268F; /* Change color on hover */
    box-shadow: 0 8px 16px #EB268F; /* Change border color on hover */
}

.about img{
    width: 20%;
    margin: 5%;
    border-radius: 10px;
}
/* Responsive Gallery and Services */
.gallery img,
.services img {
    width: 45%;
    margin: 5px;
    border-radius: 10px;
}

.contact-info li {
    margin: 5px 0;
}




/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Hidden by default for smaller screens */
        flex-direction: column;
    }

    .hamburger {
        display: block; /* Show hamburger button on small screens */
    }

    nav ul.active {
        display: flex; /* Show the menu when active */
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Admin Styles */
.admin-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Space between buttons */
    justify-content: center; /* Center align */
}

.admin-links li {
    margin: 0; /* Remove unnecessary vertical spacing */
}

.admin-links a {
    text-decoration: none;
    color: #00AFF0; /* Primary button color */
    font-size: 14pt;
    font-family: 'Valken Regular';
    padding: 10px 18px; /* Add padding for a button-like appearance */
    border: 2px; /* Add border for better visibility */
    border-radius: 5px; /* Rounded corners */
    background-color: #111111; /* White background */
    transition: all 0.3s ease-in-out; /* Smooth hover transition */
    box-shadow: 0 8px 24px #00AFF0;
}

.admin-links a:hover {
    text-decoration: none; /* Prevent underline on hover */
    background-color: #fff; /* Button color on hover */
    color: #EB268F; /* Text color on hover */
    box-shadow: 0 8px 24px #EB268F;
}

.hero-button:focus {
    outline: 2px dashed #ff0055; /* Add focus outline */
}

.admin-heading {
    text-align: center;
    margin-bottom: 20px;
}

.admin-heading h1 {
    text-align: center;
    margin-bottom: 20px 20px;
    font-size: 45pt;
}

.admin-heading p {
    text-align: center;
    margin-bottom: 20px 20px;
    font-size: 20pt;
}

.admin-heading span {
    color: #EB268F;
    font-size: 24pt;
    font-style: italic;
    font-family: 'Back To Black Demo';
}

/* Contact Page Styling */
.contact-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px #EB268F;
    border: 2px;
}

.contact-header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-header h2 {
    color: #EB268F;
    font-size: 24pt;
    margin: 20px 20px;
    padding-top: 20px;
}

.contact-header p {
    color: #EB268F;
    font-size: 18pt;
}

.contact-details .contact-info  {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.contact-details .contact-info li {
    margin: 10px 0;
    font-size: 14pt;
    color: #EB268F;
}

.contact-details .contact-info a {
    font-size: 14pt;
    color: #EB268F;
    text-decoration: none;
    display: flex;
    margin: 0 auto ;
    width: 100%;
    justify-content: center;
    
}

.contact-details .contact-info a:hover {
    color: #EB268F;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16pt;
    font-family: 'DicotMedium Regular';

}

.contact-details .contact-info li strong {
    color: #00AFF0;
    font-size: 16pt;
}

.contact-form {
    margin-top: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    color: #EB268F;
    margin-bottom: 5px;
    font-size: 14pt;
    padding: 10px 10px;
}

.contact-form input {
    width: 80%;
    height: 40px;
    padding: 10px;
    font-size: 1rem;
    border: 1px;
    box-shadow: 0 8px 24px #EB268F;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #111111 ;
    color: #fff;
}

.contact-form textarea{
    width: 80%;
    height: 80px;
    padding: 10px;
    font-size: 1rem;
    border: 1px;
    box-shadow: 0 8px 24px #EB268F;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #111111 ;
    color: #fff;
}

.contact-form button {
    background-color: #00AFF0;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14pt;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: #EB268F;
    color: #fff;
}

.thank-you {
    margin-top: 20px;
    color: green;
    font-weight: bold;
    text-align: center;
}

/* About Page Styling */
.about-section {
    max-width: 800px;
    margin: 20px auto; /* Centered layout */
    padding: 20px;
    background-color: #1a1a1a; /* White background for clarity */
    border-radius: 10px; /* Soft rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    box-shadow: 0 8px 24px #EB268F;
}

.external-link a{
    text-decoration: none;
    color: #EB268F;
    font-size: 18pt;
    margin-bottom: 10px;
}

.external-link a:hover{
    text-decoration: underline;
    color: #00AFF0;
    font-size: 20pt;
    transition: color 0.3s ease;
    font-family: 'DicotMedium Regular';
    font-weight: bold;
    margin-bottom: 10px;
}

.about-section h2 {
    font-size: 45pt;
    color: #EB268F; /* Dark gray text */
    margin-bottom: 15px;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Back To Black Demo';
    text-shadow: 0 8px 16px #EB268F;
}

.about-section p {
    font-size: 20pt;
    line-height: 1.6;
    color: #fff; /* Medium gray for secondary text */
    margin-bottom: 15px;
    font-family: 'DicotMedium Regular';
    text-shadow: 0 8px 16px #fff;
}

.about-section strong {
    color: #00AFF0; /* Accent blue for emphasis */
    text-shadow: 0 8px 16px #00AFF0;
}

.about-image {
    margin-top: 20px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

/* Login Page Styling */
.login-section {
    max-width: 800px;
    margin: 50px auto; /* Centered layout */
    padding: 20px;
    border: 1px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow for depth */
    text-align: center;
}

.login-section h2 {
    font-size: 30pt;
    color: #EB268F; 
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between form elements */

}

.login-form label {
    font-size: 20pt;
    color: #00AFF0; /* Medium gray for labels */
    text-align: left;
    text-decoration: underline;

}

.login-form input {
    width: 100%;
    padding: 10px;
    background-color: #111111;
    color: #fff; /* White text */
    font-size: 18pt;
    border: 2px; /* Light border */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow */
    box-sizing: border-box; /* Maintain consistent sizing */
}



.login-form button {
    padding: 10px 13px;
    font-size: 16pt;
    
    margin-top: 25px;
    font-family: 'Valken Regular';
    width: 15%;
    color: #fff; /* White text */
    background-color: #111111;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-left: 340px;
    border: 2px;
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow */
    
}

.login-form button:hover {
    background-color: #00AFF0; /* Pink shade on hover */
    box-shadow: 0 8px 24px #00AFF0; /* Subtle shadow */
}

.login-form a {
    color: #00AFF0; /* Unique link color */
    text-decoration: none;
    font-weight: bold;
    
    font-size: 14pt;
}

.login-form a:hover {
    text-decoration: none;
    font-size: 16pt;
    font-weight: bold;
    color: #EB268F;
    box-shadow: 0 4px 16px #EB268F;
    border-radius: 10px;
    border: 2px;
}

.login-form p {
    font-size: 15pt;
    color: #fff; /* Light gray text */
    margin-top: 10px;
    font-style: italic;

}



/* Sign Up Page Styling */
.signup-section {
    max-width: 800px;
    margin: 50px auto; /* Centered layout */
    padding: 20px;
    border: 1px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow for depth */
    text-align: center;
}

.signup-section h2 {
    font-size: 30pt;
    color: #EB268F; 
    margin-bottom: 20px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between form elements */
}

.signup-form label {
    font-size: 20pt;
    color: #00AFF0; /* Medium blue for labels */
    text-align: left;
    text-decoration: underline;
}

.signup-form input {
    width: 100%;
    padding: 10px;
    background-color: #111111;
    color: #fff; /* White text */
    font-size: 18pt;
    border: 2px; /* Light border */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow */
    box-sizing: border-box; /* Maintain consistent sizing */
}

.signup-form input::placeholder {
    color: #757575; /* Light gray placeholder text */
}

.signup-form button {
    padding: 10px 13px;
    font-size: 16pt;
    
    margin-top: 25px;
    font-family: 'Valken Regular';
    width: 15%;
    color: #fff; /* White text */
    background-color: #111111;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-left: 340px;
    border: 2px;
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow */
}

.signup-form button:hover {
    background-color: #00AFF0; /* Pink shade on hover */
    box-shadow: 0 8px 24px #00AFF0; /* Subtle shadow */
}



.signup-form a {
    color: #00AFF0; /* Unique link color */
    text-decoration: none;
    font-weight: bold;
    
    font-size: 14pt;
}

.signup-form a:hover {
    text-decoration: none;
    font-size: 16pt;
    font-weight: bold;
    color: #EB268F;
    box-shadow: 0 4px 16px #EB268F;
    border-radius: 10px;
    border: 2px;
}

.signup-form p {
    font-size: 15pt;
    color: #fff; /* Light gray text */
    margin-top: 10px;
    font-style: italic;

}

/* Manage Users Page */
/* General Body Styling */
.ms-body {
    font-family: 'Black To Black Demo';
    margin: 0;
    padding: 0;
    background-color: #111111; /* Unique background color */
    color: #f0f0f0; /* Slightly lighter text for contrast */
    font-size: 14pt;
}

/* Main Container */
.ms-main {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #111111; /* Unique container background */
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
    text-align: center;
}

/* Headings */
.ms-main h1 {
    font-size: 30pt;
    color: #00AFF0; /* Unique heading color */
    margin-bottom: 20px;
    font-family: 'Black To Black Demo';
    text-align: center;
}

.ms-main h2, .ms-main h3 {
    font-size: 20pt;
    color: #fff; /* Unique heading color */
    margin-bottom: 20px;
    font-family: 'Black To Black Demo';
}

/* Links and Buttons */
.ms-link {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #111111;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ms-button {
    display: inline-block;
    border: none;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #00AFF0; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #00AFF0;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ms-button-action {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #111111;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ms-button-action-users{
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #111111;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ms-button-action-users:hover {
    background-color: #EB268F; /* Unique button hover effect */
    box-shadow: 0 4px 24px #EB268F;
}

.ms-button-action:hover {
    background-color: #EB268F; /* Unique button hover effect */
    box-shadow: 0 4px 24px #EB268F;
}

.ms-return-link:hover {
    background-color: #00AFF0; /* Unique hover effect */
    box-shadow: 0 4px 24px #00AFF0;
}

.ms-button:hover {
    background-color: #EB268F; /* Unique hover effect */
    box-shadow: 0 4px 24px #EB268F;
}

/* Message Container */
.ms-message-container {
    background-color: #2b2b2b;
    color: #00AFF0;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    text-align: center;
}

/* Table Styles */
.ms-users-table-wrapper {
    max-height: 450px;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
    margin: 0 auto;
    background-color: #2b2b2b;
}

.ms-users-table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%; /* Ensures table spans full wrapper */
    color: #fff;
}

.ms-users-table th, .ms-users-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #3a3a3a;
    overflow: hidden; /* Prevent content overflow */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.button-reset{
    display: inline-block;
    border: none;
    margin: 0 auto;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #111111;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100px;
}

.button-reset:hover{
    display: inline-block;
    border: none;
    margin: 0 auto;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #EB268F; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100px;
}

.ms-users-table th {
    background-color: #111111;
    color: #ffffff;
    font-family: 'Back To Black Demo';
    text-align: left;
    box-shadow: 0 8px 24px #EB268F;
}

.ms-users-table tr:nth-child(even) {
    background-color: #3a3a3a;
}

.ms-users-table img {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Scrollable Table Body */
#users-table-body {
    max-height: 450px;
    overflow-y: auto;
    background-color: #2b2b2b;
}

.ms-users-table-wrapper::-webkit-scrollbar {
    width: 20px;
}

.ms-users-table-wrapper::-webkit-scrollbar-track {
    background-color: #111111;
}

.ms-users-table-wrapper::-webkit-scrollbar-thumb {
    background-color: #00AFF0;
    border-radius: 5px;
}

.ms-users-table-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #EB268F;
}

/* Form Styles */
.ms-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    background-color: #2b2b2b; /* Unique form background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
}

.ms-form label {
    font-size: 14pt;
    color: #00AFF0;
    text-decoration: underline;
    text-align: left;
}

.ms-form input[type="text"],
.ms-form input[type="file"] {
    padding: 10px;
    font-size: 14pt;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.ms-form button {
    align-self: center;
}

/* Modal Overlay */
.ms-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark transparent background */
    z-index: 998; /* Ensure it's below the modal */
}

/* Modal Content */
.ms-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    
    padding: 20px;
    border-radius: 10px;
    
    z-index: 999; /* Above the overlay */
    text-align: center;
}

.ms-modal input[type="text"],
.ms-modal input[type="email"] {
    padding: 10px;
    font-size: 14pt;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);

}

#ms-editUserModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    
    padding: 20px;
    border-radius: 10px;
    
    z-index: 1000;
    text-align: center;
}

#ms-editUserModal img {
    margin: 10px auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}



/* Manage Services Page */
/* General Body Styling */
.ms-body {
    font-family: 'Black To Black Demo';
    margin: 0;
    padding: 0;
    font-size: 14pt;
    background-color: #111111; /* Unique background color */
    color: #f0f0f0; /* Slightly lighter text for contrast */
}

/* Main Container */
.ms-main {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #111111; /* Unique container background */
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
    text-align: center;
}

/* Headings */
.ms-main h1 {
    font-size: 30pt;
    color: #00AFF0; /* Unique heading color */
    margin-bottom: 20px;
    font-family: 'Black To Black Demo';
    text-align: center;

}

.ms-main h2, .ms-main h3 {
    font-size: 20pt;
    color: #fff; /* Unique heading color */
    margin-bottom: 20px;
    font-family: 'Black To Black Demo';
}

/* Links and Buttons */
.ms-link {
    display: inline-block;
    border: none;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ms-button {
    display: inline-block;
    border: none;
    margin: 10px 0 ;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #00AFF0; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #00AFF0;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
}

.ms-button-action-services{
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #111111;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
}

.ms-button-action-services:hover{
    background-color: #EB268F; /* Unique button color */
    box-shadow: 0 4px 24px #EB268F;
}

.ms-return-link:hover{
    background-color: #00AFF0; /* Unique hover effect */
    box-shadow: 0 4px 24px #00AFF0;
}

.ms-button:hover {
    background-color: #EB268F; /* Unique hover effect */
    box-shadow: 0 4px 24px #EB268F;
}
/* Message Container */
.ms-message-container {
    background-color: #1a1a1a;
    color: #1E90FF;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    text-align: center;
}

/* Table Styles */
.ms-services-table-wrapper {
    max-height: 450px;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
    margin: 0 auto;
    background-color: #2b2b2b;
}

.ms-services-table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%; /* Ensures table spans full wrapper */
    color: #fff;
}

.ms-services-table th, .ms-services-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #3a3a3a;
    overflow: hidden; /* Prevent content overflow */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ms-services-table th {
    background-color: #111111;
    color: #ffffff;
    font-family: 'Back To Black Demo';
    text-align: left;
    box-shadow: 0 8px 24px #EB268F;
}

.ms-services-table tr:nth-child(even) {
    background-color: #3a3a3a;
}

.ms-services-table img {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Scrollable Table Body */
#services-table-body {
    max-height: 450px;
    overflow-y: auto;
    background-color: #2b2b2b;
}

.ms-services-table-wrapper::-webkit-scrollbar {
    width: 20px;
}

.ms-services-table-wrapper::-webkit-scrollbar-track {
    background-color: #111111;
}

.ms-services-table-wrapper::-webkit-scrollbar-thumb {
    background-color: #00AFF0;
    border-radius: 5px;
}

.ms-services-table-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #EB268F;
}




/* Form Styles */
.ms-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    background-color: #2b2b2b; /* Unique form background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
}

.ms-form label {
    font-size: 16pt;
    color: #00AFF0;
    text-decoration: underline;
    text-align: left;
}

.ms-form textarea{
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    
    font-size: 14pt;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    resize: none;
}

.ms-form select {
    padding: 10px;
    font-size: 14pt;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);

}

.ms-form option {
    padding: 10px;
    font-size: 14pt;
    border-radius: 5px;
    background-color: #222222;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 8px #222222;

}


.ms-form input[type="text"],
.ms-form input[type="file"],
.ms-form input[type="number"] {
    padding: 10px;
    font-size: 14pt;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.ms-form button {
    align-self: center;
}

/* Modal Overlay */
.ms-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark transparent background */
    z-index: 998; /* Ensure it's below the modal */
}

/* Modal Content */
.ms-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    
    padding: 20px;
    border-radius: 10px;
    
    z-index: 999; /* Above the overlay */
    text-align: center;
}

#ms-editServiceModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    
    padding: 20px;
    border-radius: 10px;
    
    z-index: 1000;
    text-align: center;
}

#ms-editServiceModal img {
    margin: 10px auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.ms-filters-services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #111111;
    padding: 20px 20px;
    border: 1px;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 8px 16px #EB268F;
    padding-top: 20px;
    padding-bottom: 30px;
    width: 85%;
}

.ms-filters-services label {
    font-family: 'Black To Black Demo';
    font-size: 16pt;
    color: #fff;
    padding: 20px 10px;
    font-weight: bold;
}

.ms-filters-services select {
    font-family: 'Black To Black Demo';
    font-size: 16pt;
    color: #fff;
    padding: 10px 10px;
    font-weight: bold;
    background-color: #222;
    border-radius: 5px;
    border: 1px;
    
}

.ms-filters-services option {
    font-family: 'Black To Black Demo';
    font-size: 16pt;
    color: #fff;
    padding: 10px 10px;
    font-weight: bold;
    background-color: #222;
    border-radius: 5px;
    border: 1px;
    
}

.ms-filters-services input {
    display: flex;
    font-family: 'Black To Black Demo';
    font-size: 16pt;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
    width: 250px;
    height: 30px;
    color: #fff;
    background-color: #1a1a1a;
    border: none;
    margin-top: 10px;
    
}

.ms-filters-services button {
    font-family: 'Black To Black Demo';
    font-size: 14pt;
    color: #fff;
    width: 60px;
    padding: 5px 3px;
    margin-left: 40px;
    height: 40px;
    font-weight: bold;
    background-color: #00AFF0;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0 4px 8px #00AFF0;
}

.ms-filter-button {
    font-family: 'Black To Black Demo';
    font-size: 16pt;
    color: #EB268F;
    padding: 10px 10px;
    font-weight: bold;
    background-color: #2B2B2B;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0 8px 16px #EB268F;
    margin: 0 auto;
}

.ms-filter-button label {
    font-family: 'Black To Black Demo';
    font-size: 16pt;
    color: #fff;
    padding-bottom: 10px;
    font-weight: bold;
   
}

.ms-filter-button button {
    font-family: 'Black To Black Demo';
    font-size: 14pt;
    color: #fff;
    background-color: #00AFF0;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0 4px 8px #00AFF0;
    margin: 0 auto;
}

.ms-filter-button button:hover {
    background-color: #EB268F;
    box-shadow: 0 4px 8px #EB268F;
}

/*Manage Gallery Page*/
.ms-body {
    font-family: 'Black To Black Demo';
    margin: 0;
    padding: 0;
    font-size: 14pt;
    background-color: #111111; /* Unique background color */
    color: #f0f0f0; /* Slightly lighter text for contrast */
}

/* Main Container */
.ms-main {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1a1a1a; /* Slightly darker container background */
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
    text-align: center;
}

/* Headings */
.ms-main h1 {
    font-size: 30pt;
    color: #00AFF0; /* Unique heading color */
    margin-bottom: 20px;
    font-family: 'Black To Black Demo', sans-serif;
}

.ms-main h2, .ms-main h3 {
    font-size: 20pt;
    color: #ffffff; /* Consistent color */
    margin-bottom: 20px;
    font-family: 'Black To Black Demo', sans-serif;
}

/* Links and Buttons */
.ms-link {
    display: inline-block;
    border: none;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Matches container */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ms-button {
    display: inline-block;
    border: none;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #00AFF0; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #00AFF0;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ms-button-action-gallery {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Action button */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #111111;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ms-return-link:hover {
    background-color: #00AFF0;
    box-shadow: 0 4px 24px #00AFF0;
}

.ms-button:hover {
    background-color: #EB268F;
    box-shadow: 0 4px 24px #EB268F;
}

.ms-button-action-gallery:hover {
    background-color: #EB268F; /* Matches container */
    box-shadow: 0 4px 24px #EB268F;
}

/* Message Container */
.ms-message-container {
    background-color: #2b2b2b;
    color: #00AFF0;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    text-align: center;
}


/* Table Styles */
.ms-gallery-table-wrapper {
    max-height: 450px;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
    margin: 0 auto;
    background-color: #2b2b2b;
}

.ms-gallery-table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%; /* Ensures table spans full wrapper */
    color: #fff;
}

.ms-gallery-table th, .ms-gallery-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #3a3a3a;
    overflow: hidden; /* Prevent content overflow */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ms-gallery-table th {
    background-color: #111111;
    color: #ffffff;
    font-family: 'Back To Black Demo';
    text-align: left;
    box-shadow: 0 8px 24px #EB268F;
}

.ms-gallery-table tr:nth-child(even) {
    background-color: #3a3a3a;
}

.ms-gallery-table img {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Scrollable Table Body */
#gallery-table-body {
    max-height: 450px;
    overflow-y: auto;
    background-color: #2b2b2b;
}

.ms-gallery-table-wrapper::-webkit-scrollbar {
    width: 20px;
}

.ms-gallery-table-wrapper::-webkit-scrollbar-track {
    background-color: #111111;
}

.ms-gallery-table-wrapper::-webkit-scrollbar-thumb {
    background-color: #00AFF0;
    border-radius: 5px;
}

.ms-gallery-table-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #EB268F;
}

/* Form Styles */
.ms-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    background-color: #1a1a1a; /* Matches container */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
}

.ms-form label {
    font-size: 14pt;
    color: #00AFF0;
    text-decoration: underline;
    text-align: left;
}

.ms-form input[type="text"],
.ms-form input[type="file"] {
    padding: 10px;
    font-size: 14pt;
    border-radius: 5px;
    background-color: #2b2b2b; /* Matches form background */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Modal Overlay */
.ms-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark transparent background */
    z-index: 998; /* Behind the modal */
}

/* Modal Content */
.ms-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    
    padding: 20px;
    border-radius: 10px;
    
    z-index: 999; /* Above the overlay */
    text-align: center;
}

/* General Styling */
.ms-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #111111;
    padding-top: 10px;
    border: 1px;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 8px 16px #EB268F;
    
    width: 98%;
}

.ms-filters label {
    font-family: 'Black To Black Demo';
    font-size: 16pt;
    color: #fff;
    padding: 20px 10px;
    font-weight: bold;
}

.ms-filters select {
    font-family: 'Black To Black Demo';
    font-size: 16pt;
    color: #EB268F;
    padding: 10px 10px;
    font-weight: bold;
    background-color: #222;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0 4px 8px #EB268F;
}

.ms-filters option {
    font-family: 'Black To Black Demo';
    font-size: 16pt;
    color: #EB268F;
    padding: 10px 10px;
    font-weight: bold;
    background-color: #222;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0 4px 8px #EB268F;
}

.ms-filters input {
    display: flex;
    font-family: 'Black To Black Demo';
    font-size: 16pt;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
    width: 250px;
    height: 30px;
    color: #EB268F;
    background-color: #111111;
    box-shadow: 0 8px 16px #EB268F;
}

.ms-filters button {
    font-family: 'Black To Black Demo';
    font-size: 14pt;
    color: #fff;
    width: 60px;
    padding: 5px 3px;
    margin-top: 20px;
    height: 40px;
    font-weight: bold;
    background-color: #00AFF0;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0 4px 8px #00AFF0;
}


/* Manage Categories */
/* Table Styles */
.ms-categories-table-wrapper {
    max-height: 450px;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
    margin: 0 auto;
    background-color: #2b2b2b;
}

.ms-categories-table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%; /* Ensures table spans full wrapper */
    color: #fff;
}

.ms-categories-table th, .ms-categories-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #3a3a3a;
    overflow: hidden; /* Prevent content overflow */
    text-overflow: ellipsis;
    white-space: nowrap;
    
}

.ms-categories-table th {
    background-color: #111111;
    color: #ffffff;
    font-family: 'Back To Black Demo';
    text-align: left;
    box-shadow: 0 8px 24px #EB268F;
    
    
}



.ms-categories-table tr:nth-child(even) {
    background-color: #3a3a3a;
}

.ms-categories-table img {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Scrollable Table Body */
#categories-table-body {
    max-height: 450px;
    overflow-y: auto;
    background-color: #2b2b2b;
}

.ms-categories-table-wrapper::-webkit-scrollbar {
    width: 20px;
}

.ms-categories-table-wrapper::-webkit-scrollbar-track {
    background-color: #111111;
}

.ms-categories-table-wrapper::-webkit-scrollbar-thumb {
    background-color: #00AFF0;
    border-radius: 5px;
}

.ms-categories-table-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #EB268F;
}

.ms-clear-button {
    display: inline-block;
    text-decoration: none;
    background-color: #111111;
    box-shadow: 0 4px 8px #111111;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    width: 100px;
    margin: 0 auto;
}
.ms-clear-button:hover {
    background-color: #EB268F;
    box-shadow: 0 4px 8px #EB268F;
}




/*  Manage Testimonials */
/* General Body Styling */
.ms-body {
    font-family: 'Black To Black Demo';
    margin: 0;
    padding: 0;
    font-size: 14pt;
    background-color: #111111; /* Unique background color */
    color: #f0f0f0; /* Slightly lighter text for contrast */
}

/* Main Container */
.ms-main {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #111111; /* Unique container background */
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
    text-align: center;
}

/* Headings */
.ms-main h1 {
    font-size: 30pt;
    color: #00AFF0; /* Unique heading color */
    margin-bottom: 20px;
    font-family: 'Black To Black Demo';
    text-align: center;
}

.ms-main h2, .ms-main h3 {
    font-size: 20pt;
    color: #fff; /* Unique heading color */
    margin-bottom: 20px;
    font-family: 'Black To Black Demo';
}

/* Links and Buttons */
.ms-link {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    border: none;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #111111;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ms-return-link {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #00AFF0;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ms-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    border: none;
    color: #ffffff;
    background-color: #00AFF0; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #00AFF0;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ms-button-action-cancel {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #111111;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.ms-button-action-cancel:hover {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #EB268F; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ms-button-action-testimonials{
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #111111;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ms-button-action-testimonials:hover {
    background-color: #EB268F; /* Unique button hover effect */
    box-shadow: 0 4px 24px #EB268F;
}

.ms-button-action:hover {
    background-color: #EB268F; /* Unique button hover effect */
    box-shadow: 0 4px 24px #EB268F;
}

.ms-link:hover {
    background-color: #EB268F; /* Unique hover effect */
    box-shadow: 0 4px 24px #EB268F;
}

.ms-button:hover {
    background-color: #EB268F; /* Unique hover effect */
    box-shadow: 0 4px 24px #EB268F;
}

/* Message Container */
.ms-message-container {
    background-color: #2b2b2b;
    color: #00AFF0;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    text-align: center;
    
}

/* sort */
.ms-sort-form{
    margin: 0 auto;
    width: 400px;
    border-radius: 10px;
    background-color: #222222;
    box-shadow: 0 8px 24px #EB268F;
}

.ms-sort-form label{
    color: #00AFF0;
    font-size: 16pt;
    font-family: 'Black To Black Demo';
    
}

.ms-sort-form select{
    margin: 0 auto;
    width: 100px;
    height: 30px;
    color: #fff;
    display: inline-block;
    border-radius: 10px;
    background-color: #333;
    margin: 15px 15px 0 auto;
    font-family: 'Black To Black Demo';
    font-size: 12pt;
    border: none;
    text-align: center;
}







.test-reset-button{
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    border: none;
    color: #ffffff;
    background-color: #111111; /* Unique button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #111111;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.test-reset-button:hover {
    background-color: #EB268F; /* Unique button hover effect */
    box-shadow: 0 4px 24px #EB268F;
}

/* Table Styles */
.ms-testimonials-table-wrapper {
    max-height: 450px;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
    margin: 0 auto;
    background-color: #2b2b2b;
}

.ms-testimonials-table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%; /* Ensures table spans full wrapper */
    color: #fff;
}

.ms-testimonials-table th, .ms-testimonials-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #3a3a3a;
    overflow: hidden; /* Prevent content overflow */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ms-testimonials-table th {
    background-color: #111111;
    color: #ffffff;
    font-family: 'Back To Black Demo';
    text-align: left;
    box-shadow: 0 8px 24px #EB268F;
}

.ms-testimonials-table tr:nth-child(even) {
    background-color: #3a3a3a;
}

.ms-testimonials-table img {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Scrollable Table Body */
#testimonials-table-body {
    max-height: 450px;
    overflow-y: auto;
    background-color: #2b2b2b;
}

.ms-testimonials-table-wrapper::-webkit-scrollbar {
    width: 20px;
}

.ms-testimonials-table-wrapper::-webkit-scrollbar-track {
    background-color: #111111;
}

.ms-testimonials-table-wrapper::-webkit-scrollbar-thumb {
    background-color: #00AFF0;
    border-radius: 5px;
}

.ms-testimonials-table-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #EB268F;
}

/* Form Styles */
.ms-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    background-color: #2b2b2b; /* Unique form background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
}

.ms-form label {
    font-size: 14pt;
    color: #00AFF0;
    text-decoration: underline;
    text-align: left;
}

.ms-form input[type="text"],
.ms-form input[type="file"] {
    padding: 10px;
    font-size: 14pt;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.ms-form button {
    align-self: center;
}

/* Modal Overlay */
.ms-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark transparent background */
    z-index: 998; /* Ensure it's below the modal */
}

/* Modal Content */
.ms-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    
    padding: 20px;
    border-radius: 10px;
    
    z-index: 999; /* Above the overlay */
    text-align: center;
}

#editTestimonialModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    
    padding: 20px;
    border-radius: 10px;
    
    z-index: 1000;
    text-align: center;
}


/*Services Page*/
.services-container {
    padding: 20px;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    border: none;
    border-radius: 8px;
    width: 300px;
    padding: 15px;
    box-shadow: 0 4px 8px #00AFF0;
    text-align: left;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.service-details h3 {
    margin: 10px 0;
    font-size: 18pt;
    color: #fff;
    font-family: 'DicotMedium Regular';
    
}

.service-category {
    margin: 5px 0;
    color: #EB268F;
    font-size: 15pt;
    font-family: 'DicotMedium Regular';
}

.service-price{
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
    color: #28a745;
    
    margin-bottom: 20px;
}

/*Filters Styles*/
.filters-services {
    display: inline-block;
    background-color: #111111;
    padding: 40px 20px;
    gap: 40px;
    
    
}
.filter-sort-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: 'DicotMedium Regular';
}

.filter-container{
    margin: 0 auto;
    
}

.filters-services label {
    font-family: 'DicotMedium Regular';
    font-size: 16pt;
    color: #fff;
    padding: 20px 10px;
    font-weight: bold;
}

.filters-services select {
    font-family: 'DicotMedium Regular';
    font-size: 16pt;
    color: #fff;
    padding: 10px 10px;
    font-weight: bold;
    background-color: #222;
    border-radius: 5px;
    border: 1px;
    
}

.filters-services option {
    font-family: 'DicotMedium Regular';
    font-size: 16pt;
    color: #fff;
    padding: 10px 10px;
    font-weight: bold;
    background-color: #222;
    border-radius: 5px;
    border: 1px;
    
}

.filters-services input {
    display: flex;
    font-family: 'DicotMedium Regular';
    font-size: 16pt;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
    width: 250px;
    height: 30px;
    color: #fff;
    background-color: #1a1a1a;
    border: none;
    margin-top: 10px;
    
}

.filters-services button {
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
    color: #fff;
    width: 60px;
    padding: 5px 3px;
    margin-left: 40px;
    height: 40px;
    font-weight: bold;
    background-color: #00AFF0;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0 4px 8px #00AFF0;
}

.filter-button {
    font-family: 'DicotMedium Regular';
    font-size: 16pt;
    color: #EB268F;
    padding: 10px 10px;
    font-weight: bold;
    background-color: #2B2B2B;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0 8px 16px #00AFF0;
    margin: 0 auto;
}

.filter-button label {
    font-family: 'DicotMedium Regular';
    font-size: 16pt;
    color: #fff;
    padding-bottom: 10px;
   
}

.filter-button input {
    font-family: 'DicotMedium Regular';
    font-size: 16pt;
    color: #fff;
    padding: 10px 10px;
    margin: 0 auto;
    margin-bottom: 20px;
   
}

.search-button-filter {
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
    color: #fff;
    background-color: #00AFF0;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0 4px 8px #00AFF0;
    margin: 0 auto;
    padding: 10px 10px;
}

.filter-button button:hover {
    background-color: #EB268F;
    box-shadow: 0 4px 8px #EB268F;
}

.filter-button-reset{
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
    color: #fff;
    background-color: #111111;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0 4px 8px #111111;
    margin: 0 auto;
    text-decoration: none;
    padding: 10px 10px;
    margin-left: 10px;

}

.filter-button-reset:hover{
    background-color: #EB268F;
    box-shadow: 0 4px 8px #EB268F;
}

.search-container{
    margin-top: 20px;
}

.service-text h2{
    font-family: 'DicotMedium Regular';
    font-size: 40pt;
    color: #00AFF0;
    text-align: center;
    text-shadow: 0px 4px 8px #00AFF0;
    border: 2px;
    box-shadow: 0 24px 60px #00AFF0;
    width: 25%;
    margin: 0 auto;
    height: auto;
    border: 4px solid #00AFF0;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #111111;

}

.service-text p{ 
    font-family: 'DicotMedium Regular';
    font-size: 17pt;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
    margin-bottom: 20px;
    text-shadow: 0px 4px 8px #fff;
}



.get-quote-button{
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
    color: #fff;
    background-color: #00AFF0;
    border-radius: 5px;
    border: none;
    box-shadow: 0 4px 8px #00AFF0;
    margin: 0 auto;
    padding: 10px 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
}

.get-quote-button:hover{
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
    color: #fff;
    background-color: #EB268F;
    border-radius: 5px;
    border: none;
    box-shadow: 0 4px 8px #EB268F;
    margin: 0 auto;
    padding: 10px 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* Gallery Styles */
.gallery-main h2 {
    font-family: 'DicotMedium Regular';
    font-size: 40pt;
    color: #00AFF0;
    text-align: center;
    text-shadow: 0px 4px 8px #00AFF0;
    border: 2px;
    box-shadow: 0 8px 166px #00AFF0;
    width: 25%;
    margin: 0 auto;
    height: auto;
    border: 4px solid #00AFF0;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #111111;
}

.gallery-main p {
    font-family: 'DicotMedium Regular';
    font-size: 18pt;
    color: #fff;
    text-align: center;
    padding: 15px 15px;
    text-shadow: 0px 4px 8px #fff;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.social-links {
    display: inline;
    width: 10px;
    height: auto;
    margin: 0 auto;
}




.link-icon{
    width: 50px;
    height: 50px;
    padding: 10px 20px;
    transition: transform 0.3s ease;
}



.gallery-item {
    flex: 0 0 auto;
    width: 200px;
    height: 200px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    border-color: #333;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    display: block;
    border-radius: 10px;
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal .close:hover {
    color: red;
}


/* testimonials  styles */

/* Headings */
.testimonials-main h2 {
    font-size: 40pt;
    color: #00AFF0; /* Unique heading color */
    font-family: 'DicotMedium Regular';
    text-shadow: 0 4px 8px #00AFF0;
    border: 4px solid #00AFF0;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 25%;
    margin: 0 auto;
    height: auto;
    padding: 15px 15px;
    box-shadow: 0 16px 24px #00AFF0;
}


.testimonials-main h3 {
    font-size: 20pt;
    color: #fff; /* Unique heading color */
    margin-bottom: 20px;
    font-family: 'DicotMedium Regular';
    
}

/* Form Styles */
.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    background-color: #111111; /* Unique form background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px #00AFF0;
}

.testimonial-form label {
    font-size: 14pt;
    color: #00AFF0;
    text-decoration: underline;
    text-align: left;
    font-family: 'DicotMedium Regular';
}

.testimonial-form input[type="text"],
.testimonial-form input[type="file"],
.testimonial-form input[type="number"],
.testimonial-form textarea {
    padding: 10px;
    font-size: 14pt;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    font-family: 'DicotMedium Regular';
}

.testimonial-form button {
    align-self: center;
}

/* Testimonial List Styles */
.testimonials-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 30px 0;
    padding: 20px 15px;
}

.testimonial-item {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 0 8px 16px #00AFF0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px #EB268F;
}

.testimonial-item h4 {
    text-align: left;
    font-size: 18pt;
    color: #EB268F; 
    font-weight: bold;
}

.testimonial-item-content {
    text-align: left;
    line-height: 1.4;
    font-size: 12pt;
    color: #fff; /* Neutral color for text readability */
    font-family: 'DicotMedium Regular';
}

.testimonial-rating {
    margin-top: 25px;
    font-weight: bold;
    font-size: 14pt;
    color: #28a745; /* A green color to signify positive ratings */
    text-align: right;
    font-family: 'DicotMedium Regular';
}

/* High Rating (Green) */
.rating-high {
    color: #28a745; /* Green */
    font-weight: bold;
}

/* Medium Rating (Neutral/Yellow) */
.rating-medium {
    color: #ffc107; /* Yellow */
    font-weight: bold;
}

/* Low Rating (Red) */
.rating-low {
    color: #dc3545; /* Red */
    font-weight: bold;
}

/* Get a Quote Styles */
.quote-main h2{
    font-family: 'DicotMedium Regular';
    font-size: 40pt;
    color: #00AFF0;
    text-align: center;
    text-shadow: 0px 4px 8px #00AFF0;
    border: 2px;
    box-shadow: 0 8px 166px #00AFF0;
    width: 25%;
    margin: 0 auto;
    height: auto;
    border: 4px solid #00AFF0;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #111111;
    margin-top: 20px;
}

.quote-main p {
    font-family: 'DicotMedium Regular';
    font-size: 16pt;
    color: #fff;
    text-align: center;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    background-color: #111111; /* Unique form background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px #00AFF0;
}

.quote-form label {
    font-size: 15pt;
    color: #00AFF0;
    text-decoration: none;
    text-align: left;
    font-family: 'DicotMedium Regular';
    font-weight: bold;
}

.quote-form input[type="text"],
.quote-form input[type="email"]{
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.quote-form textarea{
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    height: 100px; /* Increase height for smaller screens */
}

.quote-form button {
    font-family: 'DicotMedium Regular';
    font-size: 14pt;
    background-color: #00AFF0;
    color: #fff;
    border: none;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 8px 16px #00AFF0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: center;
    margin: 10px 10px;
}

.quote-form button:hover {
    background-color: #EB268F; /* Button color on hover */
    transform: translateY(-3px); /* Subtle hover effect */
    box-shadow: 0 8px 16px #EB268F;
}

/*-------------------------------------------------------------------------------------------------------*/
/* Responsive Design */
@media (max-width: 768px) {
    .admin-links ul {
        width: 100;
        gap: 28px; /* Reduce gap between buttons on smaller screens */
        
    }

    .admin-links a {
        padding: 30px 30px; /* Reduce padding for smaller screens */
        font-size: 10px; /* Slightly smaller font size */
    }
    .admin-links a:hover {
        text-decoration: none; /* Prevent underline on hover */
        background-color: #00AFF0; /* Button color on hover */
        color: #fff; /* Text color on hover */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
    }

    .admin-heading {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .admin-heading h1 {
        text-align: center;
        margin-bottom: 20px 20px;
        font-size: 45pt;
    }
    
    .admin-heading p {
        text-align: center;
        margin-bottom: 20px 20px;
        font-size: 20pt;
    }
    
    .admin-heading span {
        color: #EB268F;
        font-size: 24pt;
        font-style: italic;
        font-family: 'Back To Black Demo';
    }

    .contact-container {
        padding: 10px;
    }

    .contact-header h2 {
        font-size: 20pt;
        color: #EB268F;
        font-family: 'DicotMedium Regular';
    }

    .contact-header p {
        font-size: 14pt;
        color: #EB268F;
        font-family: 'DicotMedium Regular';
        
    }

    .contact-form button {
        background-color: #00AFF0;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
        font-size: 14pt;
        margin-top: 10px;
        width: 100px;
        
    }
    
    .contact-form button:hover {
        background-color: #EB268F;
        color: #fff;
        
    }

    .contact-details .contact-info a {
        font-size: 13pt;
        color: #EB268F;
        text-decoration: none;
        display: flex;
        margin: 0 auto ;
        width: 80%;
        justify-content: center;
        box-shadow: none;
        font-weight: bold;
        
    }
    
    .contact-details .contact-info a:hover {
        color: #EB268F;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 14pt;
        font-family: 'DicotMedium Regular';
    
    }

    .about-section {
        margin-top: 20px;
        text-align: center;
    }

    .about-section h2 {
        font-size: 28pt;
    }

    .about-section p {
        font-size: 1rem;
    }

    .social-links {
        display: inline;
        width: 10px;
        height: auto;
        margin: 0 auto;
    }
    
    .link-icon{
        width: 25px;
        height: 25px;
        padding: 10px 20px;
        transition: transform 0.3s ease;
    }

    .service-text h2{
        font-family: 'DicotMedium Regular';
        font-size: 40pt;
        color: #00AFF0;
        text-align: center;
        text-shadow: 0px 4px 8px #00AFF0;
        border: 2px;
        box-shadow: 0 24px 60px #00AFF0;
        width: 100%;
        margin: 0 auto;
        height: auto;
        border: 4px solid #00AFF0;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        background-color: #111111;
    
    }
    
    .service-text p{ 
        font-family: 'DicotMedium Regular';
        font-size: 17pt;
        color: #fff;
        text-align: center;
        padding: 10px 0;
        margin-top: 40px;
        margin-bottom: 20px;
        text-shadow: 0px 4px 8px #fff;
    }


    /*Filters Styles*/
    .filters-services {
        display: inline-block;
        background-color: #111111;
        padding: 20px 10px;
        gap: 20px;
        
        
    }
    .filter-sort-row{
        
        gap: 10px;
        font-family: 'DicotMedium Regular';
        margin: 0 auto;
    }

    .filter-container{
        margin: 0 auto;
        
    }

    .filters-services label {
        font-family: 'DicotMedium Regular';
        font-size: 14pt;
        color: #fff;
        padding: 10px;
        font-weight: bold;
        
    }

    .filters-services select {
        font-family: 'DicotMedium Regular';
        font-size: 14pt;
        color: #fff;
        padding: 10px 10px;
        font-weight: bold;
        background-color: #222;
        border-radius: 5px;
        border: 1px;
        
    }

    .filters-services option {
        font-family: 'DicotMedium Regular';
        font-size: 16pt;
        color: #fff;
        padding: 10px 10px;
        font-weight: bold;
        background-color: #222;
        border-radius: 5px;
        border: 1px;
        
    }

    .filters-services input {
        display: flex;
        font-family: 'DicotMedium Regular';
        font-size: 16pt;
        align-items: center;
        margin-bottom: 20px;
        justify-content: center;
        width: 250px;
        height: 30px;
        color: #fff;
        background-color: #1a1a1a;
        border: none;
        margin-top: 10px;
        
    }

    .filters-services button {
        font-family: 'DicotMedium Regular';
        font-size: 14pt;
        color: #fff;
        width: 60px;
        padding: 5px 3px;
        margin-left: 40px;
        height: 40px;
        font-weight: bold;
        background-color: #00AFF0;
        border-radius: 5px;
        border: 1px;
        box-shadow: 0 4px 8px #00AFF0;
    }

    .filter-button {
        font-family: 'DicotMedium Regular';
        font-size: 16pt;
        color: #EB268F;
        padding: 10px 10px;
        font-weight: bold;
        background-color: #2B2B2B;
        border-radius: 5px;
        border: 1px;
        box-shadow: 0 8px 16px #00AFF0;
        margin: 0 auto;
    }

    .filter-button label {
        font-family: 'DicotMedium Regular';
        font-size: 16pt;
        color: #fff;
        padding-bottom: 10px;
    
    }

    .filter-button input {
        font-family: 'DicotMedium Regular';
        font-size: 16pt;
        color: #fff;
        padding: 10px 10px;
        margin: 0 auto;
        margin-bottom: 20px;
    
    }

    .search-button-filter {
        font-family: 'DicotMedium Regular';
        font-size: 14pt;
        color: #fff;
        background-color: #00AFF0;
        border-radius: 5px;
        border: 1px;
        box-shadow: 0 4px 8px #00AFF0;
        margin: 0 auto;
        padding: 10px 10px;
    }



    .filter-button button:hover {
        background-color: #EB268F;
        box-shadow: 0 4px 8px #EB268F;
    }

    .filter-button-reset{
        font-family: 'DicotMedium Regular';
        font-size: 14pt;
        color: #fff;
        background-color: #111111;
        border-radius: 5px;
        border: 1px;
        box-shadow: 0 4px 8px #111111;
        margin: 0 auto;
        text-decoration: none;
        padding: 10px 10px;
        margin-left: 10px;

    }

    .filter-button-reset:hover{
        background-color: #EB268F;
        box-shadow: 0 4px 8px #EB268F;
    }

    .search-container{
        margin-top: 20px;
    }

    .sort-container{
        margin-top: 60px;

    }

    .sort-container button {
        font-family: 'DicotMedium Regular';
        font-size: 14pt;
        color: #fff;
        background-color: #00AFF0;
        border-radius: 5px;
        border: none;
        box-shadow: 0 4px 8px #00AFF0;
        margin-top: 20px;
        width: 100px;
        height: 40px;
        
    }

    /* Gallery Styles */
    .gallery-main h2 {
        font-family: 'DicotMedium Regular';
        font-size: 40pt;
        color: #00AFF0;
        text-align: center;
        text-shadow: 0px 4px 8px #00AFF0;
        border: 2px;
        box-shadow: 0 8px 166px #00AFF0;
        width: 100%;
        margin: 0 auto;
        height: auto;
        border: 4px solid #00AFF0;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        background-color: #111111;
    }

    .gallery-main p {
        font-family: 'DicotMedium Regular';
        font-size: 18pt;
        color: #fff;
        text-align: center;
        padding: 15px 15px;
        text-shadow: 0px 4px 8px #fff;
    }

    /* testimonials  styles */

    /* Headings */
    .testimonials-main h2 {
        font-size: 30pt;
        color: #00AFF0; /* Unique heading color */
        font-family: 'DicotMedium Regular';
        text-shadow: 0 4px 8px #00AFF0;
        border: 4px solid #00AFF0;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        width: 90%;
        margin: 0 auto;
        height: auto;
        padding: 15px 15px;
        box-shadow: 0 16px 24px #00AFF0;
    }


    .testimonials-main h3 {
        font-size: 20pt;
        color: #fff; /* Unique heading color */
        margin-bottom: 20px;
        font-family: 'DicotMedium Regular';
        
    }

    /* Form Styles */
    .testimonial-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px auto;
        width: 90%;
        max-width: 400px;
        background-color: #111111; /* Unique form background */
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 8px 24px #00AFF0;
    }

    .testimonial-form label {
        font-size: 14pt;
        color: #00AFF0;
        text-decoration: underline;
        text-align: left;
        font-family: 'DicotMedium Regular';
    }

    .testimonial-form input[type="text"],
    .testimonial-form input[type="file"],
    .testimonial-form input[type="number"],
    .testimonial-form textarea {
        padding: 10px;
        font-size: 14pt;
        border-radius: 5px;
        background-color: #1a1a1a;
        color: #ffffff;
        border: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
        font-family: 'DicotMedium Regular';
    }

    .testimonial-form button {
        align-self: center;
    }

    /* Get a Quote Styles */
    .quote-main h2{
        font-family: 'DicotMedium Regular';
        font-size: 40pt;
        color: #00AFF0;
        text-align: center;
        text-shadow: 0px 4px 8px #00AFF0;
        border: 2px;
        box-shadow: 0 8px 166px #00AFF0;
        width: 100%;
        margin: 0 auto;
        height: auto;
        border: 4px solid #00AFF0;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        background-color: #111111;
        margin-top: 20px;
    }

    .quote-main p {
        font-family: 'DicotMedium Regular';
        font-size: 16pt;
        color: #fff;
        text-align: center;
    }

    .quote-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px auto;
        width: 95%;
        max-width: 400px;
        background-color: #111111; /* Unique form background */
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 8px 24px #00AFF0;
    }

    .quote-form label {
        font-size: 15pt;
        color: #00AFF0;
        text-decoration: none;
        text-align: left;
        font-family: 'DicotMedium Regular';
        font-weight: bold;
    }

    .quote-form input[type="text"],
    .quote-form input[type="email"]{
        font-family: 'DicotMedium Regular';
        font-size: 14pt;
        background-color: #1a1a1a;
        color: #ffffff;
        border: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .quote-form textarea{
        font-family: 'DicotMedium Regular';
        font-size: 14pt;
        background-color: #1a1a1a;
        color: #ffffff;
        border: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
        height: 100px; /* Increase height for smaller screens */
    }

    .quote-form button {
        font-family: 'DicotMedium Regular';
        font-size: 14pt;
        background-color: #00AFF0;
        color: #fff;
        border: none;
        padding: 10px 10px;
        border-radius: 5px;
        cursor: pointer;
        box-shadow: 0 8px 16px #00AFF0;
        transition: background-color 0.3s ease, transform 0.3s ease;
        align-self: center;
        margin: 10px 10px;
        width: 100%;
    }

    .quote-form button:hover {
        background-color: #EB268F; /* Button color on hover */
        transform: translateY(-3px); /* Subtle hover effect */
        box-shadow: 0 8px 16px #EB268F;
    }
    
    .thank-you-main h2{
        font-family: 'DicotMedium Regular';
        font-size: 40pt;
        color: #00AFF0;
        text-align: center;
        text-shadow: 0px 4px 8px #00AFF0;
        border: 2px;
        box-shadow: 0 8px 166px #00AFF0;
        width: 100%;
        margin: 0 auto;
        height: auto;
        border: 4px solid #00AFF0;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        background-color: #111111;
    }

    .thank-you-main p {
        font-family: 'DicotMedium Regular';
        font-size: 16pt;
        color: #28a745;
        text-align: center;
    }

    /* Footer Styling*/
    .footer-content {
        background-color: #222;
        padding: 15px;
        text-align: center;
        position: relative;
        display: inline-block;
        width: 92%;
        
    }

    .footer-content-copyright {
        color: #fff;
        font-family: 'DicotMedium Regular';
        font-size: 12pt;
        margin: 0 auto;
        

    }

    .footer-content-creator {
        color: red;
        font-family: 'DicotMedium Regular';
        font-size: 12pt;
    }

    .logo-link{
        text-decoration: none;
        color: #00AFF0;
        font-size: 28pt;
        font-family: 'DicotMedium Regular';
    
    }
    
    .logo-link:hover{
        color: #00AFF0;
        font-family: 'DicotMedium Regular';
        transition: color 0.3s;
        
    }

/* ------------------------------------------------------------------------------------------- */
    

    /* Login Page Styling */
.login-section {
    width: 290px;
    height: auto;
    margin: 50px auto; /* Centered layout */
    padding: 20px;
    border: 1px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow for depth */
    text-align: center;
}

.login-section h2 {
    font-size: 20pt;
    color: #EB268F; 
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between form elements */

}

.login-form label {
    font-size: 16pt;
    color: #00AFF0; /* Medium gray for labels */
    text-align: left;
    text-decoration: underline;

}

.login-form input {
    width: 100%;
    padding: 10px;
    background-color: #111111;
    color: #fff; /* White text */
    font-size: 14pt;
    border: 2px; /* Light border */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow */
    box-sizing: border-box; /* Maintain consistent sizing */
}



.login-form button {
    padding: 15px 15px;
    font-size: 16pt;
    font-weight: bold;
    margin-top: 25px;
    font-family: 'Back To Black Demo' ;
    width: 100px;
    height: 50px;
    color: #fff; /* White text */
    background-color: #00AFF0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 90px;
    
    border: 2px;
    
}

.login-form button:hover {
    background-color: #EB268F; /* Darker shade on hover */
}

.login-form button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Subtle glow on focus */
}


/* Sign Up Page Styling */
.signup-section {
    width: 280px;
    height: auto;
    margin-left: 30px; /* Centered layout */
    padding: 20px;
    border: 1px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow for depth */
    text-align: center;

}

.signup-section h2 {
    font-size: 20pt;
    color: #EB268F; 
    margin-bottom: 20px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between form elements */
}

.signup-form label {
    font-size: 16pt;
    color: #00AFF0; /* Medium gray for labels */
    text-align: left;
    text-decoration: underline;
}

.signup-form input {
    width: 100%;
    padding: 10px;
    background-color: #111111;
    color: #fff; /* White text */
    font-size: 14pt;
    border: 2px; /* Light border */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow */
    box-sizing: border-box; /* Maintain consistent sizing */
}

.signup-form input::placeholder {
    color: #757575; /* Light gray placeholder text */
}

.signup-form button {
    padding: 15px 15px;
    font-size: 16pt;
    font-weight: bold;
    
    font-family: 'Back To Black Demo' ;
    width: 180px;
    height: 47px;
    color: #fff; /* White text */
    background-color: #00AFF0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 40px;
    
    border: 2px;
}

.signup-form button:hover {
    background-color: #EB268F; /* Pink shade on hover */
}

.signup-form button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Subtle glow on focus */
}


/* User management page styles */
/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111111; /* Matches login page background */
    color: #fff;
}

/* Main Container */


/* Headings */
main h1{
    font-size: 30pt;
    color: #00AFF0;
    margin-bottom: 20px;
    padding: 15px 15px;
    font-family: 'Black To Black Demo';
}
main h2{
    font-size: 24pt;
    color: #fff; /* Consistent with login page h2 color */
    margin-bottom: 15px;
    font-family: 'DiscotMedium Regular';
    text-decoration: underline;
} 
/* Links */
main a {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    color: #fff; /* White text */
    border: 1px;
     /* Consistent button color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 24px #00AFF0; /* Subtle shadow */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

main a:hover {
    background-color: #00AFF0; /* Hover matches login button */
    box-shadow: 0 24px 24px #00AFF0;
}
/* Message Container */
.message-container {
    background-color: #111111; /* Matches the theme */
    color: #00AFF0;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    text-align: center;
    font-family: 'Back To Black Demo';
    font-size: 20pt;
}

/* Table Styles */
table {
    width: 100%;
    
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #111111;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px #00AFF0;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #333;
}

table th {
    background-color: #111111; /* Matches login button color */
    color: #00AFF0;
    font-family: 'Back To Black Demo';
    font-size: 16pt;
    box-shadow: 0 4px 24px #00AFF0;

}

table tr:nth-child(even) {
    background-color: #333333; /* Alternate row color */
}

/* Buttons */
button {
    padding: 8px 15px;
    margin: 0 5px;
    background-color: #EB268F;
    color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #00AFF0;
    box-shadow: 0 24px 24px #00AFF0;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Slightly darker overlay */
}

/* Edit User Modal */
#editUserModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #111111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px #EB268F;
    z-index: 1000;
    width: 400px;
}

#editUserModal h3 {
    margin: 0 0 10px;
    color: #EB268F;
    text-align: center;
}

#editUserModal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#editUserModal label {
    font-size: 16pt;
    color: #fff;
    text-align: left;
    text-decoration: underline;
}

#editUserModal input {
    width: 100%;
    padding: 10px;
    background-color: #111111;
    color: #fff;
    font-size: 14pt;
    border-radius: 5px;
    box-shadow: 0 8px 24px #EB268F;
    border: none;
}

#editUserModal button {
    font-size: 16pt;
    padding: 5px 10px;
    background-color: #111111;
    color: #00AFF0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 50%;
}

#editUserModal button:hover {
    background-color: #EB268F;
    box-shadow: 0 8px 24px #EB268F;
    color: #fff;
}

}


/*-------------------------------------------------------------------------------------------------------*/

@media (max-width: 480px) {
    .admin-links ul {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center align the buttons */
    }

    .admin-links a {
        width: 100%; /* Full-width buttons on mobile */
        text-align: center; /* Center text alignment */
        padding: 12px 0; /* Adjust padding for better appearance */
        font-size: 1em; /* Restore font size for readability */
    }

    .admin-heading {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .admin-heading h1 {
        text-align: center;
        margin-bottom: 20px 20px;
        font-size: 45pt;
    }
    
    .admin-heading p {
        text-align: center;
        margin-bottom: 20px 20px;
        font-size: 20pt;
    }
    
    .admin-heading span {
        color: #EB268F;
        font-size: 24pt;
        font-style: italic;
        font-family: 'Back To Black Demo';
    }

    .contact-container {
        padding: 10px;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-form button {
        width: 100px;
    }
    .about-section {
        padding: 15px;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    footer {
        background-color: #1a1a1a;
        color: #fff;
        text-align: center;
        padding: 10px;
        font-family: 'DicotMedium Regular';
        font-size: 16pt;
        position: sticky;
        margin: 0 auto;
        width: 95%;
    }

    /* Login Page Styling */
.login-section {
    width: 290px;
    height: auto;
    margin: 50px auto; /* Centered layout */
    padding: 20px;
    border: 1px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow for depth */
    text-align: center;
}

.login-section h2 {
    font-size: 20pt;
    color: #EB268F; 
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between form elements */

}

.login-form label {
    font-size: 16pt;
    color: #00AFF0; /* Medium gray for labels */
    text-align: left;
    text-decoration: underline;

}

.login-form input {
    width: 100%;
    padding: 10px;
    background-color: #111111;
    color: #fff; /* White text */
    font-size: 14pt;
    border: 2px; /* Light border */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 8px 24px #EB268F; /* Subtle shadow */
    box-sizing: border-box; /* Maintain consistent sizing */
}



.login-form button {
    padding: 15px 15px;
    font-size: 16pt;
    font-weight: bold;
    margin-top: 25px;
    font-family: 'Back To Black Demo' ;
    width: 100px;
    height: 50px;
    color: #fff; /* White text */
    background-color: #00AFF0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 90px;
    
    border: 2px;
    
}

.login-form button:hover {
    background-color: #EB268F; /* Darker shade on hover */
}

.login-form button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Subtle glow on focus */
}
}
