/*
 * ============================================================
 * pages.css — Page-specific styles
 * ============================================================
 *
 * SECTIONS (find by Ctrl+F):
 *   HOME PAGE          → index.html
 *   ABOUT PAGE         → About.html
 *   CAREERS PAGE       → Careers.html
 *   CONTACT PAGE       → Contact.html
 *   EXECUTIVE HIRING   → csuit.html
 *   GALLERY PAGE       → gallery.html
 *   PAYROLL PAGE       → payroll.html
 *   SERVICES PAGE      → services.html
 *
 * Global / shared styles live in: style.css
 * Footer & newsletter styles in:  style.css (bottom)
 * Media listing page:             media.css
 * Single post page:               post.css
 * Admin panel:                    admin-dashboard/assets/css/main.css
 * ============================================================
 */



/* ============================================================
 * HOME PAGE  (index.html)
 * ============================================================ */
/* Home Page Styles - Blue/White Theme */
        .atworkhome-hero {
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .atworkhome-hero-container {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .atworkhome-hero-content {
            flex: 1;
            padding-right: 2rem;
            z-index: 2;
        }

        .atworkhome-hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .atworkhome-hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .atworkhome-hero-para {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .atworkhome-hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .atworkhome-btn-primary {
            background-color: white;
            color: #1a73e8;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .atworkhome-btn-primary:hover {
            background-color: #f1f1f1;
            transform: translateY(-2px);
        }

        .atworkhome-btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .atworkhome-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .atworkhome-hero-image {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .atworkhome-hero-image img {
            width: 100%;
            max-width: 600px;
            height: auto;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* Stats Section */
        .atworkhome-stats {
            background-color: white;
            padding: 4rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .atworkhome-stats-container {
            display: flex;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .atworkhome-stat-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
        }

        .atworkhome-stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #1a73e8;
            margin-bottom: 0.5rem;
        }

        .atworkhome-stat-label {
            font-size: 1.1rem;
            color: #555;
        }

        /* Services Section */
        .atworkhome-services {
            background-color: #f9f9f9;
            padding: 4rem 0;
        }

        .atworkhome-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .atworkhome-section-header h2 {
            color: #1a73e8;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .atworkhome-underline {
            width: 80px;
            height: 4px;
            background-color: #1a73e8;
            margin: 0.5rem auto 1rem;
        }

        .atworkhome-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .atworkhome-service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .atworkhome-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .atworkhome-service-image {
            height: 200px;
            overflow: hidden;
        }

        .atworkhome-service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .atworkhome-service-card:hover .atworkhome-service-image img {
            transform: scale(1.1);
        }

        .atworkhome-service-content {
            padding: 1.5rem;
        }

        .atworkhome-service-content h3 {
            color: #1a73e8;
            margin-bottom: 0.5rem;
        }

        .atworkhome-service-content p {
            color: #666;
            margin-bottom: 1rem;
        }

        .atworkhome-service-link {
            color: #1a73e8;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .atworkhome-service-link i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .atworkhome-service-link:hover i {
            transform: translateX(5px);
        }

        /* Payroll Focus Section */
        .atworkhome-payroll {
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .atworkhome-payroll-container {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .atworkhome-payroll-content {
            flex: 1;
            padding-right: 2rem;
        }

        .atworkhome-payroll-image {
            flex: 1;
        }

        .atworkhome-payroll-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
        }

        .atworkhome-payroll-features {
            margin-top: 2rem;
        }

        .atworkhome-payroll-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .atworkhome-payroll-icon {
            font-size: 1.5rem;
            color: white;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        /* Executive Hiring Section */
        .atworkhome-executive {
            background-color: white;
            padding: 4rem 0;
        }

        .atworkhome-executive-container {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            gap: 3rem;
        }

        .atworkhome-executive-image {
            flex: 1;
        }

        .atworkhome-executive-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .atworkhome-executive-content {
            flex: 1;
        }

        .atworkhome-executive-process {
            margin-top: 2rem;
        }

        .atworkhome-process-step {
            display: flex;
            margin-bottom: 1.5rem;
        }

        .atworkhome-process-number {
            background-color: #1a73e8;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        /* Clients Section */
        .atworkhome-clients {
            background-color: #f9f9f9;
            padding: 4rem 0;
        }

        .atworkhome-clients-slider {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .atworkhome-client-logos {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .atworkhome-client-logo {
            flex: 0 0 calc(16.666% - 2rem);
            min-width: 150px;
            text-align: center;
        }

        .atworkhome-client-logo img {
            max-width: 100%;
            height: auto;
            max-height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .atworkhome-client-logo img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Testimonials Section */
        .atworkhome-testimonials {
            background-color: white;
            padding: 4rem 0;
        }

        .atworkhome-testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .atworkhome-testimonial-slider {
            position: relative;
        }

        .atworkhome-testimonial {
            background-color: #f9f9f9;
            padding: 2rem;
            border-radius: 8px;
            margin: 0 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .atworkhome-testimonial-content {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #555;
        }

        .atworkhome-testimonial-author {
            display: flex;
            align-items: center;
        }

        .atworkhome-testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }

        .atworkhome-testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .atworkhome-testimonial-info h4 {
            color: #1a73e8;
            margin-bottom: 0.2rem;
        }

        .atworkhome-testimonial-info p {
            color: #777;
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .atworkhome-faq {
            background-color: #f9f9f9;
            padding: 4rem 0;
        }

        .atworkhome-faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .atworkhome-accordion-item {
            margin-bottom: 1rem;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .atworkhome-accordion-button {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background-color: white;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a73e8;
            transition: all 0.3s ease;
        }

        .atworkhome-accordion-button:hover {
            background-color: #f5f5f5;
        }

        .atworkhome-accordion-button.active {
            background-color: #f5f5f5;
        }

        .atworkhome-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: white;
        }

        .atworkhome-accordion-content p {
            padding: 1rem 1.5rem;
            color: #555;
        }

        /* CTA Section */
        .atworkhome-cta {
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .atworkhome-cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .atworkhome-cta h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .atworkhome-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .atworkhome-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        /* News Ticker */
        .atworkhome-news-ticker {
            background-color: #1a73e8;
            color: white;
            padding: 1rem 0;
            overflow: hidden;
        }

        .atworkhome-news-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .atworkhome-news-wrapper {
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        .atworkhome-news-label {
            font-weight: 700;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .atworkhome-news-items {
            display: flex;
            animation: ticker 30s linear infinite;
        }

        .atworkhome-news-item {
            margin-right: 3rem;
        }

        .atworkhome-news-item a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .atworkhome-news-item a:hover {
            opacity: 0.8;
        }

        @keyframes ticker {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {

            .atworkhome-hero-container,
            .atworkhome-payroll-container,
            .atworkhome-executive-container {
                flex-direction: column;
                text-align: center;
            }

            .atworkhome-hero-content,
            .atworkhome-payroll-content,
            .atworkhome-executive-content {
                padding-right: 0;
                margin-bottom: 2rem;
            }

            .atworkhome-hero-buttons,
            .atworkhome-cta-buttons {
                justify-content: center;
            }

            .atworkhome-client-logo {
                flex: 0 0 calc(33.333% - 2rem);
            }

            .atworkhome-news-ticker {

                margin-top: 70px;

            }
        }

        @media (max-width: 768px) {
            .atworkhome-hero-title {
                font-size: 2.2rem;
            }

            .atworkhome-hero-subtitle {
                font-size: 1.2rem;
            }

            .atworkhome-hero-buttons,
            .atworkhome-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .atworkhome-stat-item {
                min-width: 150px;
            }

            .atworkhome-client-logo {
                flex: 0 0 calc(50% - 2rem);
            }
        }

        @media (max-width: 576px) {
            .atworkhome-hero-title {
                font-size: 1.8rem;
            }

            .atworkhome-stat-item {
                min-width: 120px;
            }

            .atworkhome-stat-number {
                font-size: 2rem;
            }

            .atworkhome-client-logo {
                flex: 0 0 100%;
            }

        }


/* ============================================================
 * ABOUT PAGE  (About.html)
 * ============================================================ */
/* About Us Page Styles - Blue/White Theme */
    .atworkabout-hero {
        background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
        color: white;
        padding: 5rem 0;
        text-align: center;
        margin-bottom: 3rem;
    }

    .atworkabout-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .atworkabout-hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .atworkabout-hero-cta {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .atworkabout-btn-primary {
        background-color: white;
        color: #1a73e8;
        padding: 0.8rem 2rem;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .atworkabout-btn-primary:hover {
        background-color: #f1f1f1;
        transform: translateY(-2px);
    }

    .atworkabout-btn-secondary {
        background-color: transparent;
        color: white;
        border: 2px solid white;
        padding: 0.8rem 2rem;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .atworkabout-btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .atworkabout-section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .atworkabout-section-header h2 {
        color: #1a73e8;
        font-size: 2.2rem;
        font-weight: 700;
    }

    .atworkabout-underline {
        width: 80px;
        height: 4px;
        background-color: #1a73e8;
        margin: 0.5rem auto 1rem;
    }

    .atworkabout-section-intro {
        color: #555;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Timeline Styles */
    .atworkabout-timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .atworkabout-timeline::before {
        content: '';
        position: absolute;
        width: 4px;
        background-color: #1a73e8;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
    }

    .atworkabout-timeline-item {
        padding: 1rem 2rem;
        position: relative;
        width: 50%;
        box-sizing: border-box;
    }

    .atworkabout-timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .atworkabout-timeline-item:nth-child(even) {
        left: 50%;
        text-align: left;
    }

    .atworkabout-timeline-year {
        background-color: #1a73e8;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        display: inline-block;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .atworkabout-timeline-content {
        background-color: white;
        padding: 1.5rem;
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .atworkabout-timeline-content h3 {
        color: #1a73e8;
        margin-bottom: 0.5rem;
    }

    /* Leadership Styles */
    .atworkabout-leader-profile {
        display: flex;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
        gap: 3rem;
    }

    .atworkabout-leader-image {
        flex: 0 0 300px;
    }

    .atworkabout-leader-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .atworkabout-leader-title {
        color: #666;
        font-style: italic;
        margin-bottom: 1rem;
    }

    .atworkabout-leader-social a {
        color: #1a73e8;
        font-size: 1.5rem;
        margin-right: 1rem;
        transition: all 0.3s ease;
    }

    .atworkabout-leader-social a:hover {
        color: #0d47a1;
    }

    /* Values Grid */
    .atworkabout-values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .atworkabout-value-card {
        background-color: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .atworkabout-value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .atworkabout-value-icon {
        font-size: 2.5rem;
        color: #1a73e8;
        margin-bottom: 1rem;
    }

    /* Mission & Vision */
    .atworkabout-mission-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .atworkabout-mission-card {
        background-color: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .atworkabout-mission-icon {
        font-size: 3rem;
        color: #1a73e8;
        margin-bottom: 1rem;
    }

    /* Advantages */
    .atworkabout-advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .atworkabout-advantage-card {
        background-color: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #1a73e8;
    }

    .atworkabout-advantage-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 0.5rem;
    }

    /* Competencies */
    .atworkabout-competencies-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .atworkabout-competency-card {
        background-color: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .atworkabout-competency-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .atworkabout-competency-icon {
        font-size: 2.5rem;
        color: #1a73e8;
        margin-bottom: 1rem;
    }

    /* Certifications */
    .atworkabout-certificates-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .atworkabout-certificate-item {
        text-align: center;
    }

    .atworkabout-certificate-item img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .atworkabout-certificate-item img:hover {
        transform: scale(1.05);
    }

    /* FAQ Styles */
    .atworkabout-accordion {
        max-width: 800px;
        margin: 0 auto;
    }

    .atworkabout-accordion-item {
        margin-bottom: 1rem;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .atworkabout-accordion-button {
        width: 100%;
        padding: 1.5rem;
        text-align: left;
        background-color: white;
        border: none;
        outline: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #1a73e8;
        transition: all 0.3s ease;
    }

    .atworkabout-accordion-button:hover {
        background-color: #f5f5f5;
    }

    .atworkabout-accordion-button.active {
        background-color: #f5f5f5;
    }

    .atworkabout-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: white;
        padding: 0 1.5rem;
    }

    .atworkabout-accordion-content p {
        padding: 1rem 0;
        color: #555;
    }

    /* CTA Section */
    .atworkabout-cta {
        background-color: #1a73e8;
        color: white;
        padding: 4rem 0;
        text-align: center;
        margin-top: 3rem;
    }

    .atworkabout-cta h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .atworkabout-cta p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 2rem;
        opacity: 0.9;
    }

    .atworkabout-cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .atworkabout-hero h1 {
            font-size: 2.2rem;
        }

        .atworkabout-hero-subtitle {
            font-size: 1.2rem;
        }

        .atworkabout-hero-cta {
            flex-direction: column;
            align-items: center;
        }

        .atworkabout-timeline::before {
            left: 31px;
        }

        .atworkabout-timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
            text-align: left !important;
        }

        .atworkabout-timeline-item:nth-child(even) {
            left: 0;
        }

        .atworkabout-leader-profile {
            flex-direction: column;
            gap: 2rem;
        }

        .atworkabout-leader-image {
            flex: 0 0 auto;
        }

        .atworkabout-mission-grid,
        .atworkabout-cta-buttons {
            grid-template-columns: 1fr;
        }
    }


/* ============================================================
 * CAREERS PAGE  (Careers.html)
 * ============================================================ */
/* FAQ Section Styles */
        .atworkcsuit-faq {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .atworkcsuit-accordion-item {
            margin-bottom: 1rem;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .atworkcsuit-accordion-button {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background-color: white;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a73e8;
            transition: all 0.3s ease;
        }

        .atworkcsuit-accordion-button:hover,
        .atworkcsuit-accordion-button.active {
            background-color: #f5f5f5;
        }

        .atworkcsuit-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: white;
        }

        .atworkcsuit-accordion-content p {
            padding: 1rem 1.5rem;
            color: #555;
        }

        .atworkcsuit-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .atworkcsuit-section-header h2 {
            color: #1a73e8;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .atworkcsuit-underline {
            width: 80px;
            height: 4px;
            background-color: #1a73e8;
            margin: 0.5rem auto 1rem;
        }


/* ============================================================
 * CONTACT PAGE  (Contact.html)
 * ============================================================ */
/* FAQ Section Styles */
        .atworkcsuit-faq {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .atworkcsuit-accordion-item {
            margin-bottom: 1rem;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .atworkcsuit-accordion-button {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background-color: white;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a73e8;
            transition: all 0.3s ease;
        }

        .atworkcsuit-accordion-button:hover,
        .atworkcsuit-accordion-button.active {
            background-color: #f5f5f5;
        }

        .atworkcsuit-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: white;
        }

        .atworkcsuit-accordion-content p {
            padding: 1rem 1.5rem;
            color: #555;
        }

        .atworkcsuit-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .atworkcsuit-section-header h2 {
            color: #1a73e8;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .atworkcsuit-underline {
            width: 80px;
            height: 4px;
            background-color: #1a73e8;
            margin: 0.5rem auto 1rem;
        }


/* ============================================================
 * EXECUTIVE HIRING PAGE  (csuit.html)
 * ============================================================ */
/* C-Suite Hiring Page Styles */
        .atworkcsuit-hero {
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }

        .atworkcsuit-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .atworkcsuit-hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .atworkcsuit-hero-cta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .atworkcsuit-btn-primary {
            background-color: white;
            color: #1a73e8;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .atworkcsuit-btn-primary:hover {
            background-color: #f1f1f1;
            transform: translateY(-2px);
        }

        .atworkcsuit-btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .atworkcsuit-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .atworkcsuit-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .atworkcsuit-section-header h2 {
            color: #1a73e8;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .atworkcsuit-underline {
            width: 80px;
            height: 4px;
            background-color: #1a73e8;
            margin: 0.5rem auto 1rem;
        }

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

        .atworkcsuit-position-card {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }

        .atworkcsuit-position-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .atworkcsuit-position-icon {
            font-size: 2.5rem;
            color: #1a73e8;
            margin-bottom: 1rem;
        }

        .atworkcsuit-process {
            max-width: 800px;
            margin: 0 auto;
        }

        .atworkcsuit-process-step {
            display: flex;
            margin-bottom: 2rem;
        }

        .atworkcsuit-process-number {
            background-color: #1a73e8;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .atworkcsuit-process-content h3 {
            color: #1a73e8;
            margin-bottom: 0.5rem;
        }

        .atworkcsuit-benefits {
            background-color: #f9f9f9;
            padding: 4rem 0;
        }

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

        .atworkcsuit-benefit-card {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #1a73e8;
        }

        .atworkcsuit-benefit-card h3 {
            color: #1a73e8;
            margin-bottom: 1rem;
        }

        .atworkcsuit-faq {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .atworkcsuit-accordion-item {
            margin-bottom: 1rem;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .atworkcsuit-accordion-button {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background-color: white;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a73e8;
            transition: all 0.3s ease;
        }

        .atworkcsuit-accordion-button:hover {
            background-color: #f5f5f5;
        }

        .atworkcsuit-accordion-button.active {
            background-color: #f5f5f5;
        }

        .atworkcsuit-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: white;
        }

        .atworkcsuit-accordion-content p {
            padding: 1rem 1.5rem;
            color: #555;
        }

        .atworkcsuit-cta {
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .atworkcsuit-cta h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .atworkcsuit-cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .atworkcsuit-hero h1 {
                font-size: 2.2rem;
            }

            .atworkcsuit-hero-subtitle {
                font-size: 1.2rem;
            }

            .atworkcsuit-hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .atworkcsuit-process-step {
                flex-direction: column;
            }

            .atworkcsuit-process-number {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }


/* ============================================================
 * GALLERY PAGE  (gallery.html)
 * ============================================================ */
/* ====== Gallery styles (inline) ====== */
    .gallery-section {
      max-width: 1200px;
      margin: 28px auto;
      padding: 0 18px 48px;
      font-family: Inter, system-ui, Arial;
    }

    .gallery-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
      gap: 12px;
    }

    .gallery-header h2 {
      margin: 0;
      font-size: 22px;
    }

    .gallery-subtext {
      color: #666;
      font-size: 14px;
      margin-top: 6px;
    }

    .gallery-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .gallery-tab {
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid #eee;
      background: #fff;
      cursor: pointer;
      font-weight: 600;
    }

    .gallery-tab.active {
      background: linear-gradient(90deg, #ff8a00, #f89633);
      color: #fff;
      box-shadow: 0 8px 20px rgba(248, 148, 51, 0.12);
      transform: translateY(-2px);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 14px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      min-height: 140px;
      background: #fafafa;
      cursor: pointer;
      border: 1px solid #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-item img,
    .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s ease;
    }

    .gallery-item:hover img,
    .gallery-item:hover video {
      transform: scale(1.04);
    }

    .video-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      padding: 6px 8px;
      border-radius: 6px;
      font-size: 12px;
      display: flex;
      gap: 8px;
      align-items: center;
      pointer-events: none;
    }

    .click-play-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 4;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
      color: #fff;
      border: none;
      font-size: 16px;
      cursor: pointer;
    }

    /* Lightbox */
    .gw-lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1200;
      padding: 18px;
    }

    .gw-lightbox.active {
      display: flex;
    }

    .gw-lightbox-inner {
      width: 100%;
      max-width: 1100px;
      max-height: 90vh;
      background: #111;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gw-lightbox-inner img,
    .gw-lightbox-inner video {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
    }

    .gw-lightbox-close {
      position: absolute;
      top: 8px;
      right: 8px;
      border: none;
      background: transparent;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      z-index: 5;
    }

    @media (max-width:600px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-tab {
        padding: 8px 10px;
      }
    }


/* ============================================================
 * PAYROLL PAGE  (payroll.html)
 * ============================================================ */
/* Payroll Page Styles */
        .atworkpayroll-hero {
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }

        .atworkpayroll-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .atworkpayroll-hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .atworkpayroll-hero-cta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .atworkpayroll-btn-primary {
            background-color: white;
            color: #1a73e8;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .atworkpayroll-btn-primary:hover {
            background-color: #f1f1f1;
            transform: translateY(-2px);
        }

        .atworkpayroll-btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .atworkpayroll-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .atworkpayroll-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .atworkpayroll-section-header h2 {
            color: #1a73e8;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .atworkpayroll-underline {
            width: 80px;
            height: 4px;
            background-color: #1a73e8;
            margin: 0.5rem auto 1rem;
        }

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

        .atworkpayroll-feature-card {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }

        .atworkpayroll-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .atworkpayroll-feature-icon {
            font-size: 2.5rem;
            color: #1a73e8;
            margin-bottom: 1rem;
        }

        .atworkpayroll-process {
            max-width: 800px;
            margin: 0 auto;
        }

        .atworkpayroll-process-step {
            display: flex;
            margin-bottom: 2rem;
        }

        .atworkpayroll-process-number {
            background-color: #1a73e8;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .atworkpayroll-process-content h3 {
            color: #1a73e8;
            margin-bottom: 0.5rem;
        }

        .atworkpayroll-benefits {
            background-color: #f9f9f9;
            padding: 4rem 0;
        }

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

        .atworkpayroll-benefit-card {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #1a73e8;
        }

        .atworkpayroll-benefit-card h3 {
            color: #1a73e8;
            margin-bottom: 1rem;
        }

        .atworkpayroll-faq {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .atworkpayroll-accordion-item {
            margin-bottom: 1rem;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .atworkpayroll-accordion-button {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background-color: white;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a73e8;
            transition: all 0.3s ease;
        }

        .atworkpayroll-accordion-button:hover {
            background-color: #f5f5f5;
        }

        .atworkpayroll-accordion-button.active {
            background-color: #f5f5f5;
        }

        .atworkpayroll-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: white;
        }

        .atworkpayroll-accordion-content p {
            padding: 1rem 1.5rem;
            color: #555;
        }

        .atworkpayroll-cta {
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .atworkpayroll-cta h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .atworkpayroll-cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .atworkpayroll-hero h1 {
                font-size: 2.2rem;
            }

            .atworkpayroll-hero-subtitle {
                font-size: 1.2rem;
            }

            .atworkpayroll-hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .atworkpayroll-process-step {
                flex-direction: column;
            }

            .atworkpayroll-process-number {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }


/* ============================================================
 * SERVICES PAGE  (services.html)
 * ============================================================ */
/* Services Page Styles with Unique Prefix */
        .atworkservices-hero {
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }

        .atworkservices-hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .atworkservices-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        .atworkservices-hero-btns {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .atworkservices-btn-primary {
            background-color: white;
            color: #1a73e8;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .atworkservices-btn-primary:hover {
            background-color: #f1f1f1;
            transform: translateY(-2px);
        }

        .atworkservices-btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .atworkservices-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .atworkservices-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .atworkservices-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .atworkservices-section-header h2 {
            color: #1a73e8;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .atworkservices-underline {
            width: 80px;
            height: 4px;
            background-color: #1a73e8;
            margin: 0.5rem auto 1rem;
        }

        .atworkservices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .atworkservices-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .atworkservices-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .atworkservices-card-img {
            height: 200px;
            overflow: hidden;
        }

        .atworkservices-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .atworkservices-card:hover .atworkservices-card-img img {
            transform: scale(1.1);
        }

        .atworkservices-card-content {
            padding: 1.5rem;
        }

        .atworkservices-card-content h3 {
            color: #1a73e8;
            margin-bottom: 0.5rem;
        }

        .atworkservices-card-btn {
            display: inline-block;
            background-color: #1a73e8;
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .atworkservices-card-btn:hover {
            background-color: #0d47a1;
        }

        .atworkservices-cta {
            background-color: #0d47a1;
            padding: 4rem 0;
            text-align: center;
        }

        .atworkservices-cta h2 {
            color: #1a73e8;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .atworkservices-hero h1 {
                font-size: 2.2rem;
            }

            .atworkservices-hero p {
                font-size: 1rem;
            }

            .atworkservices-hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .atworkservices-grid {
                grid-template-columns: 1fr;
            }
        }
    

        /* FAQ Section Styles */
        .atworkcsuit-faq {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .atworkcsuit-accordion-item {
            margin-bottom: 1rem;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .atworkcsuit-accordion-button {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background-color: white;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a73e8;
            transition: all 0.3s ease;
        }

        .atworkcsuit-accordion-button:hover,
        .atworkcsuit-accordion-button.active {
            background-color: #f5f5f5;
        }

        .atworkcsuit-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: white;
        }

        .atworkcsuit-accordion-content p {
            padding: 1rem 1.5rem;
            color: #555;
        }

        .atworkcsuit-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .atworkcsuit-section-header h2 {
            color: #1a73e8;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .atworkcsuit-underline {
            width: 80px;
            height: 4px;
            background-color: #1a73e8;
            margin: 0.5rem auto 1rem;
        }
