:root {
    --primary: #2E86C1; /* Blue */
    --secondary: #17A589; /* Green */
    --accent: #F4D03F; /* Yellow */
    --white: #ffffff;
    --black: #333333;
    --navbar-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #ffffff;
    color: var(--black);
    line-height: 1.6;
}

/* Full-Screen Sections */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

.navbar-logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-logo img:hover {
    transform: scale(1.1);
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-item {
    margin-left: 2rem;
    position: relative;
}

.navbar-link {
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 100%;
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--primary);
}

/* Hamburger Menu (Mobile) */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.navbar-toggle-icon {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

.navbar-toggle.active .navbar-toggle-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .navbar-toggle-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .navbar-toggle-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        flex-direction: column;
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .navbar-menu.active {
        transform: translateX(0);
        opacity: 1;
    }

    .navbar-item {
        margin: 0;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

    .navbar-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(46, 134, 193, 0.8), rgba(23, 165, 137, 0.8)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in-out;
}

.logo {
    width: 150px;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInFromTop 1s ease-in-out;
}

.hero-slogan {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideInFromBottom 1s ease-in-out;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    background-color: var(--accent);
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 2s ease-in-out;
}

.cta-button:hover {
    background-color: #f1c40f;
    transform: translateY(-5px);
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    margin: -10px;
}

/* Keyframes for Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    margin: -10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Services Section */
.services {
    background: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    aspect-ratio: 1 / 1; /* Makes the boxes square */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--gray);
}

/* Style for the "View More Services" card */
.service-card.view-more {
    background: var(--primary);
    color: var(--white);
}

.service-card.view-more i {
    color: var(--white);
}

.service-card.view-more h3 {
    color: var(--white);
}

.service-card.view-more p {
    color: var(--light-gray);
}

    /* About Us Section */
    .about-section {
        background-color: var(--white);
        padding: 4rem 2rem;
    }

    .about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        gap: 2rem;
    }

    .about-text {
        flex: 1;
        min-width: 300px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }


    .section-title {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }



    .about-description {
        font-size: 1rem;
        color: var(--black);
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    .about-text:hover .about-description {
        color: var(--gray);
    }

    @keyframes textPop {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .about-text:hover .section-title,
    .about-text:hover .about-description {
        animation: textPop 0.5s ease;
    }

    /* Slideshow */
    .about-slideshow {
        flex: 1;
        min-width: 300px;
        overflow: hidden;
    }

    .slideshow-container {
        position: relative;
    }

    .slide {
        display: none;
    }

    .slide img {
        width: 100%;
        border-radius: 10px;
        display: block;
        height: auto;
    }

    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev:hover, .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from { opacity: 0.4; }
        to { opacity: 1; }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .about-content {
            flex-direction: column;
            align-items: center;
        }

        .about-text, .about-slideshow {
            min-width: 90%;
        }

        .section-title {
            font-size: 1.7rem;
        }

        .about-description {
            font-size: 0.9rem;
        }
    }



/* Gallery Section */
/* Basic Gallery Styles */
.gallery-section {
    width: 90%; /* Adjust as needed */
    max-width: 1200px; /* Optional max-width */
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
    color: #2E86C1;
    font-weight: 600;
    letter-spacing: -1px;
}

/* Gallery Container */
.gallery-container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;

}

/* Gallery Wrapper */
.gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Gallery Images */
.gallery-image {
    width: calc(80% / 3); /* Show 3 images at a time */
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    padding: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Navigation Buttons */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #3498db, #2980b9); /* Blue gradient background */
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Added box-shadow transition */
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */}

.prev-btn:hover,
.next-btn:hover {
    background: linear-gradient(135deg, #2980b9, #3498db); /* Reverse gradient on hover */
    transform: translateY(-50%) scale(1.1); /* Slight scale on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Increase shadow on hover */}

.prev-btn {
    left: 10px; /* Adjust as needed */
}

.next-btn {
    right: 10px; /* Adjust as needed */
}

/* Popup Styles */
.popup-viewer {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark backdrop */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 1000; /* Ensure popup is on top */
}

.close-popup {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #ff4d4d;
}

.popup-image {
    max-width: 90%; /* Adjust as needed */
    max-height: 90%; /* Adjust as needed */
    object-fit: contain; /* Maintain aspect ratio within popup */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-section {
        width: 95%;
        padding: 15px;
    }

    .section-title {
        font-size: 2em;
    }

    .gallery-image {
        width: calc(100% / 2); /* Show 2 images at a time on smaller screens */
    }

    .prev-btn,
    .next-btn {
        padding: 10px;
        font-size: 18px;
    }

    .close-popup {
        font-size: 30px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        width: 100%; /* Show 1 image at a time on very small screens */
    }

    .prev-btn,
    .next-btn {
        padding: 8px;
        font-size: 16px;
    }

    .close-popup {
        font-size: 24px;
        top: 10px;
        right: 10px;
    }
}

/* Optional: Add a subtle gradient overlay on hover */
.gallery-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image:hover::after {
    opacity: 1;
}


        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin: 0.5rem 0;
            border: none;
            border-radius: 5px;
            transition: transform 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            transform: scale(1.02);
        }

        .contact-form button {
            background: var(--accent);
            color: var(--black);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .contact-form button:hover {
            transform: scale(1.1);
        }

        /* Footer */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }

        .footer a {
            color: var(--accent);
            text-decoration: none;
        }



/* Admin Navbar */
.admin-navbar {
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-navbar .navbar-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-navbar .navbar-logo img {
    height: 40px;
}

.admin-navbar h1 {
    margin-left: 1rem;
    font-size: 1.5rem;
}

/* Admin Dashboard */
.admin-navbar {
    background-color: #fff; /* White navbar background */
    padding: 1.5rem; /* Increased padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee; /* Subtle bottom border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Very subtle shadow */
}

.admin-navbar h2 {
    font-size: 1.8rem; /* Slightly larger heading */
    color: #333;
    font-weight: 600; /* Semi-bold heading */
}

.admin-info {
    display: flex;
    align-items: center;
}

#adminUsername {
    margin-right: 1.5rem; /* Increased margin */
    font-weight: 500; /* Slightly less bold */
    color: #000000; /* Darker username color */
}

#signOutButton {
    background-color: #ffc107; /* Yellow button */
    color: #333; /* Dark text for contrast */
    border: none;
    padding: 0.7rem 1.2rem; /* Adjusted padding */
    border-radius: 8px; /* Slightly more rounded corners */
    cursor: pointer;
    font-weight: 500; /* Semi-bold text */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth color transition */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

#signOutButton:hover {
    background-color: #e0a800; /* Darker yellow on hover */
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Slightly larger shadow on hover */
}

.dashboard-container {
    padding: 2.5rem; /* Increased padding */
    max-width: 1400px; /* Increased max width */
    margin: 7rem auto; /* Added top/bottom margin */
}

.stats-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 2.5rem; /* Increased gap */
    margin-bottom: 2.5rem; /* Increased margin */
}

.stat-card {
    background-color: #fff;
    border: none; /* Removed border */
    border-radius: 12px; /* More rounded corners */
    padding: 2.5rem; /* Increased padding */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* More prominent shadow */
    flex: 1 0 250px; /* Adjust flex basis for responsiveness */
    text-align: center;
    transition: transform 0.2s ease; /* Smooth transform on hover */
}

.stat-card:hover {
    transform: translateY(-5px); /* Move up slightly on hover */
}

.stat-card h3 {
    margin-bottom: 1.2rem; /* Increased margin */
    color: #333;
    font-weight: 600;
}

.inquiries-container {
    background-color: #fff;
    border: none; /* Removed border */
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* More prominent shadow */
}

.inquiries-container h3 {
    margin-bottom: 1.2rem;
    color: #333;
    font-weight: 600;
}

.inquiries-list {
    max-height: 350px; /* Or adjust as needed */
    overflow-y: auto; /* Enable vertical scrolling */
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    background-color: #f9f9f9; /* Light gray background for list */
    /* Add these to keep inquiries within the box and prevent page scrolling: */
    overflow-x: hidden; /* Hide horizontal scrollbar if content overflows */
    /* If you want a more modern scrollbar, you can style it (but this is optional): */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #aaa #eee; /* Firefox */
}

.inquiries-list::-webkit-scrollbar { /* Webkit (Chrome, Safari) */
    width: 8px; /* Adjust scrollbar width */
}

.inquiries-list::-webkit-scrollbar-track {
    background: #eee; /* Scrollbar track background */
    border-radius: 4px;
}

.inquiries-list::-webkit-scrollbar-thumb {
    background-color: #aaa; /* Scrollbar thumb color */
    border-radius: 4px;
}

.inquiries-list::-webkit-scrollbar-thumb:hover {
    background-color: #999; /* Darker thumb on hover */
}

.inquiry-item {
    border-bottom: 1px solid #eee;
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease; /* Add hover effect */

}
.inquiry-item:hover {
  background-color: #f5f5f5; /* Light gray background on hover */
}


.inquiry-item:last-child {
    border-bottom: none;
}

.inquiry-item p {
    margin: 0.6rem 0;
    color: #555;
}

.reply-btn {
    background-color: #ffc107; /* Yellow button */
    color: #333; /* Dark text for contrast */
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth color transition */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */

}

.reply-btn:hover {
    background-color: #e0a800; /* Darker yellow on hover */
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Slightly larger shadow on hover */
}


/* Reply Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    width: 95%; /* Slightly wider modal */
    max-width: 600px; /* Increased max width */
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Add a subtle box shadow */
}

.close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: #777; /* Lighter close button color */
    transition: color 0.3s ease;
}
.close:hover{
  color: #333;
}

#replyForm textarea {
    width: 100%;
    height: 180px; /* Increased height */
    padding: 1.2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    resize: vertical; /* Allow vertical resize */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */

}

#replyForm button {
    background-color: #ffc107; /* Yellow button */
    color: #333; /* Dark text for contrast */
    border: none;
    padding: 0.7rem 1.2rem; /* Adjusted padding */
    border-radius: 8px; /* Slightly more rounded corners */
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth color transition */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

#replyForm button:hover {
    background-color: #e0a800; /* Darker yellow on hover */
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Slightly larger shadow on hover */
}

/* Responsive Design (Optional) */
@media (max-width: 1200px) {
    .stats-container {
        flex-direction: column; /* Stack stat cards vertically */
    }

    .stat-card {
        flex: 1 0 auto; /* Full width for stat cards */
        margin-bottom: 2rem; /* Add spacing between stacked cards */
    }
}

@media (max-width: 768px) {
    .admin-navbar {
        flex-direction: column; /* Stack navbar items */
        align-items: flex-start; /* Align items to the left */
        padding: 1rem;
    }

    .admin-navbar h2 {
        margin-bottom: 1rem;
    }

    .admin-info {
        flex-direction: column; /* Stack username and button */
        align-items: flex-start;
    }
    #adminUsername{
      margin-right: 0;
      margin-bottom: 0.5rem;
    }

    #signOutButton {
        margin-top: 0.5rem;
    }

    .dashboard-container {
        padding: 1.5rem;
    }

    .stat-card,
    .inquiries-container {
        padding: 1.5rem;
    }

    .inquiry-item {
        flex-direction: column; /* Stack inquiry details */
        align-items: flex-start;
    }

    .reply-btn {
        margin-top: 0.5rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
}
  



  /* login form */
  .login-container {
    width: 300px;
    margin: 7rem auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
  }
  
  .login-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
  }
  
  .form-group input[type="text"],
  .form-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
  }
  
  .login-container button {
    width: 100%;
    padding: 10px;
    background-color: #ffc107; /* Yellow button */
    color: #333; /* Dark text for contrast on yellow */
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .login-container button:hover {
    background-color: #e0a800; /* Darker yellow on hover */
  }
  
  .error-message {
    color: red;
    margin-top: 10px;
    text-align: center;
  }


  /* quote-form */
  .quote-form {
    width: 400px; /* Adjust width as needed */
    margin: 7rem auto; /* Center horizontally with some top/bottom margin */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
  }
  
  .quote-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }
  
  .quote-form input[type="text"],
  .quote-form input[type="email"],
  .quote-form input[type="tel"],
  .quote-form select,
  .quote-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
  }
  
  .quote-form select {
    appearance: none; /* Remove default select arrow */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24h-24z' fill='none'/></svg>"); /* Add custom arrow */
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px; /* Adjust padding to accommodate arrow */
  }
  
  .quote-form textarea {
    resize: vertical; /* Allow vertical resizing */
  }
  
  .quote-form button {
    width: 100%;
    padding: 10px;
    background-color: #ffc107; /* Blue button */
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .quote-form button:hover {
    background-color: #e0a800; /* Darker blue on hover */
  }
