.banner-button {
    padding-bottom: 120px;
}
@media (max-width: 991.98px) {
    .banner-button {
        padding-top: 30px;
        padding-bottom: 20px;
    }
}

/* section-nine-start */

section.section-nine {
    padding: 50px 0px;
    background: linear-gradient(180deg, #F5FBFF 0%, #FFF 48.95%, #FFF 100%);
}

.section-nine-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Left content panel */
.content-card {
    padding: 10px;
    transition: all 0.4s ease;
    border-radius: 24px;
    border: 6px solid #D8FFE8;
    background: #FFF;
    box-shadow: 0 3px 49px 9px rgba(0, 0, 0, 0.06);
    width: 50%;
}

.card-main {
    border-radius: 24px;
    transform: rotate3d(1, 1, 1, 343deg);
    padding: 30px 10px;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.content-card img {
    width: 200px;
    height: 200px;
}

.content-title {
    background: #14A44D;
    color: #ffffff;
    padding: 8px 16px;
    display: inline-block;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 15px;
}

.content-text {
    color: #333;
    line-height: 1.5;
    font-size: 15px;
    padding-bottom: 20px;
}

/* Right vertical cards */
.card-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    padding: 60px 0px 40px 0px;
}

.card {
    padding: 50px 10px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    border: none;
    font-weight: 500;
    border-radius: 24px;
    height: 280px;
    width: 60px;
}

/* Card colors */

.card1 {
    background: #5e43ad1a;
}

.card2 {
    background: #b300000d;
}

.card3 {
    background: #0740d20d;
}

.card4 {
    background: #029d502e;
}

.card5 {
    background: #bf31871f;
}

.card6 {
    background: #2688d72b;
}

.card111 {
    border-color: #5E43AD;
}

.card11 {
    background: #5E43AD;
}

.card111 .content-title {
    background: #5E43AD;
}

.card12 {
    border-color: #b3000070;
}

.card22 {
    background: #b3000070;
}

.card12 .content-title {
    background: #c0392b;
}

.card13 {
    border-color: #0740d26b;
}

.card13 .content-title {
    background: #224fc1;
}

.card33 {
    background: #0740d26b;
}

.card14 {
    border-color: #029d50ab;
}

.card14 .content-title {
    background: #0e6d36;
}

.card44 {
    background: #029d50ab;
}

.card15 {
    border-color: #bf3187a6;
}

.card15 .content-title {
    background: #8e44ad;
}

.card55 {
    background: #bf3187a6;
}

.card16 {
    border-color: #2688d799;
}

.card16 .content-title {
    background: #0077cc;
}

.card66 {
    background: #2688d799;
}

.card:hover,
.card.active {
    /* flex: 1.5; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1; */
}

.card-main.active2 {
    display: none;
}

.card.active {
    /* background-color: #0dcaf0; */
    /* color: #fff; */
    transition: 0.3s;
}

.content-card {
    display: none;
    transition: opacity 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
}

.content-card.active {
    display: flex;
    -webkit-animation: scale-up-hor-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-hor-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.card-main .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card-main .card.active {
    transform: scale(1.1) rotate(-1deg);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); */
}

@-webkit-keyframes scale-up-hor-center {
    0% {
        -webkit-transform: scaleX(0.4);
        transform: scaleX(0.4);
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes scale-up-hor-center {
    0% {
        -webkit-transform: scaleX(0.4);
        transform: scaleX(0.4);
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@media (min-width:991px) and (max-width:1199px) {
    .section-nine-card {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .section-nine-card {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .content-card img {
        width: 100px;
        height: 100px;
    }

    .content-card {
        display: block !important;
        width: 48%;
    }

    .card-container {
        padding: 20px 0px 30px 0px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .card-main {
        display: none;
    }
}


@media (max-width: 768px) {
    .section-nine-card {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .content-card {
        display: block !important;
        width: 100%;
    }

    .card-container {
        padding: 20px 0px 30px 0px;
        flex-direction: column;
    }

    .card-main {
        display: none;
    }

    .content-card img {
        height: auto;
    }
}

/* section-nine-end */


/* section-ten-start */
section.section-ten {
    background: linear-gradient(180deg, #F5FBFF 39.42%, #FFF 100%);
    padding: 40px 0px;
}

.section-ten-card {
    border-radius: 11.482px;
    padding: 0px 30px 30px 30px;
    margin-top: 20px;
    height: 90%;
}

.section-ten-card span {
    background: var(--Fourchain, linear-gradient(92deg, #0460E9 -14.55%, #0AB9F8 59.9%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: right;
    font-size: 55px;
    font-weight: 700;
    display: block;
}

.section-ten-card h3 {
    color: var(--Grey-20, #333);
    font-size: 20px;
    font-weight: 600;
}

.section-ten-card p {
    color: var(--Grey-30, #4C4C4D);
    font-size: 16px;
    font-weight: 400;
}

.section-ten-card1 {
    background: rgba(179, 0, 0, 0.04);
}

.section-ten-card2 {
    background: rgba(7, 64, 210, 0.04);
}

.section-ten-card3 {
    background: rgba(191, 49, 135, 0.04);
}

.section-ten-card4 {
    background: rgba(38, 136, 215, 0.04);
}

.section-ten-card5 {
    background: rgba(2, 157, 80, 0.04);
}

.section-ten-card6 {
    background: rgba(181, 123, 29, 0.04);
}

/* section-ten-end */


/* section-six-start */
section.section-six {
    padding: 40px 0px;
}

.section-six-box {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    border-radius: 20px;
    max-width: 1200px;
}

.section-six-box::before {
    content: "";
    top: 0px;
    right: 0px;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    /* background-image: url(../img/home/section-six-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    border-radius: 20px;
    border-radius: 19px;
    background: rgba(0, 0, 0, 0.41);
    backdrop-filter: blur(21.899999618530273px);
}

section.section-six p {
    max-width: 600px;
    margin: 20px auto;
    color: #fff;
}

section.section-six h2 {
    color: #FFF;
    font-size: 38px !important;
    font-weight: 700;
    margin: 0 auto;
}

.section-six-box a {
    display: inline-block;
    width: 230px;
    padding: 10px;
    font-size: 18px;
}

section.section-six .container {
    position: relative;
    z-index: 1;
    padding: 70px;
}

section.section-six .container::before {
    content: "";
    top: 0px;
    right: 0px;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../img/mern-stack/become-img-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

@media (max-width: 768px) {
    section.section-six {
        padding: 0px 0px;
    }

    section.section-six .container {
        padding: 20px;
    }
}



/* section-six-end */

/* section-eleven-start */
section.section-eleven {
    padding-top: 120px;
}

section.section-eleven .row {
    position: relative;
    z-index: 1;
    padding: 40px;
    height: 330px;
    max-width: 1300px;
    margin: 0 auto;
}

section.section-eleven .row::before {
    content: "";
    top: 0px;
    right: 0px;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../img/mern-stack/section-eleven-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.section-eleven-img img {
    top: -105px;
    right: 0px;
    position: absolute;
    padding-left: 40px;
}

.section-eleven-box h2 {
    color: #FFF;
    font-size: 32px !important;
    font-weight: 700;
    padding-bottom: 10px;
}

.section-eleven-box p {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
}

.section-eleven-box p {
    color: #FFF;
    font-weight: 400;
}

.section-eleven-box a {
    border-radius: 11.516px;
    background: #FFF;
    box-shadow: 0 7.677px 8.317px 0 rgba(0, 0, 0, 0.25);
    width: 240px;
    padding: 10px;
}

.section-eleven-box a span {
    font-size: 18px;
}

@media (max-width: 991px) {
    .section-eleven-img img {
        display: none;
    }
}

@media (max-width: 768px) {
    section.section-eleven .row {
        height: auto;
    }

    section.section-eleven {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* section-eleven-end */


/* section-twelve-end */
section.section-twelve {
    background: linear-gradient(90deg, #F5FBFF 19.74%, #FFF 98.22%);
    padding-top: 40px;
}

.testimonial-section {
    padding: 60px 0px;
}

.testimonial-card {
    padding: 80px 20px 20px 50px;
    position: relative;
}

.testimonial-text {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 9.4px 0 rgba(0, 0, 0, 0.25);
    height: 400px;
}

.testimonial-text h3 {
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-text h4 {
    margin: 0;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    padding-top: 8px;
}

.testimonial-text-left {
    padding-left: 95px;
}


.testimonial-text-right {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
}

.testimonial-text .role {
    display: inline-block;
    margin: 8px 0 12px;
    padding: 4px 10px;
    font-size: 0.85rem;
    border-radius: 10px;
    background: #E9E7EC;
    color: #000;
}

.stars {
    color: #ff9800;
    font-size: 28px;
}

.testimonial-text p {
    color: #6B6B6B;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    padding-top: 8px;
}

.quote-icon img {
    width: 40px !important;
    height: 40px
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 75px;

}

.testimonial-photo img {
    width: 140px !important;
    height: 140px !important;
    object-fit: cover;
    padding: 8px;
    border-radius: 116px;
}

.testimonial-photo {
    position: absolute;
    top: -80px;
    left: -40px;
    border-radius: 116px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    background: #fff;
}

/* Owl dots styling */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-nav {
    display: none;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc !important;
    display: block;
    border-radius: 50%;
    margin: 5px;
}

.owl-dots.disabled {
    display: block !important;
}

.owl-dot span {
    -webkit-backface-visibility: visible;
    background: #d6d6d6;
    border-radius: 30px;
    display: block;
    height: 10px;
    margin: 5px 7px;
    transition: opacity .2s ease;
    width: 10px;
}

.owl-dot.active span {
    background: #869791;
}

.owl-dot.active span {
    position: relative;
    width: 64px;
}

.owl-dot.active span:before {
    animation: line 6.9s 1;
    background: var(--Fourchain, linear-gradient(92deg, #0460E9 -14.55%, #0AB9F8 59.9%)) !important;
    border-color: #0460E9;
    border-radius: 10px;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: 0;
    width: 0;
}

@keyframes line {
    100% {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-text {
        margin-bottom: 15px;
    }

    .quote-icon {
        right: 10px;
    }

    .testimonial-text-left {
        padding-left: 0px;
        text-align: center;
    }

    .testimonial-text {
        height: 580px;
    }
    .testimonial-text-right {
    height: 90%;
}
}

@media (max-width: 1024px) {

    .testimonial-text {
        /* height: 100%; */
    }
}

@media (min-width:1024px) and (max-width:300px) {
    .testimonial-text {
        height: 420px;
    }
}

@media (min-width: 1300px) and (max-width: 1600px) {
    .testimonial-text {
        height: 470px;
    }
}

/* section-twelve-end */