* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #6c63ff;
    --secondary-color: rgb(222, 144, 0);
    --accent-color: #43cbff;
    --dark-color: #2d2b32;
    --light-color: #ffffff;
    --background-color: #f8f9fa;
    --text-color: #2d2b32;
    --text-light: #6c757d;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                --primary: #2c3e50;
            --secondary: rgb(222, 144, 0);
            --accent: #3498db;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --text: #333;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
}

/* body {
            background: var(--background-color);
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding: 0;
            margin: 0;
        } */

.navbar {
    background: var(--light-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 5px 10rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.logo img {
    /* height: 40px; */
    width: 65%;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin: 0 0.5rem;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition);
}

/* .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            z-index: -1;
            transition: var(--transition);
            border-radius: 10px;
        }

        .nav-link:hover::before {
            opacity: 0.08;
        } */

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover i {
    color: var(--primary-color);
}

/* .nav-link.active {
    color: var(--primary-color);
    background: rgba(107, 99, 255, 0.08);
} */

.nav-link.active i {
    color: var(--primary-color);
}

/* .nav-link.active::after {
    width: 70%;
} */

.nav-link.cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    box-shadow: 0 4px 15px rgba(107, 99, 255, 0.3);
    overflow: hidden;
}

.nav-link.cta::before {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
}

.nav-link.cta:hover::before {
    opacity: 1;
}

.nav-link.cta::after {
    display: none;
}

.nav-link.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 99, 255, 0.4);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: var(--light-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    margin: 2.5px 0;
    background: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hamburger.active span {
    background: white;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 968px) {
    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        background: var(--light-color);
        width: 280px;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 0.8rem 0;
        width: 100%;
    }

    .nav-link {
        padding: 1rem 1.2rem;
        width: 100%;
        border-radius: 8px;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }
}

@media screen and (max-width: 480px) {

    .navbar {
        padding: 0.8rem 1rem;
    }
}


/* ===============Hero section================= */

.logistaff-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(14, 30, 66, 0.85) 0%, rgba(22, 49, 114, 0.8) 100%), url('https://images.unsplash.com/photo-1476820865390-c52aeebb9891?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
}

.logistaff-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logistaff-logo {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.logistaff-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logistaff-logo span {
    color: #FF9E1B;
}

.logistaff-tagline {
    font-size: 1.2rem;
    color: #e6e6e6;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.logistaff-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.logistaff-highlight {
    color: #FF9E1B;
    position: relative;
    display: inline-block;
}

.logistaff-highlight:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 158, 27, 0.3);
    z-index: -1;
    transition: height 0.3s ease;
}

.logistaff-highlight:hover:after {
    height: 15px;
}

.logistaff-description {
    font-size: 1.1rem;
    color: #d9d9d9;
    margin-bottom: 40px;
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.logistaff-cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.logistaff-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logistaff-btn-primary {
    background: #FF9E1B;
    color: #fff;
    border: 2px solid #FF9E1B;
}

.logistaff-btn-primary:hover {
    background: transparent;
    color: #FF9E1B;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 158, 27, 0.3);
}

.logistaff-btn-secondary {
    background: transparent;
    border: 2px solid #fff;
}

.logistaff-btn-secondary a{
    color: #fff;
    text-decoration: none;
}

.logistaff-btn-secondary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.logistaff-btn-secondary:hover a{
    color: #0E1E42;

}

.logistaff-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.logistaff-service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    width: 200px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logistaff-service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.logistaff-service-icon {
    font-size: 2.5rem;
    color: #FF9E1B;
    margin-bottom: 15px;
}

.logistaff-hero-service-title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.logistaff-service-desc {
    color: #d9d9d9;
    font-size: 0.9rem;
}

.logistaff-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logistaff-main-heading {
        font-size: 2.5rem;
    }

    .logistaff-tagline {
        font-size: 1.1rem;
    }

    .logistaff-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .logistaff-services {
        gap: 15px;
    }

    .logistaff-service-card {
        width: 160px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .logistaff-main-heading {
        font-size: 2rem;
    }

    .logistaff-logo-text {
        font-size: 1.8rem;
    }

    .logistaff-services {
        flex-direction: column;
        align-items: center;
    }

    .logistaff-service-card {
        width: 100%;
        max-width: 300px;
    }
}


/* ==================Services Section===================== */

.logistaff-services-section {
    font-family: 'Roboto', sans-serif;
    padding: 100px 0px;
    /* background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%); */
}

.logistaff-container {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.logistaff-section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.logistaff-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0E1E42;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.logistaff-section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FF9E1B;
    border-radius: 2px;
}

.logistaff-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.logistaff-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.logistaff-service-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    text-align: left;
}

.logistaff-service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.logistaff-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.logistaff-service-icon-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0E1E42 0%, #1a3a8f 100%);
    position: relative;
    overflow: hidden;
}

.logistaff-service-icon {
    font-size: 4rem;
    color: #FF9E1B;
    z-index: 2;
    transition: all 0.4s ease;
}

.logistaff-service-item:hover .logistaff-service-icon {
    transform: scale(1.2) rotate(5deg);
}

.logistaff-service-icon-wrapper:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 158, 27, 0.1);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 1;
}

.logistaff-service-item:hover .logistaff-service-icon-wrapper:after {
    transform: rotate(45deg) translate(20px, 20px);
}

.logistaff-service-content {
    padding: 25px;
}

.logistaff-service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0E1E42;
    margin-bottom: 15px;
}

.logistaff-service-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.logistaff-service-features {
    list-style: none;
    margin-bottom: 25px;
}

.logistaff-service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.logistaff-service-feature i {
    color: #FF9E1B;
    margin-right: 10px;
    font-size: 0.8rem;
}

.logistaff-service-cta {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: #0E1E42;
    border: 2px solid #0E1E42;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logistaff-service-cta:hover {
    background: #0E1E42;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 30, 66, 0.2);
}

.logistaff-service-cta i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.logistaff-service-cta:hover i {
    transform: translateX(5px);
}

/* Animation for section appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .logistaff-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .logistaff-section-title {
        font-size: 2.2rem;
    }

    .logistaff-section-subtitle {
        font-size: 1.1rem;
    }

    .logistaff-service-icon {
        font-size: 3.5rem;
    }

    .logistaff-service-icon-wrapper {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .logistaff-services-section {
        padding: 70px 15px;
    }

    .logistaff-section-heading {
        margin-bottom: 50px;
    }

    .logistaff-section-title {
        font-size: 1.8rem;
    }

    .logistaff-services-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================how it works===================== */

.logistaff-process {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.logistaff-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logistaff-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.logistaff-process-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0E1E42;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.logistaff-process-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #FF9E1B;
    border-radius: 3px;
}

.logistaff-process-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.logistaff-process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin: 80px 0 60px;
}

/* Connector line */
.logistaff-process-steps:before {
    content: '';
    position: absolute;
    top: 120px;
    left: 10%;
    width: 80%;
    height: 5px;
    background: linear-gradient(to right, #FF9E1B, #0E1E42);
    z-index: 1;
}

.logistaff-process-step {
    flex: 0 0 23%;
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(14, 30, 66, 0.12);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    margin-bottom: 40px;
}

.logistaff-process-step:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 50px rgba(14, 30, 66, 0.2);
}

.logistaff-step-number {
    width: 70px;
    height: 70px;
    background: #0E1E42;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(14, 30, 66, 0.2);
}

.logistaff-process-step:hover .logistaff-step-number {
    background: #FF9E1B;
    transform: scale(1.15) rotate(5deg);
}

.logistaff-step-icon {
    font-size: 2.5rem;
    color: #0E1E42;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.logistaff-process-step:hover .logistaff-step-icon {
    color: #FF9E1B;
    transform: scale(1.15);
}

.logistaff-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0E1E42;
    margin-bottom: 20px;
}

.logistaff-step-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.logistaff-process-cta {
    text-align: center;
    margin-top: 60px;
}

.logistaff-process-btn {
    display: inline-block;
    padding: 20px 50px;
    background: #FF9E1B;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 158, 27, 0.35);
    position: relative;
    overflow: hidden;
}

.logistaff-process-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.logistaff-process-btn:hover {
    background: #0E1E42;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(14, 30, 66, 0.4);
}

.logistaff-process-btn:hover:before {
    left: 100%;
}

/* Background elements */
.logistaff-bg-element {
    position: absolute;
    z-index: 0;
}

.logistaff-bg-element-1 {
    top: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: rgba(255, 158, 27, 0.1);
    border-radius: 50%;
}

.logistaff-bg-element-2 {
    bottom: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: rgba(14, 30, 66, 0.08);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .logistaff-process-steps:before {
        width: 76%;
        left: 12%;
    }
}

@media (max-width: 992px) {
    .logistaff-process-steps:before {
        display: none;
    }

    .logistaff-process-step {
        flex: 0 0 48%;
        margin-bottom: 50px;
    }

    .logistaff-process-title {
        font-size: 2.6rem;
    }

    .logistaff-process-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .logistaff-process {
        padding: 60px 0;
    }

    .logistaff-process-step {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .logistaff-process-title {
        font-size: 2.2rem;
    }

    .logistaff-process-subtitle {
        font-size: 1.1rem;
    }

    .logistaff-step-description {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logistaff-process-step {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.logistaff-process-step:nth-child(1) {
    animation-delay: 0.2s;
}

.logistaff-process-step:nth-child(2) {
    animation-delay: 0.4s;
}

.logistaff-process-step:nth-child(3) {
    animation-delay: 0.6s;
}

.logistaff-process-step:nth-child(4) {
    animation-delay: 0.8s;
}


/* ============why choose us================ */


.logistaff-benefits {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.logistaff-benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.logistaff-benefits-preheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #FF9E1B;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.logistaff-benefits-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0E1E42;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.logistaff-benefits-heading:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FF9E1B;
    border-radius: 2px;
}

.logistaff-benefits-subheading {
    font-size: 1.2rem;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

.logistaff-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.logistaff-benefit-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.logistaff-benefit-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #0E1E42 0%, #2D3A80 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.logistaff-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(14, 30, 66, 0.15);
}

.logistaff-benefit-card:hover:before {
    height: 100%;
}

.logistaff-benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 30, 66, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    transition: all 0.4s ease;
}

.logistaff-benefit-card:hover .logistaff-benefit-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.logistaff-benefit-icon i {
    font-size: 2.2rem;
    color: #0E1E42;
    transition: all 0.4s ease;
}

.logistaff-benefit-card:hover .logistaff-benefit-icon i {
    color: #FF9E1B;
}

.logistaff-benefit-content {
    padding: 0 25px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.logistaff-benefit-card:hover .logistaff-benefit-content {
    color: white;
}

.logistaff-benefit-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0E1E42;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.logistaff-benefit-card:hover .logistaff-benefit-title {
    color: white;
}

.logistaff-benefit-desc {
    color: #64748B;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.logistaff-benefit-card:hover .logistaff-benefit-desc {
    color: rgba(255, 255, 255, 0.9);
}

.logistaff-benefit-cta {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: #0E1E42;
    border: 1px solid #0E1E42;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logistaff-benefit-card:hover .logistaff-benefit-cta {
    background: #FF9E1B;
    color: white;
    border-color: #FF9E1B;
    transform: translateY(3px);
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logistaff-benefits-heading {
        font-size: 2.2rem;
    }

    .logistaff-benefits-subheading {
        font-size: 1.1rem;
    }

    .logistaff-benefits-grid {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .logistaff-benefits {
        padding: 30px 15px;
    }

    .logistaff-benefits-heading {
        font-size: 1.8rem;
    }

    .logistaff-benefits-preheading {
        font-size: 0.9rem;
    }

    .logistaff-benefit-card {
        max-width: 350px;
        margin: 0 auto;
    }
}


/*====================== stats counter===================== */

.logistaff-stats-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    background-size: cover, 30px 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.logistaff-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.logistaff-stats-heading {
    text-align: center;
    margin-bottom: 60px;
}

.logistaff-stats-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0E1E42;
    margin-bottom: 15px;
}

.logistaff-stats-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.logistaff-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.logistaff-stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.logistaff-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF9E1B, #FF6B1B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.logistaff-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.logistaff-stat-card:hover::before {
    transform: scaleX(1);
}

.logistaff-stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 158, 27, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.logistaff-stat-card:hover .logistaff-stat-icon {
    transform: scale(1.1);
    background: rgba(255, 158, 27, 0.25);
}

.logistaff-stat-icon i {
    font-size: 2rem;
    color: #FF9E1B;
}

.logistaff-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #0E1E42;
    margin: 15px 0;
    display: block;
    transition: all 0.3s ease;
}

.logistaff-stat-card:hover .logistaff-stat-number {
    color: #FF9E1B;
}

.logistaff-stat-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.logistaff-stat-prefix {
    font-size: 2rem;
    color: #FF9E1B;
    vertical-align: top;
    margin-right: 5px;
}

.logistaff-stat-suffix {
    font-size: 1.8rem;
    color: #FF9E1B;
    vertical-align: top;
    margin-left: 5px;
}

/* Animation for numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .logistaff-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .logistaff-stats-grid {
        grid-template-columns: 1fr;
    }

    .logistaff-stats-title {
        font-size: 2.2rem;
    }

    .logistaff-stat-number {
        font-size: 2.8rem;
    }

    .logistaff-stats-section {
        padding: 60px 0;
    }
}

/* Decorative smoke elements */
.logistaff-smoke-element {
    position: absolute;
    z-index: 1;
    opacity: 0.15;
    filter: blur(5px);
}

.logistaff-smoke-1 {
    top: 10%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #0E1E42 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.logistaff-smoke-2 {
    bottom: 15%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #FF9E1B 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s infinite ease-in-out reverse;
}

.logistaff-smoke-3 {
    top: 40%;
    left: 80%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #0E1E42 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ===================footer============== */

.content {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content h1 {
    font-family: 'Montserrat', sans-serif;
    color: #0E1E42;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content p {
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.logistaff-footer {
    background: linear-gradient(135deg, #0E1E42 0%, #1a2f66 100%);
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.logistaff-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF9E1B, #FF6B1B, #FF9E1B);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.logistaff-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.logistaff-footer-section {
    padding: 10px;
}

.logistaff-footer-heading {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.logistaff-footer-heading img{
    width: 100%;
}

.logistaff-footer-about p {
    margin-bottom: 20px;
    color: #d9d9d9;
    line-height: 1.7;
}

.logistaff-footer-links ul {
    list-style: none;
}

.logistaff-footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
    transition: transform 0.3s ease;
}

.logistaff-footer-links li::before {
    content: '→';
    color: #FF9E1B;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-5px);
}

.logistaff-footer-links li:hover {
    transform: translateX(5px);
}

.logistaff-footer-links li:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.logistaff-footer-links a {
    color: #d9d9d9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logistaff-footer-links a:hover {
    color: #FF9E1B;
}

.logistaff-footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #d9d9d9;
}

.logistaff-footer-contact i {
    color: #FF9E1B;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    transition: transform 0.3s ease;
}

.logistaff-footer-contact p:hover i {
    transform: scale(1.2);
}

.logistaff-footer-newsletter p {
    margin-bottom: 20px;
    color: #d9d9d9;
}

.logistaff-footer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logistaff-footer-input {
    padding: 14px 16px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.logistaff-footer-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 158, 27, 0.3);
}

.logistaff-footer-btn {
    padding: 14px 20px;
    background: #FF9E1B;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logistaff-footer-btn:hover {
    background: #FF8B1B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 158, 27, 0.3);
}

.logistaff-footer-btn i {
    transition: transform 0.3s ease;
}

.logistaff-footer-btn:hover i {
    transform: translateX(3px);
}

.logistaff-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.logistaff-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logistaff-footer-social a:hover {
    background: #FF9E1B;
    transform: translateY(-5px);
}

.logistaff-footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #d9d9d9;
    font-size: 0.9rem;
}

.logistaff-footer-bottom p {
    margin-bottom: 5px;
}

.logistaff-footer-payments {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.logistaff-footer-payments i {
    font-size: 1.8rem;
    color: #d9d9d9;
    transition: color 0.3s ease;
}

.logistaff-footer-payments i:hover {
    color: #FF9E1B;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logistaff-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logistaff-footer-section {
        text-align: center;
    }

    .logistaff-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .logistaff-footer-social {
        justify-content: center;
    }

    .logistaff-footer-form {
        max-width: 400px;
        margin: 0 auto;
    }
}


/* =============About Us page============= */
.staffing-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.staffing-hero {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.staffing-hero-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    font-family: 'poppins', sans-serif;
}

.staffing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.staffing-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.staffing-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.staffing-btn:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* About Section */
.staffing-about {
    padding: 100px 0;
    background: white;
}

.staffing-section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}

.staffing-section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.staffing-about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.staffing-about-text {
    flex: 1;
    min-width: 300px;
}

.staffing-about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.staffing-about-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'poppins', sans-serif;
}

.staffing-about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.staffing-about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.staffing-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.staffing-about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.staffing-services {
    padding: 100px 0;
    /* background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%); */
}

.staffing-service-section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}

.staffing-service-section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.staffing-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.staffing-service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    padding: 30px;
}

.staffing-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.staffing-service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.staffing-service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.staffing-service-card p {
    color: var(--dark-color);
    line-height: 1.5;
    font-family: 'poppins', sans-serif;
}

/* Team Section */
.staffing-team {
    padding: 100px 0;
    background: white;
}

.staffing-team-section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}

.staffing-team-section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.staffing-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.staffing-team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.staffing-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.staffing-team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.staffing-team-info {
    padding: 20px;
}

.staffing-team-info h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
}

.staffing-team-role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.staffing-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.staffing-social-links a {
    color: var(--primary-color);
    transition: var(--transition);
}

.staffing-social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Stats Section */
.staffing-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    text-align: center;
}

.staffing-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.staffing-stat-item {
    padding: 20px;
}

.staffing-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.staffing-stat-text {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.staffing-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.staffing-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .staffing-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .staffing-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background: var(--primary-color);
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .staffing-menu.active {
        left: 0;
    }

    .staffing-menu li {
        margin: 15px 0;
    }

    .staffing-hamburger {
        display: block;
    }

    .staffing-hero h1 {
        font-size: 2.3rem;
    }

    .staffing-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .staffing-hero h1 {
        font-size: 2rem;
    }

    .staffing-section-title {
        font-size: 1.8rem;
    }

    .staffing-stat-number {
        font-size: 2.5rem;
    }
}


/* ================Services page=================== */

        .pw-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

 /* Hero Section */
        .pw-hero {
            background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3') center/cover no-repeat;
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding: 100px 0 80px;
            color: white;
        }

        .pw-hero-content {
            max-width: 800px;
            animation: pw-fadeIn 1s ease;
        }

        .pw-hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .pw-hero-desc {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .pw-btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .pw-btn:hover {
            background: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Services Section */
        .pw-services {
            padding: 100px 0;
        }

        .pw-section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            font-size: 2.5rem;
            font-family: 'Montserrat', sans-serif;
        }

        .pw-section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 15px auto;
        }

        .pw-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pw-service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            animation: pw-fadeUp 0.5s ease;
        }

        .pw-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .pw-service-img {
            height: 200px;
            overflow: hidden;
        }

        .pw-service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .pw-service-card:hover .pw-service-img img {
            transform: scale(1.1);
        }

        .pw-service-content {
            padding: 25px;
        }

        .pw-service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .pw-service-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        /* Process Section */
        .pw-process {
            background: var(--light);
            padding: 100px 0;
        }

        .pw-process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .pw-step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 20px;
            position: relative;
            animation: pw-fadeIn 1s ease;
        }

        .pw-step-number {
            width: 60px;
            height: 60px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .pw-step:hover .pw-step-number {
            background: var(--secondary);
            transform: scale(1.1);
        }

        .pw-step-title {
            margin-bottom: 15px;
        }

        /* Testimonials */
        .pw-testimonials {
            padding: 100px 0;
        }

        .pw-testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pw-testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .pw-testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .pw-testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }

        .pw-testimonial-text::before {
            content: "";
            font-size: 3rem;
            color: var(--accent);
            position: absolute;
            left: -10px;
            top: -15px;
            opacity: 0.3;
        }

        .pw-testimonial-author {
            display: flex;
            align-items: center;
        }

        .pw-testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            background: var(--accent);
            color: white;
            font-weight: bold;
        }

        /* .pw-testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        } */

        /* CTA Section */
        .pw-cta {
            background: linear-gradient(rgba(231, 76, 60, 0.9), rgba(231, 76, 60, 0.9)), url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?ixlib=rb-4.0.3') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
            color: white;
        }

        .pw-cta-title {
            color: white;
            margin-bottom: 30px;
        }

        .pw-cta-btn {
            background: white;
            color: var(--secondary);
        }

        .pw-cta-btn:hover {
            background: var(--light);
        }

        /* Footer */
        .pw-footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .pw-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .pw-footer-heading {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .pw-footer-heading::after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background: var(--secondary);
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .pw-footer-links {
            list-style: none;
        }

        .pw-footer-link {
            margin-bottom: 10px;
        }

        .pw-footer-link a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .pw-footer-link a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .pw-footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes pw-fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes pw-fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .pw-hero-title {
                font-size: 2.8rem;
            }
            
            .pw-step {
                min-width: 50%;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .pw-hamburger {
                display: block;
                font-size: 1.5rem;
            }
            
            .pw-nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                background: white;
                width: 100%;
                flex-direction: column;
                box-shadow: var(--shadow);
                transition: 0.4s;
                padding: 20px;
            }
            
            .pw-nav-menu.active {
                left: 0;
            }
            
            .pw-nav-item {
                margin: 15px 0;
            }
            
            .pw-hero-title {
                font-size: 2.3rem;
            }
            
            .pw-hero-desc {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .pw-hero-title {
                font-size: 2rem;
            }
            
            .pw-service-card, .pw-testimonial-card {
                max-width: 350px;
                margin: 0 auto;
            }
            
            .pw-step {
                min-width: 100%;
            }
        }

        /* ====================Contact Us================== */

        .staffing-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
            padding: 1rem 2rem;
            position: relative;
            box-shadow: var(--shadow);
        }

        .staffing-hero {
            background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .staffing-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .staffing-hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            padding: 0 1rem;
            /* animation: fadeInHero 1s ease; */
        }

        .staffing-hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .staffing-hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .staffing-contact-container {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .staffing-contact-info {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .staffing-contact-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .staffing-contact-info h2 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .staffing-contact-info h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }

        .staffing-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .staffing-info-icon {
            background: var(--light-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .staffing-info-item:hover .staffing-info-icon {
            background: var(--primary-color);
            color: white;
        }

        .staffing-info-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.2rem;
        }

        .staffing-info-content p {
            color: #666;
        }

        .staffing-contact-form {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .staffing-contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .staffing-contact-form h2 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .staffing-contact-form h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }

        .staffing-form-group {
            margin-bottom: 1.5rem;
        }

        .staffing-form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .staffing-form-input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Roboto', sans-serif;
            transition: var(--transition);
        }

        .staffing-form-input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .staffing-form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .staffing-form-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }

        .staffing-form-button i {
            margin-left: 0.5rem;
        }

        .staffing-form-button:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .staffing-map {
            margin-top: 4rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
        }

        /* @keyframes fadeInHero {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        } */

        @media (max-width: 768px) {

            .staffing-hero-content h1 {
                font-size: 2.5rem;
            }

            .staffing-contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .staffing-hero-content h1 {
                font-size: 2rem;
            }
        }