.about-inner {
    background-image: url(../site-images/aboutINNER-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    padding: 50px 0;
    position: relative;
}

.about-inner::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0c01a028;
}

.about-inner .container {
    position: relative;
    z-index: 10;
}

.about-inner .about-hero {
    padding: 50px 50px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    border: 5px solid transparent;
    border-image-source: linear-gradient(341deg, #000058 36%, #000058 36%, #d7d7f0 26%, #f7f7f7 75%, #0c01a0 47%, #0c01a0 47%);
    border-image-slice: 1;
}

.about-inner .about-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(0, 255, 153, 0.182);
    filter: blur(60px);
    top: -180px;
    left: -180px;
    border-radius: 50%;
    z-index: 0;
}

.about-inner .about-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(0, 255, 153, 0.139);
    filter: blur(60px);
    bottom: -180px;
    right: -180px;
    border-radius: 50%;
    z-index: 0;
}

.about-inner .hero-left h4 {
    letter-spacing: 2px;
    font-size: 20px;
    color: #0045ab;
    margin-bottom: 12px;
    font-weight: 700;
}

.about-inner .hero-left h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 700;
}

.about-inner .hero-left h1 span {
    color: #4500af;
}

.about-inner .hero-left p {
    font-size: 18px;
    opacity: 0.85;
    line-height: 1.7;
    max-width: 640px;
}

.about-inner .hero-buttons {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-inner .btn-abinner {
    background: transparent;
    border: 2px solid rgba(55, 0, 255, 0.692);
    color: #000000;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;

    transition: 0.25s ease;
}

.about-inner .btn-abinnerr:hover {
    background: rgba(0, 255, 153, 0.08);
}

.about-inner .hero-card {
    background: rgba(255, 255, 255, 0.27);
    border: 1px solid rgba(0, 255, 153, 0.25);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 0 35px rgba(0, 255, 153, 0.08);
}

.about-inner .hero-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    background-color: #ffffff;
    display: inline-block;
    padding: 5px 8px;
    border-radius: 5px;
    color: #090000;
}

.about-inner .hero-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;

}

.about-inner .hero-card ul {
    padding-left: 0rem !important;
}

.about-inner .hero-card li {
    display: flex;
    gap: 10px;
    line-height: 1.5;
    opacity: 0.9;
    font-size: 18px;
}

.about-inner .dot {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: #6db807;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(0, 255, 153, 0.35);
}

/* Sections */


/***** responsive *****/
@media (max-width:990px) {
    .about-inner .about-hero {
        margin-top: 50px;
        padding: 70px 25px;
    }

    .about-inner .hero-card {
        margin-top: 50px;
    }

    .about-inner .hero-left p {
        font-size: 20px;
    }

    .about-inner .hero-card li {
        font-size: 20px;
    }
}