* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
    background: radial-gradient(ellipse at center, #0a0f2c 0%, #000 80%);
}

.bottomGradient {
    /* background: linear-gradient(red, #7128f9);
    width: 100%;
    height: 250px; */

    /* background: linear-gradient(to top, #7128f9, #26006b, black);
    width: 100%;
    height: 300px;
    position: relative;
    bottom: 0px;
    left: 0px; */

    /* background: linear-gradient(to top, #7128f9, #26006b, black);
    width: 100%;
    height: 500px;
    position: absolute;
    bottom: -40px;
    left: 0px; */

    background: linear-gradient(to top, #7128f9, #26006b, #03000700);
    width: 100%;
    height: 95vh;
    position: absolute;
    bottom: 0%;
    left: 0px;
    z-index: -1;
    /* #1d014f */
}

.space {

    /* position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    min-height: 100%; */

    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: moveStar linear infinite alternate;
}

/* Random smooth glow */
.star::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: white;
    filter: blur(4px);
    opacity: 0.4;
    border-radius: 50%;
}

@keyframes moveStar {
    from {
        transform: translate(0px, 0px);
    }

    to {
        transform: translate(var(--moveX), var(--moveY));
    }
}

a {
    color: unset;
    text-decoration: none;
}

header {
    width: 100%;
    position: relative;
    top: 0px;
    width: 100%;
}

.bgImg {
    /* position: absolute;
    top: 27%;
    object-fit: cover;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: -1;
    height: 100vh;
    animation: slowZoom 8s ease-in-out infinite alternate; */

    position: absolute;
    top: 42%;
    object-fit: cover;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: -1;
    height: 100vh;
    animation: slowZoom 8s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: translateX(-50%) scale(1);
    }

    100% {
        transform: translateX(-50%) scale(1.05);
    }
}



.headerContentMain {
    width: 100%;
    justify-content: center;
}

.headerContent {
    width: 100%;
    max-width: 1400px;
    padding: 15px 50px;
}

.subTtl {
    text-align: center;
    color: black;
    font-size: 17px;
}

.subTtlBg {
    background: rgb(255, 196, 33);
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid white;
    position: relative;
    z-index: 99;
}

.headerTop {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.lgTtl {
    text-align: center;
    width: 65%;
    font-size: 44px;
    color: white;

}

.progress {
    width: 65%;
    margin: 20px 0px;
    display: flex;
    justify-content: center;
}

.progressBar {
    width: 100%;
    flex: 1;
    height: 17px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgb(255, 196, 33);
    padding: 2px;
}

.progressFill {
    width: 0;
    height: 100%;
    background-color: rgb(255, 196, 33);
    border-radius: 20px;
    animation: fillProgress 2s ease forwards;
}

.progressPercent {
    font-weight: 500;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: 25px;
    font-size: 13px;
    transform: translateY(-50%);
    color: white;
}

@keyframes fillProgress {
    from {
        width: 0;
    }

    to {
        width: 97%;
    }
}

.container {
    width: 80%;
    margin: 0 auto;
}

.mainContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 99;
}

.crdBtn.mt {
    margin: 15px 0px 0px 0px;
    font-size: 17px;
}

.containerSub {
    width: 100%;
    max-width: 1400px;
}

.purPle {
    color: #9900ff;
    font-family: Ubuntu;
    font-weight: 700;
}

.cardsSection {
    padding: 0px 0;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.card {
    border: 1px solid #9900ff;
    border-radius: 7px;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    opacity: 0;
    box-shadow: 0px 0px 10px #8c8585;

    background: rgb(0 0 0 / 41%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
}

.card .cardTtl {
    font-size: 19px;
}

.card .pTxt {
    font-size: 14px;
}

/* Even cards → left se aayenge */
.card.even {
    transform: translateX(-100px);
    animation: slideLeft 1s ease forwards;
}

/* Odd cards → right se aayenge */
.card.odd {
    transform: translateX(100px);
    animation: slideRight 1s ease forwards;
}

/* Smooth stagger delay */
.card:nth-child(1) {
    animation-delay: 0.2s;
}

.card:nth-child(2) {
    animation-delay: 0.4s;
}

.card:nth-child(3) {
    animation-delay: 0.6s;
}

.card:nth-child(4) {
    animation-delay: 0.8s;
}

/* Animations */

@keyframes slideLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.pTxt {
    color: white;
    font-size: 13px;
    line-height: 17px;
}

.cardTtl {
    font-size: 19px;
    margin-bottom: 15px;
    color: white;
}

.mdTtl {
    margin: 25px 0px;
    text-align: center;
    color: #9900ff;
    font-size: 22px;
}

.textUl {
    list-style: none;
}

.textUl li {
    color: black;
    font-size: 15px;
    margin-bottom: 5px;
    color: white;
    /* text-align: center; */
}

.crdBtn {
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
    border: 0px;
    background: rgb(255, 196, 33);
    line-height: 30px;
    border-radius: 8px;
    color: black;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    padding: 9px 18px;
    cursor: pointer;
    font-family: "Ubuntu";
}

.mdTtl.clrChng {
    color: rgb(255, 196, 33);
    margin: 30px 0px;
}

.lgVertiCardsMain {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.mdTtl.center {
    text-align: center;
    color: white;
}

.crdBtn.mAuto {
    margin: 0 auto;
    width: fit-content;
}

.lgVertiCrd {
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    width: 50%;
}

.lgVertiCrd.Grn {
    border: 1px solid green;
    box-shadow: 0px 0px 10px #00ff00;
}

.lgVertiCrd.Grn .icon {
    color: green;
    font-weight: bolder;
}

.lgVertiCrd.red {
    border: 1px solid red;
    box-shadow: 0px 0px 10px #ff4949;
}

.lgVertiCrd.red .icon {
    color: green;
}

.lgVertiCrd .pTxt {
    margin-bottom: 10px;
    display: flex;
    gap: 6px;
    font-size: 16px;
}

.lgVertiCardsMain .cardTtl {
    margin-bottom: 20px;
    font-size: 22px;
}

.mdTtl.f26 {
    font-size: 40px;
}

.shadow {
    width: 100%;
    height: 70%;
    position: absolute;
    z-index: 99999999999;
    top: 35%;
    left: 50%;
    background: linear-gradient(to bottom, #000000, transparent);
    transform: translateX(-50%);
}

.lgCards {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 99;
}

button {
    border: 0px;
    outline: 0px;
}

.pTxt.mb {
    margin-bottom: 8px;
}

.cardsFlex {
    width: 80%;
    display: flex;
    gap: 20px;
}

.iconTxt {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cardsTop .textUl {
    list-style: unset;
    margin-left: 10px;
}

.cardsTop {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px 0px;
}

.cardsTop .cardTtl {
    font-size: 40px;
    color: #9900ff;
}

.crdBtn.mSet {
    margin: 40px auto;
    width: fit-content;
}

@media (max-width: 1200px) {
    .lgTtl {
        font-size: 38px;
    }

    .cardsTop .cardTtl,
    .mdTtl.f26 {
        font-size: 38px;
    }

    .lgVertiCardsMain .cardTtl {
        font-size: 19px;
    }
}

@media (max-width: 1024px) {

    .cardsFlex,
    .container {
        width: 85%;
    }
}

@media (max-width: 992px) {
    .lgTtl {
        font-size: 34px;
    }

    .cardsTop .cardTtl,
    .mdTtl.f26 {
        font-size: 32px;
    }

    .subTtl {
        font-optical-sizing: 16px;
    }

    .crdBtn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .textUl li {
        font-size: 14px;
    }

    .card .cardTtl {
        font-size: 17px;
    }

    .lgVertiCrd .pTxt {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .lgTtl {
        font-size: 25px;
        width: 80%;
    }

    .cardsTop .cardTtl,
    .mdTtl.f26 {
        font-size: 26px;
    }

    .crdBtn.mt {
        font-size: 15px;
    }

    .cardsFlex,
    .container {
        width: 95%;
    }

    .card .cardTtl {
        font-size: 15px;
    }

    .card .pTxt {
        font-size: 13px;
    }

    .cardsFlex {
        flex-direction: column;
        align-items: center;
    }

    .lgVertiCrd {
        width: 100%;
    }

    .mdTtl {
        font-size: 20px;
    }

    .progress {
        width: 80%;
    }

    .subTtl {
        font-size: 16px;
    }
}

@media (max-width: 450px) {
    .crdBtn.mSet {
        font-size: 12px;
    }

    .lgTtl {
        font-size: 22px;
    }

    .card .cardTtl {
        font-size: 13px;
    }

    .cardTtl {
        margin-bottom: 11px;
    }

    .lgVertiCardsMain .cardTtl {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .lgVertiCrd .pTxt {
        font-size: 13px;
    }

    .headerContent {
        padding: 15px 25px;
    }

    .mdTtl {
        font-size: 18px;
    }

    .crdBtn {
        padding: 7px 10px;
        font-size: 13px;
    }

    .subTtl {
        font-size: 15px;
    }
}




@media (max-width: 600px) {

    .crdBtn.mt,
    .crdBtn.mSet,
    .crdBtn.mAuto {
        width: 100%;
    }
}