/* QA System Section */
.qa-system-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    position: relative;
    z-index: 10;
    transition: var(--theme-transition);
    overflow: hidden;
}

/* Project Spotlight Badge */
.spotlight-badge {
    position: absolute;
    top: 70px;
    right: -70px;
    background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 80px;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(255, 255, 255, 0.1) inset;
    z-index: 20;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: badgePulse 3s infinite ease-in-out;
    overflow: hidden;
    --shimmer-opacity: 1;
}

.spotlight-badge .mouse-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0) 50%
    );
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.2s ease;
    mix-blend-mode: overlay;
}

.qa-system-section:hover .spotlight-badge .mouse-shimmer {
    opacity: 1;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(255, 255, 255, 0.1) inset;
    }
    50% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(255, 255, 255, 0.2) inset;
    }
}

@keyframes badgeShimmer {
    0% {
        background-position: -200px;
    }
    100% {
        background-position: 200px;
    }
}

.spotlight-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: -1;
}

.spotlight-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 1;
    animation: shimmerEffect 6s infinite;
    opacity: var(--shimmer-opacity, 1);
    transition: opacity 0.3s ease;
}

@keyframes shimmerEffect {
    0% {
        left: -150%;
    }
    60%, 100% {
        left: 150%;
    }
}

.qa-system-section:hover .spotlight-badge {
    transform: rotate(45deg) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(255, 255, 255, 0.2) inset;
}

.section-heading {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    text-align: center;
}

.section-subheading {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Client Tag */
.client-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.client-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.industry-badge {
    background-color: rgba(61, 126, 255, 0.1);
    color: var(--color-blue);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.qa-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.qa-preview-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.qa-preview.enlarged {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.qa-preview.enlarged:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.qa-system-preview {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
}

.qa-details {
    display: flex;
    gap: 40px;
}

.qa-info {
    width: 65%;
}

/* Challenge and Solution Containers */
.challenge-solution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.challenge-box, .solution-box {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-box:hover, .solution-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.challenge-box {
    border-left: 4px solid #ff6b6b;
}

.solution-box {
    border-left: 4px solid #4dabf7;
}

.challenge-box h3, .solution-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.icon-challenge, .icon-solution, .icon-results {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-challenge {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-7v2h2v-2h-2zm0-8v6h2V7h-2z' fill='%23ff6b6b'/%3E%3C/svg%3E");
}

.icon-solution {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-7v2h2v-2h-2zm2-1.645V12h-2v1.355a4 4 0 1 1 2 0z' fill='%234dabf7'/%3E%3C/svg%3E");
}

.icon-results {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8 4h13v2H8V4zM4.5 6.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm0 6.9a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zM8 11h13v2H8v-2zm0 7h13v2H8v-2z' fill='%2382c91e'/%3E%3C/svg%3E");
}

.challenge-box p, .solution-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.challenge-points {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.challenge-points li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.challenge-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b6b;
    font-size: 18px;
    line-height: 1;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tech-badge {
    background-color: rgba(61, 126, 255, 0.1);
    color: var(--color-blue);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

/* Project Timeline */
.project-timeline {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-timeline h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.timeline-container {
    position: relative;
    padding-left: 30px;
}

.timeline-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 2px;
    background-color: rgba(61, 126, 255, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-blue);
    z-index: 1;
}

.timeline-date {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-blue);
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Client Results Section */
.client-results {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.client-results h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.results-list li {
    background: linear-gradient(135deg, rgba(61, 126, 255, 0.1), rgba(61, 126, 255, 0.03));
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.results-list li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-blue-dark));
}

.results-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.time-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm1-8h4v2h-6V7h2v5z' fill='%233d7eff'/%3E%3C/svg%3E");
}

.quality-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1.177-7.86l-2.765-2.767L7 12.431l3.823 3.83 7.072-7.072L16.835 8.13l-6.012 6.01z' fill='%233d7eff'/%3E%3C/svg%3E");
}

.scale-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 10h7l-9 13v-9H4l9-13z' fill='%233d7eff'/%3E%3C/svg%3E");
}

.savings-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm-3.5-6H14a.5.5 0 1 0 0-1h-4a2.5 2.5 0 1 1 0-5h1V6h2v2h2.5v2H10a.5.5 0 1 0 0 1h4a2.5 2.5 0 1 1 0 5h-1v2h-2v-2H8.5v-2z' fill='%233d7eff'/%3E%3C/svg%3E");
}

.results-list li strong {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--color-blue);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.results-list li span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.qa-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.qa-action-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid var(--card-border);
    background-color: var(--card-bg);
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-action-btn:hover {
    background-color: var(--card-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.qa-action-btn.active {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.qa-sidebar-preview {
    width: 35%;
    position: relative;
}

.qa-sticky-sidebar {
    position: sticky;
    top: 100px;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.qa-sidebar-panel {
    padding: 30px;
    border-bottom: 1px solid var(--card-border);
}

.qa-sidebar-panel h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.qa-sidebar-panel p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Client Testimonial */
.client-panel {
    background: linear-gradient(135deg, rgba(61, 126, 255, 0.08), rgba(0, 0, 0, 0.02));
    position: relative;
}

.quote-marks {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4.583 17.321C3.553 16.227 3 15 3 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 0 1-3.5 3.5c-1.073 0-2.099-.49-2.748-1.179zm10 0C13.553 16.227 13 15 13 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 0 1-3.5 3.5c-1.073 0-2.099-.49-2.748-1.179z' fill='%233d7eff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.client-panel p {
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.client-panel p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 36px;
    color: var(--color-blue);
    line-height: 1;
    font-family: serif;
    opacity: 0.6;
}

.testimonial-author {
    font-style: normal !important;
    text-align: right;
    margin-top: 16px;
    color: var(--text-primary) !important;
    font-weight: 500;
    padding-left: 0 !important;
}

.testimonial-author::before {
    content: none !important;
}

.qa-stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qa-stats-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--card-border-light);
}

.qa-stats-list li:last-child {
    border-bottom: none;
}

.qa-stats-list li span {
    color: var(--text-secondary);
}

.qa-stats-list li strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--card-border-light);
    font-size: 15px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-.997-6l7.07-7.071-1.414-1.414-5.656 5.657-2.829-2.829-1.414 1.414L11.003 16z' fill='%233d7eff'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.qa-sidebar-backdrop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--card-bg));
    pointer-events: none;
}

/* Case Study CTA */
.case-study-cta {
    background: linear-gradient(135deg, var(--color-blue-dark), #2b4b94);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-study-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.case-study-cta p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 24px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: white;
    color: var(--color-blue-dark) !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .section-heading {
        font-size: 42px;
    }
    
    .section-subheading {
        font-size: 18px;
    }
    
    .qa-preview.enlarged {
        width: 95%;
    }
    
    .challenge-solution-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .section-heading {
        font-size: 36px;
    }
    
    .qa-details {
        flex-direction: column;
    }
    
    .qa-info,
    .qa-sidebar-preview {
        width: 100%;
    }
    
    .qa-sticky-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
    
    .results-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .qa-system-section {
        padding: 80px 0;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .section-subheading {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .qa-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .results-list {
        grid-template-columns: 1fr;
    }
    
    .case-study-cta {
        padding: 30px 20px;
    }
    
    .case-study-cta h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .spotlight-badge {
        font-size: 12px;
        padding: 6px 60px;
        right: -50px;
        top: 20px;
    }
    
    .qa-system-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .qa-feature {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .qa-sidebar-panel {
        padding: 20px;
    }
    
    .client-tag {
        flex-direction: column;
    }
}

/* App Screenshots Gallery */
.app-screenshots-section {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.screenshots-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.icon-screenshots {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h18zm-1 2H4v14h16V5zm-7 12v-2h3v2h-3zm-4 0v-2h3v2H9zm-4 0v-2h3v2H5zm11-4a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm0-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM5 7v2h4V7H5z' fill='%233d7eff'/%3E%3C/svg%3E");
}

.screenshots-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
}

.screenshots-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.screenshots-nav {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.2s ease;
    border-radius: 50%;
}

.screenshots-nav:hover {
    background-color: var(--card-hover);
    transform: scale(1.1);
}

.screenshots-indicators {
    display: flex;
    gap: 8px;
}

.screenshots-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--card-border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.screenshots-indicators .indicator.active {
    background-color: var(--color-blue);
    transform: scale(1.2);
}

.screenshots-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 700px;
}

/* iPhone 14 mockup */
.iphone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background-color: #1A1A1A;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    border: 1px solid #444;
    perspective: 800px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.iphone-mockup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background-color: #1A1A1A;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 15;
}

.iphone-mockup::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background-color: #444;
    border-radius: 4px;
    z-index: 16;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.screenshots-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.screenshot.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reflection */
.iphone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
    border-radius: 28px;
    pointer-events: none;
    z-index: 10;
}

/* Power button */
.iphone-mockup .power-button {
    position: absolute;
    right: -3px;
    top: 120px;
    width: 3px;
    height: 60px;
    background-color: #333;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

/* Volume buttons */
.iphone-mockup .volume-up {
    position: absolute;
    left: -3px;
    top: 100px;
    width: 3px;
    height: 40px;
    background-color: #333;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.iphone-mockup .volume-down {
    position: absolute;
    left: -3px;
    top: 150px;
    width: 3px;
    height: 40px;
    background-color: #333;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.screenshot-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    color: white;
    text-align: center;
    font-size: 13px;
}

.screenshot-info h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}

.screenshot-info p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.screenshots-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--card-border) transparent;
    justify-content: center;
}

.screenshots-thumbs::-webkit-scrollbar {
    height: 6px;
}

.screenshots-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.screenshots-thumbs::-webkit-scrollbar-thumb {
    background-color: var(--card-border);
    border-radius: 6px;
}

.thumb {
    flex: 0 0 60px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.thumb:hover {
    opacity: 0.8;
}

.thumb.active {
    opacity: 1;
    border-color: var(--color-blue);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animation for the iPhone mockup */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-10px) rotateY(5deg);
    }
}

.iphone-mockup {
    animation: float 8s ease-in-out infinite;
}

@media (max-width: 768px) {
    .iphone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .screenshots-thumbs {
        flex-wrap: wrap;
    }
    
    .thumb {
        flex: 0 0 50px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .iphone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .screenshots-title {
        font-size: 20px;
    }
    
    .screenshots-description {
        font-size: 14px;
    }
}

/* Mouse shimmer effect requires the badge-shimmer.js script to be included in your project */
@media (prefers-reduced-motion: no-preference) {
    /* The mouse shimmer effect is enabled when the script is loaded */
} 