/*
=====================================================
  AGOID INTERIOR - Our Team Page Styles (Upgraded & Complete)
  File: our-team.css
  Description: Page-specific styles for the world-class our-team.html page.
=====================================================
*/

/* --- 1. Upgraded Team Hero Section --- */
.team-hero-upgraded {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-text);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 42, 0.95), rgba(10, 10, 42, 0.7));
    z-index: 2;
}

.team-hero-upgraded .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.team-hero-upgraded h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.team-hero-upgraded p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 30px;
}

.play-video-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-cyan);
    color: var(--primary-text);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.play-video-btn:hover {
    background: var(--accent-cyan);
    color: var(--dark-blue);
    transform: scale(1.05);
}

.play-video-btn i {
    margin-right: 10px;
}


/* --- 2. Team Showcase Section --- */
#team-showcase {
    padding: 80px 0;
}

.team-controls {
    margin-bottom: 50px;
}

.team-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
}

.team-search-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-text);
}

#team-search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#team-search-input::placeholder {
    color: var(--secondary-text);
}

#team-search-input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(51, 213, 229, 0.3);
    outline: none;
}

.team-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-cyan);
}

.member-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.member-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.team-member-card:hover .member-image-wrapper img {
    transform: scale(1.05);
}

.member-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(232, 73, 232, 0.8), transparent);
    padding: 20px 15px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.team-member-card:hover .member-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.member-hover-info i {
    margin-right: 8px;
}

.member-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-text);
}

.member-info p {
    color: var(--secondary-text);
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.view-profile-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    align-self: center;
}


/* --- 3. Organizational Chart Section --- */
#org-chart {
    padding: 80px 0;
    background: var(--card-bg);
}

.org-chart-wrapper {
    text-align: center;
}

.org-chart-wrapper img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--dark-blue);
}

.chart-note {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--secondary-text);
    font-style: italic;
    font-size: 0.9rem;
}


/* --- 4. Behind The Scenes Gallery --- */
#bts-gallery {
    padding: 80px 0;
}

.bts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bts-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bts-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.bts-item:hover img {
    transform: scale(1.05);
}


/* --- 5. Team CTA Section --- */
.team-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(10,10,42,0.9), rgba(10,10,42,0.9)), url('../images/common/cta-bg.jpg') no-repeat center center/cover;
    text-align: center;
}

.team-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.team-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
}


/* --- 6. Upgraded Team Member Modal --- */
#team-member-modal .modal-container {
    max-width: 900px;
    padding: 0;
    background: var(--dark-blue);
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 50px rgba(51, 213, 229, 0.2);
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
}

.modal-image-col {
    background-color: #000;
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details-col {
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-details-col h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.modal-details-col .designation {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.modal-details-col .bio {
    color: var(--secondary-text);
    margin-bottom: 25px;
    line-height: 1.8;
}

.modal-extra-section {
    margin-top: 25px;
}

.modal-extra-section h4 {
    color: var(--primary-text);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.skills-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills-list li {
    background-color: var(--card-bg);
    color: var(--accent-cyan);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

.qna-item {
    margin-bottom: 15px;
}
.qna-item .question {
    font-weight: 600;
    color: var(--primary-text);
}
.qna-item .answer {
    color: var(--secondary-text);
    padding-left: 15px;
    border-left: 2px solid var(--accent-pink);
    margin-top: 5px;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.project-card {
    text-decoration: none;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.project-card img {
    width: 100%;
    display: block;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.project-card p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,42,0.8);
    color: var(--secondary-text);
    font-size: 0.85rem;
    text-align: center;
    padding: 8px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.project-card:hover img {
    transform: scale(1.05);
}
.project-card:hover p {
    opacity: 1;
}

.testimonial-box {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid var(--accent-cyan);
    position: relative;
}
.testimonial-box .quote {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--secondary-text);
}
.testimonial-box .author {
    text-align: right;
    font-weight: 600;
    color: var(--primary-text);
}

.blog-post-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--secondary-text);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.blog-post-link:hover {
    background: var(--dark-blue);
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.modal-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.modal-footer .social-links a {
    color: var(--secondary-text);
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.modal-footer .social-links a:hover {
    color: var(--accent-pink);
    transform: scale(1.1);
}
.modal-booking-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* --- 7. Video Modal --- */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1010;
    display: none; /* Changed by JS */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.video-modal-overlay.active {
    display: flex;
}
.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
    opacity: 1;
}
.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- 8. Responsive Adjustments for New Elements --- */
@media (max-width: 992px) {
    .team-hero-upgraded h1 { font-size: 2.5rem; }
    .bts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .team-hero-upgraded { height: 60vh; }
    .team-hero-upgraded h1 { font-size: 2rem; }
    .team-hero-upgraded p { font-size: 1rem; }
    .team-controls { flex-direction: column; }
    .modal-content-grid { grid-template-columns: 1fr; }
    .modal-image-col { height: 350px; }
    .modal-details-col { padding: 30px; max-height: 80vh; }
    .featured-projects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .team-filters { gap: 8px; }
    .filter-btn { padding: 8px 15px; font-size: 0.85rem; }
    .modal-details-col h2 { font-size: 1.8rem; }
    .modal-footer { flex-direction: column; align-items: stretch; }
    .modal-booking-btn { width: 100%; text-align: center; }
}

/*
=====================================================
  CSS Upgrades: Personalization Features
=====================================================
*/

/* --- Designer's Voice: Custom Audio Player --- */
.audio-player-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.audio-player-wrapper .play-btn {
    background: var(--accent-cyan);
    color: var(--dark-blue);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.audio-player-wrapper .play-btn:hover {
    transform: scale(1.1);
}

.audio-timeline {
    flex-grow: 1;
    height: 6px;
    background: var(--dark-blue);
    border-radius: 3px;
    margin: 0 15px;
    cursor: pointer;
}

.audio-timeline .progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    border-radius: 3px;
}

.audio-player-wrapper .duration {
    font-size: 0.9rem;
    color: var(--secondary-text);
    font-weight: 500;
}


/* --- Designer's Moodboard --- */
.moodboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.moodboard-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.moodboard-grid img:hover {
    opacity: 1;
    transform: scale(1.05);
    cursor: pointer;
}


/* --- Personal Signature --- */
.signature-wrapper {
    margin-top: 10px;
    text-align: right;
}

.signature-wrapper img {
    max-width: 180px;
    height: auto;
    filter: invert(90%) sepia(30%) saturate(500%) hue-rotate(130deg); /* Makes it look like cyan ink */
    opacity: 0.8;
}

/* --- Responsive Adjustments for new sections --- */
@media (max-width: 480px) {
    .moodboard-grid img {
        height: 80px;
    }
    .signature-wrapper img {
        max-width: 140px;
    }
}


/*
=====================================================
  End of Our Team Page Stylesheet
=====================================================
*/
/*
=====================================================
  CSS Upgrades: Gamification & Timeline
=====================================================
*/

/* --- "Find Your Designer" Quiz Button --- */
.quiz-cta-wrapper {
    text-align: center;
    margin-bottom: 40px;
}
#start-quiz-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(51, 213, 229, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(51, 213, 229, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(51, 213, 229, 0); }
}

/* --- Interactive Team Timeline --- */
#team-timeline {
    padding: 80px 0;
    position: relative;
}
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline-line {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    width: 4px;
    background: var(--border-color);
    transform: translateX(-50%);
    border-radius: 2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-dot {
    position: absolute;
    top: 15px;
    width: 20px;
    height: 20px;
    background: var(--accent-cyan);
    border: 4px solid var(--card-bg);
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
    transform: translateX(50%);
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    transform: translateX(-50%);
}
.timeline-content {
    padding: 20px 30px;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}
.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}
.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 5px;
}
.timeline-content h3 {
    margin-bottom: 5px;
}

/* --- Quiz Modal Styles --- */
#quiz-modal .modal-container {
    max-width: 700px;
    text-align: center;
}
.quiz-step {
    display: none;
}
.quiz-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}
.quiz-step h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}
.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.quiz-option {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-text);
    font-size: 1rem;
    font-weight: 500;
}
.quiz-option:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}
.quiz-option img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}
.quiz-options.text-options {
    grid-template-columns: 1fr 1fr;
}
.text-options .quiz-option {
    padding: 30px 15px;
}
.text-options .quiz-option i {
    font-size: 2rem;
    color: var(--accent-pink);
    margin-bottom: 15px;
}
.quiz-result h3 {
    color: var(--accent-cyan);
}
#quiz-result-card {
    margin: 20px auto;
    max-width: 300px;
    pointer-events: none; /* Make card non-interactive */
}
#reset-quiz-btn {
    margin-top: 20px;
}

/* --- Responsive for Timeline --- */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        transform: translateX(-50%);
    }
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }
}

/*
=====================================================
  CSS Upgrades: Final Polish & Advanced Features
=====================================================
*/

/* --- Team at a Glance (Animated Stats) --- */
#team-stats {
    background: var(--card-bg);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 1rem;
    color: var(--secondary-text);
}


/* --- Team Skills Radar Chart --- */
.chart-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
#teamSkillsChart {
    width: 100% !important;
    height: auto !important;
}


/* --- Join Us Section --- */
#join-us {
    padding: 80px 0;
    background: var(--dark-blue);
}
.join-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.join-us-content .section-title h2::after {
    display: none; /* Remove centered underline */
}
.join-us-content p {
    margin-bottom: 30px;
}
.join-us-image {
    border-radius: 15px;
    overflow: hidden;
}
.join-us-image img {
    width: 100%;
    display: block;
}

/* --- Responsive for new sections --- */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
    .join-us-grid {
        grid-template-columns: 1fr;
    }
    .join-us-image {
        order: -1;
        margin-bottom: 30px;
    }
}

/*
=====================================================
  CSS Upgrades: How We Work Section (Corrected v3)
=====================================================
*/

#how-we-work {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.work-process-timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

/* The central timeline line */
.work-process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-pink), var(--accent-cyan));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.process-step-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ODD items (1, 3, 5...) are on the LEFT */
.process-step-item:nth-child(odd) {
    left: 0;
    text-align: right; /* Text inside aligns to the right */
}

/* EVEN items (2, 4, 6...) are on the RIGHT */
.process-step-item:nth-child(even) {
    left: 50%;
    text-align: left; /* Text inside aligns to the left */
}

.process-step-number {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 44px;
    top: 32px;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: var(--dark-blue);
    color: var(--accent-cyan);
    border: 3px solid var(--accent-cyan);
    border-radius: 50%;
    text-align: center;
    z-index: 2;
}

/* Number position for ODD items (left side) */
.process-step-item:nth-child(odd) .process-step-number {
    right: -25px;
}

/* Number position for EVEN items (right side) */
.process-step-item:nth-child(even) .process-step-number {
    left: -25px;
}

.process-step-content {
    padding: 25px 30px;
    background: var(--dark-blue);
    border: 1px solid var(--border-color);
    position: relative;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

/* Icon alignment for ODD items (left side) */
.process-step-item:nth-child(odd) .process-step-content {
    align-items: flex-end;
}

/* Icon alignment for EVEN items (right side) is default (flex-start) */

.step-icon {
    font-size: 2rem;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.process-step-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Phase Titles */
.process-phase-title {
    padding: 10px 0;
    margin: 30px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-phase-title h4 {
    display: inline-block;
    background-color: var(--card-bg);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--primary-text);
    border: 1px solid var(--accent-cyan);
    font-size: 1.1rem;
}

/* Responsive Styles for the timeline */
@media (max-width: 768px) {
    .work-process-timeline::after {
        left: 35px;
    }
    
    .process-step-item,
    .process-step-item:nth-child(even) { /* Target ALL items for mobile view */
        width: 100%;
        left: 0;
        padding-left: 80px;
        padding-right: 15px;
        text-align: left; /* All text aligns left on mobile */
    }
    
    .process-step-item .process-step-content,
    .process-step-item:nth-child(odd) .process-step-content {
        align-items: flex-start; /* All icons align left on mobile */
    }

    .process-step-number,
    .process-step-item:nth-child(odd) .process-step-number,
    .process-step-item:nth-child(even) .process-step-number {
        left: 35px;
        transform: translateX(-50%);
    }
    
    .process-phase-title {
        text-align: left;
        padding-left: 80px;
    }
}