/* File: keystoneapp/templates/static_pages/networking/network.html */
.page-bg {
    background: url("/static/img/network.jpg") center center/cover no-repeat fixed;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.page-overlay {
    background: rgba(20, 28, 38, 0.80);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-content {
    position: relative;
    z-index: 2;
}

.icon-round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: #fff;
    box-shadow: 0 4px 24px 0 rgba(48, 207, 208, 0.21);
    margin-bottom: .5em;
}

.section-title {
    letter-spacing: 1px;
    font-weight: 700;
    color: #30cfd0;
    text-shadow: 1px 2px 12px #222c;
}

.section-sub {
    color: #fff;
    font-weight: 400;
    opacity: 0.95;
}

.card-bg {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    box-shadow: 0 2px 24px 0 #0002;
    backdrop-filter: blur(2px);
    color: #fff;
    border: 1px solid #30cfd0;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .card-bg {
        padding: 1.2rem;
    }
}



/* File: keystoneapp/templates/static_pages/industries/collaborations.html */

.prime-bg {
    background: url("/static/img/collabo.jpg") center center/cover no-repeat fixed;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.prime-overlay {
    background: rgba(20, 28, 38, 0.82);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.prime-content {
    position: relative;
    z-index: 2;
}

.prime-icon {
    font-size: 2.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: #fff;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
    box-shadow: 0 4px 24px 0 rgba(48, 207, 208, 0.22);
}

.prime-card {
    background: rgba(255, 255, 255, 0.09);
    border-radius: 1.25rem;
    box-shadow: 0 2px 24px 0 #0002;
    color: #fff;
    border: 1.5px solid #30cfd0;
    min-height: 260px;
    transition: transform .15s;
}

.prime-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #ffd200;
}

.section-title {
    letter-spacing: 1px;
    font-weight: 700;
    color: #30cfd0;
    text-shadow: 1px 2px 12px #222c;
}

@media (max-width: 991px) {
    .prime-card {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .prime-card {
        padding: 1.2rem;
        min-height: 0;
    }
}

/* File: keystoneapp/templates/static_pages/industries/industry.html */

.industries-bg {
    background: url("/static/img/industry.jpg") center center/cover no-repeat fixed;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.industries-overlay {
    background: rgba(20, 28, 38, 0.82);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.industries-content {
    position: relative;
    z-index: 2;
}

.industry-icon {
    font-size: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: #fff;
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 24px 0 rgba(48, 207, 208, 0.17);
}

.industry-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    box-shadow: 0 2px 24px 0 #0002;
    color: #fff;
    border: 1px solid #30cfd0;
    min-height: 250px;
    transition: transform .15s;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #ffd200;
}

.section-title {
    letter-spacing: 1px;
    font-weight: 700;
    color: #30cfd0;
    text-shadow: 1px 2px 12px #222c;
}

@media (max-width: 991px) {
    .industry-card {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .industry-card {
        padding: 1.2rem;
        min-height: 0;
    }
}