.side-images{
    position: relative;
}
.future-library {
    display: flex;
    border-radius: 16px;
    padding: 64px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    margin-bottom: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.future-library-content {
    flex: 1;
    padding-right: 40px;
    z-index: 2;
}

.overlapping-images {
    position: relative;
    flex: 0 0 40%;
    min-height: 350px;
}

.top-image-container {
    position: absolute;
    width: 70%;
    height: 250px;
    right: 0;
    top: 0;
    z-index: 1;
}

.bottom-image-container {
    position: absolute;
    width: 60%;
    height: 200px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.top-image,
.bottom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.future-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 16px;
}

.future-title {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 500;
    color: white;
}

.future-title span {
    font-weight: 700;
}

.future-description {
    margin-bottom: 32px;
    line-height: 1.6;
    font-size: 16px;
    color: white;
}

.future-description p{
    color: white;
}

.future-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 32px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.future-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.future-btn svg {
    transition: transform 0.3s ease;
}

.future-btn:hover svg {
    transform: translateX(4px);
}

.future-library-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .future-library {
        display: grid;
    grid-template-columns: 1fr;
    }
    
    .future-library-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .overlapping-images {
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
    
    .top-image-container {
        width: 60%;
        height: 200px;
    }
    
    .bottom-image-container {
        width: 50%;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .future-library {
        padding: 20px;
    grid-template-columns: 1fr;
    }
    
    .overlapping-images {
        height: 250px;
    }
    
    .top-image-container {
        width: 65%;
        height: 180px;
    }
    
    .bottom-image-container {
        width: 55%;
        height: 150px;
    }
    
    .future-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .future-library {
        padding: 30px;
        height: 100vh;
    }
    
    .overlapping-images {
        height: 220px;
    }

    .padding-mobile{
        margin-top: 110px;
    }
    
    .top-image-container {
        width: 70%;
        height: 150px;
    }
    
    .bottom-image-container {
        width: 60%;
        height: 130px;
    }
    
    .future-title {
        font-size: 24px;
    }
    
    .future-badge {
        font-size: 12px;
    }
    
    .future-btn {
        width: 100%;
        justify-content: center;
    }

    .side-images{
        height: 50%;
        padding-bottom: 30px;
    }
}