/* 
 * B CUBE Consulting Website Placeholder Styles
 * These styles create visual placeholders for images that would normally be provided by the client
 */

/* Hero Video/Image Placeholder */
.hero-video-container video,
.hero-video-container img {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    position: relative;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* About Image Placeholder */
.about-image img {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    height: 400px;
    position: relative;
}

.about-image img::after {
    content: 'Team Image';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Case Study Image Placeholders */
.case-study-image img {
    background-color: #333;
    position: relative;
}

.case-study-image:nth-child(1) img {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6572 100%);
}

.case-study-image:nth-child(2) img {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6572 100%);
}

.case-study-image:nth-child(3) img {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6572 100%);
}

/* Team Member Image Placeholders */
.team-member-image img {
    background-color: #333;
    position: relative;
}

.team-member:nth-child(1) .team-member-image img {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6572 100%);
}

.team-member:nth-child(2) .team-member-image img {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6572 100%);
}

.team-member:nth-child(3) .team-member-image img {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6572 100%);
}

/* Client Logo Placeholders */
.logo-slide img {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 120px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide:nth-child(1) img::after { content: 'Client 1'; }
.logo-slide:nth-child(2) img::after { content: 'Client 2'; }
.logo-slide:nth-child(3) img::after { content: 'Client 3'; }
.logo-slide:nth-child(4) img::after { content: 'Client 4'; }
.logo-slide:nth-child(5) img::after { content: 'Client 5'; }
.logo-slide:nth-child(6) img::after { content: 'Client 6'; }
.logo-slide:nth-child(7) img::after { content: 'Client 7'; }
.logo-slide:nth-child(8) img::after { content: 'Client 8'; }

/* Add text labels to case study images */
.case-study-card:nth-child(1) .case-study-image::after {
    content: 'Tata Chemicals Case Study';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

.case-study-card:nth-child(2) .case-study-image::after {
    content: 'TCS Lifesciences Case Study';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

.case-study-card:nth-child(3) .case-study-image::after {
    content: 'PetKonnect Case Study';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

/* Add text labels to team member images */
.team-member:nth-child(1) .team-member-image::after {
    content: 'Chandan';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

.team-member:nth-child(2) .team-member-image::after {
    content: 'Dr. Mathias Rodenstein';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

.team-member:nth-child(3) .team-member-image::after {
    content: 'Dr. Joe Shields';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

/* Animation for placeholders */
@keyframes placeholderPulse {
    0% { opacity: 0.7; }
    50% { opacity: 0.9; }
    100% { opacity: 0.7; }
}

.about-image img,
.case-study-image img,
.team-member-image img,
.logo-slide img {
    animation: placeholderPulse 2s infinite;
}
