/* --- WRAPPER & LAYOUT --- */
.inner-banner-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    padding: 10px 20px;
    min-height: 100svh;
    overflow: hidden;
    opacity: 0;
    animation: fadeInBackground 1.5s ease-out forwards;
}

.inner-banner-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 80.18%, #FFFFFF 100%);
    z-index: 1;
}

/* --- CONTENT CONTAINER --- */
.inner-banner-content {
    flex: 1;
    display: flex;
    align-items: flex-start; 
    padding-top: 25vh; 
    width: 100%;
    position: relative;
    z-index: 2;
}

.inner-banner-row {
    display: flex;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease-out forwards, cloudFloat 30s linear infinite;
    animation-delay: 0.3s, 2s;
    will-change: transform;
    transform-origin: center;
}

/* --- COLUMNS --- */
.inner-banner-col {
    width: 50%;
    padding: 20px;
}

.inner-banner-col.left {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
}

/* --- TYPOGRAPHY --- */
.inner-banner-col h1 {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 150%;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    color: #36194C !important;
}

.inner-description {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0;
    color: #36194C !important;
}

/* --- BOTTOM GLASS BOX SECTION --- */
.inner-banner-bottom {
    max-width: 1440px;
    min-width: 1200px;
    margin: 0px auto;
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0px 10px 25px 0px #0000004D;
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    z-index: 2;
}

.inner-banner-bottom h2 {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 1em;
    line-height: 150%;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #36194C !important;
}

.inner-banner-bottom h2.h2-alternate-style {
    text-align: left;
    font-weight: 500;
    font-size: 2em;
    text-transform: none;
    letter-spacing: 0;
}

.bottom-description {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 20px;
    color: #36194C !important;
}

.bottom-description-2 {
    text-align: left;
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #36194C !important;
}

/* --- ICON BLOCKS (Fixing click-through) --- */
.icon-blocks-main-heading {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 1.875em;
    line-height: 150%;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    text-align: center;
    color: #36194C;
    margin: 0 auto 20px;
    max-width: 1440px;
    width: 90%;
    position: relative;
    z-index: 2;
}

.icon-blocks-container {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.icon-block-item {
    max-width: 150px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0px 10px 25px 0px #0000004D;
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.2);
    position: relative; /* REQUIRED for the absolute link */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch; 
    transition: background-color 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* The Invisible Link Overlay */
.icon-block-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Ensures link is on top of icon/text */
    text-decoration: none;
    cursor: pointer;
}

.icon-block-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 8px; 
    width: 100%;
    height: 100%;
    pointer-events: none; /* Critical: allows click to pass through to link */
}

.icon-block-icon {
    max-width: 50px;
    height: auto;
    margin-bottom: 16px;
}

.icon-block-text {
    color: #36194C;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 1.1em;
    line-height: 150%;
    letter-spacing: 0;
    margin: 0;
}

/* Hover effect from your code */
.icon-block-item:hover {
    background-color: rgba(242, 241, 252, 0.9);
    box-shadow: 0px 15px 25px 0px #00000066;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cloudFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes fadeInBackground {
    to { opacity: 1; }
}

/* --- RESPONSIVE DESIGN (Un-nested and Cleaned) --- */
@media screen and (max-width: 991px) {
    .inner-banner-content {
        align-items: flex-start;
        padding-top: 80px; 
        padding-bottom: 50px;
    }

    .inner-banner-col {
        width: 100% !important;
        padding: 0px;
        margin-bottom: 20px;
    }

    .inner-banner-row {
        display: block;
    }

    .inner-banner-col h1 {
        font-size: 1.5em !important;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .inner-banner-bottom {
        min-width: auto;
        padding: 20px;
    }

    .bottom-description {
        font-size: 1.1em;
    }

    .icon-blocks-main-heading {
        font-size: 1.5em;
    }

    .icon-blocks-container {
        width: auto;
    }

    .icon-block-item {
        max-width: none;
        width: calc(50% - 20px);
    }

    .inner-banner-wrapper {
        min-height: auto !important;
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .inner-banner-col.left {
        text-align: center;
    }

    .inner-description {
        font-size: 1.1em;
    }

    .tissb-column-left .tissb-image {
        max-width: 80%;
        margin: 0px auto;
    }
}