/* **************banner starts**************** */
.webinar-sec {
    background-color: #fbfbfb;
    padding: 80px 0;
}

.bubble-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.bubble-wrap span {
    position: absolute;
    display: block;
    border-radius: 50%;
    opacity: 0.4;
    animation: bubbleFloat 5s infinite;
    background: radial-gradient(circle at center, #ff9a9e, #fad0c4);
}

/* Example different bubble sizes + positions */
.bubble-wrap span:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 12%;
    left: 5%;
    background: radial-gradient(circle at center, #5281cc, #86d4f8);
    animation-delay: 0s;
}

.bubble-wrap span:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 55%;
    background: radial-gradient(circle at center, #ffcf67, #eeb02c);
    animation-delay: 3s;
}

.bubble-wrap span:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 20%;
    background: radial-gradient(circle at center, #f4c6ff, #d57eeb);
    animation-delay: 6s;
}

.bubble-wrap span:nth-child(4) {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    background: radial-gradient(circle at center, #4fb846, #85fd99);
    animation-delay: 9s;
}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-60px) translateX(30px);
    }
}

.webinar-banner {
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 25px 0px #d7d7d7;
    padding: 50px 0;
    position: relative;
}

.banner-img img {
    width: 100%;
    padding-right: 30px;
}

.banner-con {
    padding: 0 25px;
}

.banner-con h2 {
    color: #000000;
    margin-bottom: 20px;
}

.banner-con p {
    color: #000000;
    font-weight: 100;
    margin-bottom: 15px;
}

.banner-con b {
    font-weight: 900;
    color: #FA7F46;
}

/* **************banner ends************* */

/* ************content section*************** */
.android-sec-con {
    background-color: #01010f;
    padding: 50px 0;
}

.android-sec-con h3 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #fff;
}

.webinar-dv {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.feature-box {
    position: relative;
    background: #fff;
    padding: 25px 90px 25px 150px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
	margin-bottom: 30px;
}

.step-label {
    position: absolute;
    top: 35px;
    left: -35px;
    padding: 12px 35px 12px 20px;
    font-weight: 700;
    color: #fff;
    border-radius: 30px 0 0 30px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    font-size: 18px;
    white-space: nowrap;
}

.feature-icon {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
}

.feature-icon img {
    width: 60%;
}

.feature-content h4 {
    margin: 0 0 10px;
    font-weight: 700;
}

.feature-content p,
.webinr-list {
    margin: 0;
    color: #555;
    font-size: 14px;
    padding-left: 0;
    list-style: none;
}

.webinr-list li {
    margin-bottom: 8px;
}

.webinr-list i {
    color: #4caf50;
    margin-right: 8px;
}

.step1 {
    background: #f9b233;
}

.step1-box .feature-icon {
    background: #f9b233;
}

.step2 {
    background: #e65c9e;
}

.step2-box .feature-icon {
    background: #e65c9e;
}

.step3 {
    background: #2fb67c;
}

.step3-box .feature-icon {
    background: #2fb67c;
}

.step4 {
    background: #9dcb2d;
}

.step4-box .feature-icon {
    background: #9dcb2d;
}

.step5 {
    background: #fa8a5c;
}

.step5-box .feature-icon {
    background: #fa8a5c;
}

.step6 {
    background: #d384d3;
}

.step6-box .feature-icon {
    background: #d384d3;
}

.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    border-radius: 10px 10px 0 0;
}

.step1-box::before {
    background: linear-gradient(90deg, #f9b233 0%, #fcd872 100%);
}

.step2-box::before {
    background: linear-gradient(90deg, #e65c9e 0%, #ff9dc9 100%);
}

.step3-box::before {
    background: linear-gradient(90deg, #2fb67c 0%, #66d2a3 100%);
}

.step4-box::before {
    background: linear-gradient(90deg, #9dcb2d 0%, #caea45 100%);
}

.step5-box::before {
    background: linear-gradient(90deg, #fa8a5c 0%, #ffb479 100%);
}

.step6-box::before {
    background: linear-gradient(90deg, #d384d3 0%, #eeb6e2 100%);
}

@media (max-width: 992px) {
    .feature-box {
        padding: 25px 70px 25px 120px;
    }

    .step-label {
        top: 30px;
        left: -25px;
        padding: 10px 30px 10px 18px;
        font-size: 13px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        right: 20px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .feature-box {
        padding: 80px 20px 25px 20px;
    }

    .step-label {
        left: -14px;
        top: 14px;
        padding: 10px 35px 10px 35px;
        font-size: 22px;
        position: absolute;
    }

    .feature-icon {
        right: 20px;
        top: 14px;
        transform: none;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .webinr-list li {
        font-size: 13px;
    }

    .manage-sec img{
        width: 100%;
    }
}

@media (max-width: 480px) {
    .feature-box {
        padding: 70px 15px 20px 15px;
    }

    .step-label {
        font-size: 12px;
        left: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        right: 15px;
    }
}



/* ***********benifits*********** */

.android-benifits {
    text-align: center;
    padding: 50px 0 0 0;
    position: relative;
    background-color: #fbfbfb;
}

.android-row {
    display: flex;
    justify-content: space-between;
}

.bnft-point {
    margin: 20px 5px;
    max-width: 250px;
    padding: 15px;
    border-radius: 10px;
}

.android-benifits h3 {
    margin-bottom: 20px
}

.bnft-point h5 {
    font-size: 18px;
    font-weight: 900;
}

.bnft-point1 {
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 244, 145) 100%);
}

.bnft-point2 {
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(158, 220, 255) 100%);
}

.bnft-point3 {
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, #e298ff 100%);
}

.bnft-point4 {
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(164, 170, 255) 100%);
}

.bnft-point5 {
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 184, 184) 100%);
}

/* ***********benifits*********** */

/* **********question******** */

.bottom-android {
    background-color: #fbfbfb;
    position: relative;
    padding: 50px 0;
}

.custom-shape-divider-bottom-1758534211 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1758534211 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1758534211 .shape-fill {
    fill: #01010f;
}

.android-qu img {
    animation: floatUpDown 3s ease-in-out infinite;
    width: 55%;
    margin-left: 22%;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.qu-dtls {
    margin-left: 25%;
}

.qu-dtls h2 {
    color: #000000;
    margin-bottom: 10px;
}

.qu-dtls p {
    color: #000000;
    margin-bottom: 20px;
}

.qu-dtls ul li {
    color: #000000;
    margin-bottom: 20px;
}

.btm-android-list p {
    border: 1px solid #fff;
    border-radius: 15px;
    padding: 15px;
    color: #000;
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, #d5baff 100%);
}


/* *********manage section************ */
.manage-sec {
    overflow: hidden;
    background-color: #fbfbfb;
}

.manage-sec h2 {
    margin-bottom: 15px;
}

.manage-sec p {
    margin-bottom: 20px;
    position: relative;
}

.manage-sec p::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -14px;
    right: 0;
    width: 5px;
    height: 75px;
    border-radius: 50px;
    background: linear-gradient(to bottom, rgb(255 145 195) 0%, #9086d4 100%);
}

@media (max-width: 992px) {
    .android-row {
        flex-direction: column;
    }

    .bnft-point {
        max-width: 100%;
    }

    .qu-dtls {
        margin-left: 0;
    }

    .android-qu img {
        margin-top: 20px;
    }
}