/* ============================================
   LAPTOP SHOWCASE SECTION
   ============================================ */

/* ============================================ */
/* 🔧 EASY ADJUSTMENT - CHANGE THESE 4 VALUES  */
/* ============================================ */

:root {
    --screen-top: 6.1%;
    --screen-left: 14%;
    --screen-width: 72%;
    --screen-height: 59.5%;
}

/* ============================================ */
/* 📱 MOBILE ADJUSTMENTS                        */
/* ============================================ */
@media (max-width: 768px) {
    :root {
    --screen-top: 6.1%;
    --screen-left: 14%;
    --screen-width: 72%;
    --screen-height: 59.5%;
    }
}

@media (max-width: 480px) {
    :root {
            --screen-top: 6.1%;
    --screen-left: 14%;
    --screen-width: 72%;
    --screen-height: 59.5%;
    }
}

/* ============================================ */
/* MAIN SECTION STYLES                          */
/* ============================================ */

/* .laptop-showcase-section {
    position: relative;
    padding: 80px 24px 100px;
    background: transparent;
} */

.laptop-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 50px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(36, 132, 198, 0.15);
    border: 1px solid rgba(36, 132, 198, 0.3);
    border-radius: 30px;
    color: #6db3ff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, #aad0ff 0%, #6db3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* ============================================ */
/* LAPTOP WRAPPER - Image + Screen               */
/* ============================================ */

.laptop-wrapper {
    position: relative;
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}

.laptop-frame {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

/* ============================================ */
/* SCREEN CONTENT - POSITIONED INSIDE LAPTOP     */
/* ============================================ */

.laptop-screen-content {
    position: absolute;
    top: var(--screen-top);
    left: var(--screen-left);
    width: var(--screen-width);
    height: var(--screen-height);
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(180deg, #0a1a3a 0%, #06102a 100%);
    scroll-behavior: smooth;
    
    /* Trapezoid shape - narrower top, wider bottom */
    clip-path: polygon(
        1.4% 0%,      /* top-left - slightly inset */
        98.6% 0%,     /* top-right - slightly inset */
        99.5% 100%,  /* bottom-right - full width */
        0.5% 100%     /* bottom-left - full width */
    );
}

/* Custom Scrollbar */
.laptop-screen-content::-webkit-scrollbar {
    width: 3px;
}

.laptop-screen-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.laptop-screen-content::-webkit-scrollbar-thumb {
    background: #2484c6;
    border-radius: 3px;
}

.laptop-screen-content::-webkit-scrollbar-thumb:hover {
    background: #3a9bdc;
}

/* ============================================ */
/* INSIDE SCREEN CONTENT                        */
/* ============================================ */

.screen-inner {
    padding: 16px 14px;
}

/* ----- Header ----- */
.screen-header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2484c6, #1a5fa6);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #aad0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.screen-tagline {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}

/* ----- Stats ----- */
.screen-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
    padding: 10px 6px;
    background: rgba(36, 132, 198, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(36, 132, 198, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #aad0ff;
    line-height: 1.2;
}

.stat-label {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.45);
}

/* ----- About ----- */
.screen-about {
    margin-bottom: 16px;
}

.screen-about h3 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.screen-about h3 i {
    color: #6db3ff;
    font-size: 10px;
}

.screen-about p {
    font-size: 9px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ----- Gallery ----- */
.screen-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- Core Values ----- */
.screen-values {
    margin-bottom: 16px;
}

.screen-values h3 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.screen-values h3 i {
    color: #6db3ff;
    font-size: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.value-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.75);
}

.value-tag i {
    color: #6db3ff;
    font-size: 8px;
}

/* ----- Services ----- */
.screen-services {
    margin-bottom: 16px;
}

.screen-services h3 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.screen-services h3 i {
    color: #6db3ff;
    font-size: 10px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.service-pill {
    padding: 4px 8px;
    background: rgba(36, 132, 198, 0.12);
    border: 1px solid rgba(36, 132, 198, 0.18);
    border-radius: 20px;
    font-size: 8px;
    color: #aad0ff;
    display: flex;
    align-items: center;
    gap: 3px;
}

.service-pill i {
    font-size: 7px;
}

/* ----- Timeline ----- */
.screen-timeline {
    margin-bottom: 16px;
}

.screen-timeline h3 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.screen-timeline h3 i {
    color: #6db3ff;
    font-size: 10px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.timeline-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.year {
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #6db3ff;
    min-width: 32px;
}

.event {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.75);
}

/* ----- CTA ----- */
.screen-cta {
    text-align: center;
    padding: 14px 10px;
    background: linear-gradient(135deg, rgba(36, 132, 198, 0.12), rgba(45, 63, 148, 0.08));
    border-radius: 10px;
    border: 1px solid rgba(36, 132, 198, 0.18);
    margin-bottom: 14px;
}

.screen-cta h3 {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.screen-cta p {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}

.screen-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: linear-gradient(135deg, #2484c6, #1a5fa6);
    border-radius: 30px;
    color: white;
    font-size: 9px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.screen-btn:hover {
    background: linear-gradient(135deg, #3a9bdc, #2484c6);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(36, 132, 198, 0.3);
}

.screen-btn i {
    font-size: 8px;
}

/* ----- Footer ----- */
.screen-footer {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.screen-footer p {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

/* ============================================ */
/* RESPONSIVE FINE-TUNING                       */
/* ============================================ */

@media (max-width: 900px) {
    .screen-inner {
        padding: 14px 12px;
    }
    
    .stat-number {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .laptop-showcase-section {
        padding: 60px 16px 80px;
    }
    
    .laptop-showcase-container {
        margin-top: 7px;
    }

    .screen-inner {
        padding: 12px 10px;
    }
    
    .logo-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 13px;
    }
    
    .screen-about p {
        font-size: 8px;
    }
    
    .screen-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    .screen-inner {
        padding: 10px 8px;
    }
    
    .logo-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .screen-tagline {
        font-size: 7px;
    }
    
    .stat-number {
        font-size: 11px;
    }
    
    .stat-label {
        font-size: 6px;
    }
    
    .screen-about h3,
    .screen-values h3,
    .screen-services h3,
    .screen-timeline h3 {
        font-size: 10px;
    }
    
    .value-tag {
        font-size: 7px;
    }
    
    .service-pill {
        font-size: 7px;
    }
    
    .year {
        font-size: 8px;
        min-width: 26px;
    }
    
    .event {
        font-size: 7px;
    }
    
    .screen-cta h3 {
        font-size: 11px;
    }
}

/* ============================================ */
/* 🦋 FLYING LOGOS BACKGROUND                    */
/* ============================================ */


/* ============================================ */
/* 🖥️ LAPTOP SCREEN - Video + Images Layout      */
/* ============================================ */

/* Video at Top */
.laptop-video-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.laptop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Two Images Side by Side */
.laptop-two-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 6px;
}

.laptop-half-img {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.laptop-half-img:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.laptop-half-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wide Image at Bottom */
.laptop-wide-img {
    width: 100%;
    aspect-ratio: 16 / 6;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.laptop-wide-img:hover {
    transform: scale(1.01);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.laptop-wide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover effects for all clickable images */
.laptop-half-img,
.laptop-wide-img {
    cursor: pointer;
    position: relative;
}

.laptop-half-img::after,
.laptop-wide-img::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.laptop-half-img:hover::after,
.laptop-wide-img:hover::after {
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .laptop-two-images {
        gap: 4px;
        margin-bottom: 4px;
    }
    
    .laptop-video-wrap {
        margin-bottom: 4px;
        border-radius: 4px;
    }
    
    .laptop-half-img,
    .laptop-wide-img {
        border-radius: 4px;
    }
}