/* 🌟 Future Innovation Section */
.future-innovation-section {
    position: relative;
    min-height: 100vh;
    padding: 5rem 0 3rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-image: url("../images/future-innovation-v2/maggic-tile.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Overlay */
.future-innovation-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

/* Container */
.future-innovation-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.future-innovation-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.future-section-title {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.future-section-subtitle {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    max-width: 560px;
    margin: 0;
}

/* 🧩 Cards Grid */
.future-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: start;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

/* ✨ Card */
.future-card {
    position: relative;
    height: 380px;
    width: 280px;
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 22px 44px -18px rgba(6, 12, 24, 0.6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.future-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 26px 56px -20px rgba(6, 12, 24, 0.65);
    cursor: pointer;
}

/* Card Content */
.future-card-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

/* 🖼️ Image */
.future-img-wrap {
    width: 100%;
    height: 40%;
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.future-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* 🏷️ Title */
.future-card-title {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: center;
    margin-top: 0.3rem;
    margin-inline: 0.2rem;
    margin-bottom: 0.3rem;
}

.future-card-description {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    color: #e2e8f0;
    text-align: justify;
    max-width: 90%;
    min-height: 30%;
    text-overflow: ellipsis;
}



/* ⏩ Pagination */
.future-navigation-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.future-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    box-shadow: 0 12px 24px -12px rgba(15, 23, 42, 0.6);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.future-nav-btn:hover {
    transform: scale(1.08);
    background: #f8fafc;
}

.future-nav-icon {
    width: 16px;
    height: 16px;
}

/* 📱 Responsive */
@media (max-width: 767px) {
    .future-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .future-card {
        width: 90%;
        height: 360px;
    }
}