/* Staffing Main Page CSS */

/* Ensure proper stacking context for fixed background */
body {
    position: relative;
}

/* Hero Section with Banner Image */
.staffing-main-hero {
    position: relative;
    height: 80vh;
    background-image: url('../images/flash-page/Flash-Model-Cover.png');
    background-size:cover;
    background-position: top;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staffing-main-hero-bg {
    position: absolute;
    top: 0px;
    left: 0;
    width: 60%;
    height: 100%;
    object-fit:contain;
    z-index: 1;
    opacity: 0;
}





/* Main Content Section */
.staffing-main-content-section {
    padding: 80px 0;
    background: #19365f;
    position: relative;
    z-index: 10;
    overflow: hidden;
}



.main-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.left-side {
    text-align: left;
}

.about-title {
    font-family: var(--font-bold);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--white);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 6px;
    background: var(--white);
    border-radius: 3px;
}

.right-side {
    text-align: left;
}

.about-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--white);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    text-align: justify;
}

/* Services Section - New Enhanced Design */
.staffing-services-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.staffing-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
 
    opacity: 0.3;
    z-index: 1;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.services-subtitle::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    
}

.services-title {
    font-family: var(--font-bold);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.services-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: 500px;
}


/* Image Shuffle Effect */
.service-image-shuffle {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
 
    height: 500px;
}

.service-image-shuffle:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.shuffle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.shuffle-image.active {
    opacity: 1;
}

.shuffle-image:nth-child(1) {
    animation: fadeInOut 8s infinite;
}

.shuffle-image:nth-child(2) {
    animation: fadeInOut 8s infinite 4s;
}

@keyframes fadeInOut {
    0%, 15% {
        opacity: 0;
    }
    20%, 80% {
        opacity: 1;
    }
    85%, 100% {
        opacity: 0;
    }
}


.service-card {
    background: var(--white);
    padding: 1.5rem 1.2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(251, 194, 19, 0.15);
}

.service-card h3 {
    font-family: var(--font-bold);
    font-size: 1rem;
    color: #000000;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-align: center;
    text-shadow: none;
}

.service-card:hover h3 {
    color: #000000;
}

/* Services CTA Button */
.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
}


.cta-button {
    display: inline-block;
    background: #fbc213;
    color: #000000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-size-lg);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(251, 194, 19, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 54, 95, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 194, 19, 0.4);
    color: #000000;
    text-decoration: none;
    border-color: #e6a800;
    background: #ffd700;
}

/* Model & Video Section - New Enhanced Design */
.model-video-section {
    padding: 120px 0;
    background:  #19365f;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.model-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    z-index: 1;
}

.model-video-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}


.model-video-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.model-showcase {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    background: transparent;
    height: auto;
    width: auto;
    display: inline-block;
}

.model-showcase:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.model-showcase img {

    height: 700px;
    width: 100%;             
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.model-showcase:hover img {
    transform: scale(1.05);
}


.video-showcase {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    background: #000;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-showcase:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.video-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
}

.model-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    transition: var(--transition);
}

.video-content:hover .model-video {
    transform: scale(1.05);
}

.play-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: var(--transition);
}

.video-content:hover .play-button-container {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid var(--primary-color);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
    transition: var(--transition);
}

/* Vimeo Video Container */
.vimeo-video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
}

/* Hide Vimeo spinner and UI */
.vimeo-video-container iframe {
    pointer-events: auto;
}

.vimeo-video-container .vp-spinner,
.vimeo-video-container [class*="spinner"],
.vimeo-video-container [class*="loading"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Big Centered Play Button */
.vimeo-video-controls-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    transition: all 0.3s ease;
}

.vimeo-play-btn-big {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.vimeo-play-btn-big:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.vimeo-play-btn-big i {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #19365f;
    margin-left: 5px; /* Optical alignment for play icon */
}

/* Bottom Video Controls */
.vimeo-video-controls-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 150;
    pointer-events: none;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

/* Small Play/Pause Button */
.vimeo-play-btn-small {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    z-index: 160;
}

.vimeo-play-btn-small:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.vimeo-play-btn-small i {
    font-size: 1.2rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.vimeo-play-btn-small.playing i {
    color: #27ae60;
}

.vimeo-play-btn-small.paused i {
    color: #e74c3c;
}

/* Volume Button */
.vimeo-volume-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    z-index: 160;
}

.vimeo-volume-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.vimeo-volume-btn i {
    font-size: 1.2rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.vimeo-volume-btn.muted i {
    color: #e74c3c;
}

.vimeo-volume-btn.unmuted i {
    color: #27ae60;
}

/* Vimeo Controls Responsive */
@media (max-width: 768px) {
    .vimeo-video-controls-bottom {
        gap: 0.8rem;
    }
    
    .vimeo-play-btn-big {
        width: clamp(70px, 15vw, 100px);
        height: clamp(70px, 15vw, 100px);
    }
    
    .vimeo-play-btn-big i {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .vimeo-play-btn-small,
    .vimeo-volume-btn {
        width: 45px;
        height: 45px;
    }
    
    .vimeo-play-btn-small i,
    .vimeo-volume-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vimeo-video-controls-bottom {
        bottom: 15px;
        right: 15px;
        gap: 0.6rem;
    }
    
    .vimeo-play-btn-big {
        width: clamp(60px, 15vw, 80px);
        height: clamp(60px, 15vw, 80px);
    }
    
    .vimeo-play-btn-big i {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .vimeo-play-btn-small,
    .vimeo-volume-btn {
        width: 40px;
        height: 40px;
    }
    
    .vimeo-play-btn-small i,
    .vimeo-volume-btn i {
        font-size: 0.9rem;
    }
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.play-button:hover::before {
    border-left-color: var(--secondary-color);
}


/* Partners Hero Section */
.partners-hero {
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}



.partners-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.partners-hero-title {
    font-size: clamp(4rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.partners-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Logo Wall Section */
.logo-wall-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

/* Footer z-index fix */
.footer {
    position: relative;
    z-index: 20;
}

.logo-wall-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-wall-header {
    text-align: center;
    margin-bottom: 4rem;
}

.logo-wall-title {
    font-family: var(--font-bold);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.logo-wall-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: center;
    
}

.logo-item {
    background: var(--white);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 194, 19, 0.1), transparent);
    transition: left 0.6s ease;
}

.logo-item:hover::before {
    left: 100%;
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0%);
    transition: var(--transition);
}

.logo-item:hover img {
    transform: scale(1.1);
}

/* Partners Hero Progressive Responsive */
@media (max-width: 1536px) {
    .partners-hero-title {
        font-size: clamp(3.5rem, 8vw, 3.5rem);
    }
}

@media (max-width: 1280px) {
    .partners-hero-title {
        font-size: clamp(3rem, 8vw, 3rem);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partners-hero-title {
        font-size: clamp(2.5rem, 8vw, 2.5rem);
    }

    .main-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .left-side,
    .right-side {
        text-align: center;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-description {
        text-align: center;
    }
    .services-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }
    
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .service-image-shuffle {
        height: 300px;
    }
    
    .service-card {
        padding: 1.2rem 1rem;
        height: 70px;
    }
    
    .model-video-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .model-showcase img,
    .video-showcase {
        height: 400px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .play-button::before {
        border-left: 20px solid var(--primary-color);
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 1.5rem;
    }
    
    .logo-item {
        height: 110px;
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .partners-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .staffing-main-content-section {
        padding: 60px 0;
    }
    
    .main-content-layout {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .staffing-main-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .staffing-services-section {
        padding: 80px 0;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-content {
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .service-image-shuffle {
        height: 250px;
    }
    
    .service-card {
        padding: 1rem 0.8rem;
        height: 60px;
    }
    
    .service-card h3 {
        font-size: 0.8rem;
    }
    
    .model-video-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .model-showcase img,
    .video-showcase {
        height: 300px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button::before {
        border-left: 18px solid var(--primary-color);
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
    }
    
    
    .services-cta {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .logo-wall-section {
        padding: 60px 0;
    }
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .logo-item {
        height: 100px;
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .partners-hero-title {
        font-size: clamp(1.8rem, 8vw, 1.8rem);
    }
}

@media (max-width: 480px) {
    .partners-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .staffing-main-content-section {
        padding: 40px 0;
    }
    
    .main-content-layout {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .staffing-main-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .services-container,
    .case-studies-cta-content,
    .logo-wall-container {
        padding: 0 1rem;
    }
    
    .services-layout {
        gap: 2rem;
    }
    
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button::before {
        border-left: 12px solid var(--primary-color);
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
    }
    
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .logo-item {
        height: 90px;
        padding: 0.75rem;
    }
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-bold);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.staffing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.staffing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    color: inherit;
}

.staffing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
}

.staffing-card-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.staffing-card-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition);
}

.staffing-card:hover .staffing-card-image img {
    transform: scale(1.05);
}

.staffing-card-content {
    padding: 2rem;
    text-align: center;
}

.staffing-card-title {
    font-family: var(--font-bold);
    font-size: var(--font-size-xl);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: var(--transition);
}

.staffing-card:hover .staffing-card-title {
    color: var(--text-dark);
}

.staffing-card-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.service-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: var(--transition);
}

.service-tag:hover {
    color: var(--white);
}

.staffing-card:hover .service-tag {
    color: var(--white);
}

.case-studies-more {
    text-align: center;
    margin-top: 4rem;
}

.more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(251, 194, 19, 0.3);
}

.more-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 54, 95, 0.3);
    text-decoration: none;
}

.more-btn i {
    transition: var(--transition);
}

.more-btn:hover i {
    transform: translateX(4px);
}

/* Loading Placeholder */
.loading-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    height: 20px;
    margin: 0.5rem 0;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@media (max-width: 360px) {
    .partners-hero-title {
        font-size: clamp(1.2rem, 8vw, 1.2rem);
    }
}

/* ========================================
   FOOTER SIZE REDUCTION
   ======================================== */

/* Footer Logo Size Reduction */
.footer-brand .logo {
    height: 100px !important;
    width: 140px !important;
}

/* Footer Paragraph Spacing Reduction */
.footer-brand p {
    margin-bottom: 1rem !important;
}
/* Staffing Video Container - Individual Styles */
.staffing-video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Staffing Video Overlay */
.staffing-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
    pointer-events: none;
}

.staffing-video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Staffing Play Button */
.staffing-play-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.staffing-play-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.staffing-play-btn i {
    font-size: 2rem;
    color: #19365f;
    margin-left: 5px; /* Optical alignment for play icon */
}

/* Staffing Pause Overlay */
.staffing-pause-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 30;
    pointer-events: none;
}

/* Staffing Pause Button */
.staffing-pause-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.staffing-pause-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.staffing-pause-btn i {
    font-size: 1.2rem;
    color: #19365f;
}

/* Responsive Design for Staffing Video */
@media (max-width: 768px) {
    .staffing-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .staffing-play-btn i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .staffing-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .staffing-play-btn i {
        font-size: 1.5rem;
    }
}
