﻿#admin-hub-main-container {
    font-size: 13px;
    font-family: work-sans-regular, Arial, sans-serif;
}

.admin-hub-banner-section {
    background: linear-gradient(135deg, #040729, #0f1781);
}

.admin-hub-banner-container {
    padding: 100px 0 0 0;
    text-align: center;
}

.admin-hub-banner-container > div {
    display: inline-block;
    vertical-align: middle;
    width: 42%;
    max-width: 600px;
    margin: 20px;
    text-align: left;
}

.admin-hub-banner-title-wrapper {
    color: #82d0ff;
    background: linear-gradient(92deg, #47c9fc, #e951ff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    max-width: 550px;
}

.admin-hub-banner-desc {
    color: #e2e2e2;
}

.admin-hub-banner-btn {
    background: linear-gradient(92deg, #47c9fcad, #e951ffa3);
    padding: 13px 25px;
    border-radius: 6px;
    margin: 0px
}

.admin-hub-banner-btn i{
    display: inline-block;
    vertical-align: middle;
    width: 20px;
}

.admin-hub-banner-image img{
    max-width: 100%;
    display: block;
    height: auto;
    object-fit: scale-down;
    margin: auto;
}

.admin-hub-feature-pane-wrapper {
    display: flex;
    max-width: 1400px;
    margin: auto;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: space-evenly;
    gap: 30px;
    padding-bottom: 60px;
    perspective: 1400px;
}

.admin-hub-feature-pane {
    max-width: 363px;
    border: 1px solid #ffffff26;
    background: #ffffff12;
    padding: 12px;
    border-radius: 7px;
    color: white;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(40deg) scale(0.9);
    animation: cardFlipIn 1.6s cubic-bezier(.16,.84,.44,1) forwards;
    filter: blur(4px);
}

.admin-hub-feature-pane:nth-child(1) {
    animation-delay: 0.15s;
}

.admin-hub-feature-pane:nth-child(2) {
    animation-delay: 0.30s;
}

.admin-hub-feature-pane:nth-child(3) {
    animation-delay: 0.45s;
}

.feature-pane-icon-title-wrap {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #67e7ff;
}

.feature-pane-icon-wrapper {
    position: absolute;
    background: #dfdddd0d;
    border-radius: 8px;
    min-width: 50px;
    display: grid;
    place-items: center;
    border: 1px solid #ffffff33;
    height: 50px;
    width: 50px;
    left: -24px;
    top: 20%;
    backdrop-filter: blur(10px);
    box-shadow: -1px 0 28px 0 #a18cd117, 28px 28px 28px 0 #c18cd117;
    color: #67e7ff;
}

.feature-pane-icon-wrapper-first {
    background: linear-gradient(45deg, #0b0f4a, #272861);
}

.feature-pane-icon-wrapper-second {
    background: linear-gradient(45deg, #0d1159, #202467);
}

.feature-pane-icon-wrapper-third {
    background: linear-gradient(45deg, #111669, #2b2e7c);
}

.feature-pane-icon-wrapper i {
    font-size: 2em;
}

.feature-pane-content-wrap{
    padding-left: 26px;
}

.feature-pane-title-wrap {
    font-size: 1.3em;
    letter-spacing: 0.25px;
    font-family: 'work-sans-regular';
    color: #67e7ff;
    margin-bottom: 10px;
}

.feature-pane-desc-wrap {
    font-size: 0.95em;
    line-height: 1.6em;
}

/*admin hub feature section*/

.admin-hub-feature-section {
    background: #f5f5f5;
    color: #383838
}

.admin-hub-feature-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5em;
    position: relative;
    padding: 2em;
    margin-top: 1em;
}

.feature-card-wrapper {
    padding: 0 0 0 26px;
    width: 45%;
    text-align: left;
    position: relative;
}

.feature-card-wrapper::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, #1971a5, transparent);
}

.feature-card-head-wrapper {
    display: flex;
    align-items: center;
    color: #1971a5;
    gap: 7px;
}

.feature-card-head-wrapper i{
    font-size: 1.3em;
}

.feature-card-green .feature-card-head-wrapper {
    color: #008f0c;
}

.feature-card-green::before {
    background: linear-gradient(to bottom, #008f0c, transparent);
}

.feature-card-purple .feature-card-head-wrapper {
    color: #792497
}

.feature-card-purple::before {
    background: linear-gradient(to bottom, #792497, transparent);
}

/*cta banner */

.admin-hub-cta-section {
    background: linear-gradient(135deg, #eadfff, #cfe6ff);
}

.admin-cta-banner-title-wrap {
    background: linear-gradient(45deg, #1f82d7, #0049b7) text;
    -webkit-text-fill-color: transparent;
    font-family: 'poppins-medium';
}

.admin-cta-desc-wrap {
    color: #383838;
}

.admin-hub-cta-btn {
    background: linear-gradient(231deg, #187fe9, #2c9e5d);
    padding: 13px 25px;
    border-radius: 6px;
    margin-top: 20px
}

.admin-hub-cta-btn i{
    display: inline-block;
    vertical-align: middle;
    width: 20px;
}

/*key frames*/

@keyframes cardFlipIn {
    0% {
        transform: rotateY(38deg) scale(0.94);
        filter: blur(4px)
    }

    60% {
        transform: rotateY(6deg) scale(1.02);
        filter: none;
    }

    85% {
        transform: rotateY(-2deg) scale(0.995);
    }

    100% {
        transform: rotateY(0deg) scale(1);
        filter: none;
    }
}


/*media query*/

@media (max-width: 700px){
    .admin-hub-banner-container .admin-hub-banner-image, .admin-hub-cta-btn i {
        display: none;
    }
    .admin-hub-banner-container .admin-hub-banner-content {
        width: auto;
    }
    .admin-hub-feature-pane-wrapper{
        margin-left: 15px;
    }

    .admin-hub-feature-wrapper{
        padding: 0;
    }

    .feature-card-wrapper{
        width: 80%;
    }
}