/* --- General Page Styles --- */
main {
    padding: 20px;
    flex:1;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
    font-size: 0.95rem;
}

.language-switcher a {
    color: #000; /* Match other navbar links color */
    text-decoration: none;
    margin: 0 5px;
    padding: 5px;
    transition: color 0.3s ease;
}

.language-switcher a:hover {
    color: #007bff; /* Slight hover color */
    text-decoration: underline;
}


/* --- Service Page Specific --- */
.service-banner {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.service-banner h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.service-banner p {
    font-size: 1.2rem;
}

.service-content {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #0056b3;
}

/* Footer Section */
.site-footer {
    background-color: #f1f1f1;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-top: 50px;
    border-top: 2px solid #ccc;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #00796B; /* Dark teal */
    text-decoration: none;
    font-weight: bold;
    margin: 0 8px;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #004D40; /* Darker on hover */
}

.footer-login {
    margin-bottom: 10px;
}

.footer-login a {
    color: #555;
    font-size: 12px;
    text-decoration: none;
}

.footer-login a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}


/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .service-banner {
        padding: 40px 10px;
    }

    .service-banner h1 {
        font-size: 2rem;
    }

    .service-banner p {
        font-size: 1rem;
    }

    .service-content {
        padding: 15px;
        margin: 30px 15px;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .contact-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .navbar-links {
        display: none;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .navbar-links ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar-links ul li {
        margin: 15px 0;
    }

    .menu-icon {
        display: block;
    }

    /* When menu toggle is checked (opened) */
    .menu-toggle:checked + .menu-icon + .navbar-links {
        display: block;
        padding: 20px 0;
        max-height: 500px; /* Enough to show all links */
        transition: max-height 0.4s ease-in, padding 0.4s ease-in;
    }
}
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-buttons a {
    margin: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}
.hero-text-background {
    background-color: rgba(0, 0, 0, 0.6); /* black with 60% opacity */
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

.hero-text-background h1,
.hero-text-background p {
    margin: 10px 0;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    background-color: #007bff;
    color: white;
}
/* --- About Section --- */
.about-section {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    padding: 0 20px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2rem;
    color: #333;
}

/* --- Services Section --- */
.services-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card img {
    max-width: 80px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-top: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}



/* --- Navbar Styles --- */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.navbar-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.navbar-links ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links ul li {
    margin-left: 30px;
}

.navbar-links ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-links ul li a:hover {
    color: #007bff;
}

/* Hamburger Menu - Hidden on Desktop */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* --- General Page Banner --- */
.page-banner {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.2rem;
}
/* --- Login Page Specific Styles --- */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-primary.full-width {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
}

.alert-error {
    background-color: #f44336;
    color: white;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}


/* --- Contact Form --- */
.contact-form {
    margin: 30px auto;
    max-width: 600px;
    padding: 20px;
    background-color: #f9f9f9; /* light gray background to separate the form */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    outline: none;
}





/* --- Dashboard Actions --- */
.dashboard-actions {
    text-align: center;
    margin: 50px 0;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.action-buttons a {
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    background-color: #007bff;
    color: white;
}


/* --- Client Form Styles --- */
.client-form {
    margin-top: 30px;
}

.client-form .form-group {
    margin-bottom: 20px;
}

.client-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.client-form input,
.client-form select,
.client-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.client-form button {
    margin-top: 20px;
}


/* Existing Client Profiles */
.profiles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.profile-card {
    width: 250px;
    border: 2px solid #000;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Status Bar Colors */
.status-bar {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
}

.status-bar.active {
    background-color: #4CAF50; /* Green */
}

.status-bar.resolved {
    background-color: #2196F3; /* Blue */
}

.status-bar.archived {
    background-color: #9E9E9E; /* Grey */
}

/* Text sections */
.client-name {
    font-size: 1.4em;
    font-weight: bold;
    color: #03A9F4;
    margin: 10px 0 5px;
}

.transaction-type {
    font-size: 1.2em;
    color: #E91E63;
    margin-bottom: 10px;
}

/* Edit Button */
.edit-button a {
    display: inline-block;
    background-color: #00796B;
    color: white;
    padding: 8px 16px;
    margin-bottom: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.edit-button a:hover {
    background-color: #004D40;
}
.client_profile_header{
    text-align:center;
}


.uploaded-files {
    margin-top: 30px;
}

.uploaded-files h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.uploaded-files ul {
    list-style: none;
    padding-left: 0;
}

.uploaded-files li {
    margin-bottom: 8px;
}

.uploaded-files a {
    color: #00796B;
    text-decoration: none;
}

.uploaded-files a:hover {
    text-decoration: underline;
}

.uploaded-files-section {
    margin-top: 30px;
}

.file-row {
    display: flex;
    border: 2px solid black;
    margin-bottom: 10px;
    align-items: center;
}

.file-name {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #03A9F4; /* Bright blue like your drawing */
    font-size: 1.2em;
}

.file-name a {
    text-decoration: none;
    color: inherit;
}

.file-name a:hover {
    text-decoration: underline;
}

.file-delete {
    background-color: #F44336; /* Bright red */
    padding: 10px 20px;
    text-align: center;
}

.file-delete button {
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
}

.file-delete button:hover {
    text-decoration: underline;
}

.btn-download {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background-color: #0056b3;
}
.report-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

.export-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.export-form select {
    padding: 8px 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn-download {
    background-color: #007BFF;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-download:hover {
    background-color: #0056b3;
}

.thank-you-page {
    text-align: center;
    margin: 3rem auto;
    max-width: 700px;
}

.thank-you-page .btn-primary {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* --- General Page Banner --- */
.page-banner {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.2rem;
    color: #ccc;
}

/* --- General Page Content --- */
.page-content {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.page-content ul {
    list-style-type: disc;
    padding-left: 40px;
    color: #555;
    margin-bottom: 40px;
}

.page-content li {
    margin-bottom: 12px;
    font-size: 1rem;
}

/* --- About Section Specific Blocks --- */
.about_abz,
.WWO,
.WCU {
    margin-bottom: 50px;
}

/* --- Link Button --- */
.btn_lnk {
    text-align: center;
    margin: 40px 0;
}

.btn_lnk a {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn_lnk a:hover {
    background-color: #0056b3;
}

/* --- Our Team Section --- */
.our_team {
    margin-top: 70px;
    text-align: center;
}

.our_team h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.our_team p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

/* --- Team Members Grid --- */
.our_team_members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.team-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.team-card img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
}

.team-card p {
    font-size: 0.95rem;
    color: #555;
}

/* --- Responsive tweaks --- */
@media (max-width: 600px) {
    .page-banner h1 {
        font-size: 2.2rem;
    }
    .page-banner p {
        font-size: 1rem;
    }
}


/* services board */
/* --- Services Board Page --- */
.services-board-content {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
}

.services-board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    text-align: center;
}

.service-link {
    text-decoration: none;
    color: inherit;
}

.service-card {
    background-color: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.service-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    object-fit: contain;
}

.service-card h3 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333;
}

/* --- Page Banner Styling (reuse) --- */
.page-banner {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.2rem;
    color: #ccc;
}
