/* =========================================
   TOP BANNER / HERO SECTION
   ========================================= */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 40px 100px;
    /* Increased top padding for fixed header */
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    min-height: 80vh;
}

/* Left Content Styling */
.content-side {
    flex: 1.2;
    z-index: 2;
}

h2 {
    font-family: var(--font-main);
    font-size: clamp(28px, 4vw, 55px);
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: -0.03em;
}



.description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 540px;
}

/* Features List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    background-color: var(--primary-color);
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 71, 255, 0.2);
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}

.feature-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Right Image Styling */
.image-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.2s;
}

.main-img-container {
    width: 100%;
    aspect-ratio: 4/5;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.main-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
}

.main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-side:hover .main-img-container img {
    transform: scale(1.05);
}

/* Glassmorphism Labels */
.glass-label {
    position: absolute;
    left: -40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 260px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.label-1 {
    bottom: 120px;
    transition-delay: 0.4s;
}

.label-2 {
    bottom: 50px;
    transition-delay: 0.5s;
}

.glass-label span {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
}

.check-circle {
    background-color: var(--primary-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-side>* {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.content-side .portfolio-eyebrow-white-left {
    animation-delay: 0.1s;
}

.content-side h1 {
    animation-delay: 0.2s;
}

.content-side .description {
    animation-delay: 0.3s;
}

.content-side .feature-list {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1200px) {
    .section-container {
        gap: 40px;
        padding: 140px 32px 80px;
    }

    .glass-label {
        left: 20px;
        width: 220px;
    }
}

@media (max-width: 992px) {
    .section-container {
        flex-direction: column;
        padding: 120px 24px 60px;
        text-align: center;
        min-height: auto;
    }

    .content-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-list {
        align-items: flex-start;
        text-align: left;
        max-width: 500px;
        margin-bottom: 60px;
    }

    .main-img-container {
        height: 500px;
    }

    h1 {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    .glass-label {
        width: 180px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .main-img-container {
        height: 400px;
    }
}