/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background: #000;
}

.container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.full-width {
    max-width: 100% !important;
}

/* Background Images */
.background-bokeh {
    position: absolute;
    inset: 0;
    background-image: url('/images/bg.png');
    background-size: 100%;
    background-position: center;
    z-index: 0;
}

.spotlight-gradient {
    position: absolute;
    inset: 0;
    background-image: url('/images/spotlight-gradient.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Curtains */
.curtain {
    position: absolute;
    top: 0;
    height: 95%;
    width: auto;
    object-fit: cover;
    z-index: 10;
    max-width: 20%;
}

.curtain-left {
    left: 0;
}

.curtain-right {
    right: 0;
}

/* Rope Tassels */
.rope-tassel {
    position: absolute;
    width: 2rem;
    height: auto;
    z-index: 20;
}

.rope-tassel-left {
    top: 8rem;
    left: 18%;
}

.rope-tassel-right {
    top: 8rem;
    right: 18%;
}

/* Spotlight Lamp - Fixed for Laptop */
.spotlight-lamp {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: auto;
    z-index: 15;
    animation: lampSwing 4s ease-in-out infinite, lampFlicker 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 200, 0.9));
}

@keyframes lampSwing {

    0%,
    100% {
        transform: translateX(-50%) rotate(-2deg);
    }

    50% {
        transform: translateX(-50%) rotate(2deg);
    }
}

@keyframes lampFlicker {

    0%,
    100% {
        opacity: 0.9;
        filter: drop-shadow(0 0 25px rgba(255, 255, 200, 0.9));
    }

    25% {
        opacity: 1;
        filter: drop-shadow(0 0 35px rgba(255, 255, 150, 1));
    }

    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(255, 255, 180, 0.7));
    }

    75% {
        opacity: 0.95;
        filter: drop-shadow(0 0 30px rgba(255, 255, 170, 0.95));
    }
}

/* Spotlight Beam Effect */
.spotlight-beam {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60vh;
    background: linear-gradient(to bottom,
            rgba(255, 255, 200, 0.4) 0%,
            rgba(255, 255, 150, 0.3) 20%,
            rgba(255, 255, 100, 0.2) 40%,
            transparent 80%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%);
    z-index: 5;
    animation: beamPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes beamPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.9;
    }
}

/* Celebration Effects - Only Confetti and Sparkles */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff0000;
    opacity: 0.8;
    animation: confettiFall 5s linear;
    z-index: 5;
}

.confetti:nth-child(2n) {
    background: #00ff00;
    animation-delay: 1s;
}

.confetti:nth-child(3n) {
    background: #0000ff;
    animation-delay: 2s;
}

.confetti:nth-child(4n) {
    background: #ffff00;
    animation-delay: 3s;
}

.confetti:nth-child(5n) {
    background: #ff00ff;
    animation-delay: 4s;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Sparkle Effects */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    z-index: 5;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Main Content - Reduced Space */
.main-content {
    position: relative;
    z-index: 20;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 1rem 2rem;
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
}

/* Title Section with Reduced Space */
.title-section {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 25;
}

/* Add this to your existing CSS */
/* Main Title with Zoom Effect */
.main-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease;
    transform-origin: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.title-hindi {
    display: inline-block;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    color: #003AAD !important;
    margin-right: 0;
    text-align: center;
    min-width: auto;
    margin-left: 0;
}

.title-hindi.active {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    color: #003AAD !important;
}

.title-hindi.fading {
    opacity: 0;
    transform: translateY(-50px) rotateX(90deg);
    color: #003AAD !important;
}

.title-agent {
    color: #06A441;
    position: relative;
}

/* 
.main-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 200, 0.7),
        0 0 40px rgba(255, 255, 150, 0.5),
        0 0 50px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(255, 165, 0, 0.3); 
     animation: titleGlow 2s ease-in-out infinite alternate;  
    position: relative;
}*/

@keyframes titleGlow {
    0% {
        text-shadow:
            0 0 20px rgba(255, 255, 255, 0.9),
            0 0 30px rgba(255, 255, 200, 0.7),
            0 0 40px rgba(255, 255, 150, 0.5),
            0 0 50px rgba(255, 215, 0, 0.4);
    }

    100% {
        text-shadow:
            0 0 25px rgba(255, 255, 255, 1),
            0 0 35px rgba(255, 255, 200, 0.9),
            0 0 45px rgba(255, 255, 150, 0.7),
            0 0 55px rgba(255, 215, 0, 0.6),
            0 0 65px rgba(255, 165, 0, 0.5);
    }
}

/* .title-hindi {
    color: #003AAD;
    position: relative;
} */

/* .title-hindi {

    display: inline-block;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    color: #003AAD !important;
    margin-right: 0em;

    min-width: 260px;
    text-align: right;
    margin-left: -40px;

    
} */

/* .title-hindi.active {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    color: #003AAD !important;
}

.title-hindi.fading {
    opacity: 0;
    transform: translateY(-50px) rotateX(90deg);
    color: #003AAD !important;
}


.title-agent {
    color: #06A441;
    position: relative;
} */

.subtitle {
    font-size: 1.5rem;
    color: #4A4A4A;
    font-style: italic;
    font-family: Georgia, serif;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    animation: subtitleGlow 3s ease-in-out infinite;
}

.subtitle span {
    color: #273C8E;
}

@keyframes subtitleGlow {

    0%,
    100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    }
}

/* Launch Banner */
.launch-banner-outer {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.launch-banner {
    display: inline-block;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 1.3rem 3rem;
    border-radius: 15px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.3),
        0 10px 10px -5px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin: 0 auto 3rem;
    text-align: center;
    /* max-width: 56rem; */
    position: relative;
    z-index: 25;
    animation: bannerPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes bannerPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 20px 25px -5px rgba(0, 0, 0, 0.3),
            0 10px 10px -5px rgba(0, 0, 0, 0.2),
            0 0 30px rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow:
            0 25px 30px -5px rgba(0, 0, 0, 0.4),
            0 15px 15px -5px rgba(0, 0, 0, 0.3),
            0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.launch-banner p {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 25;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: countdownFloat 3s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 0.5s);
}

.countdown-item:nth-child(1) {
    --delay: 0;
}

.countdown-item:nth-child(2) {
    --delay: 1;
}

.countdown-item:nth-child(3) {
    --delay: 2;
}

.countdown-item:nth-child(4) {
    --delay: 3;
}

@keyframes countdownFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.countdown-circle {
    position: relative;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.circle-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.countdown-number {
    position: relative;

    font-size: 2.5rem;
    font-weight: bold;
    color: #464646;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.countdown-label {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 2.4rem;
    font-weight: 600;
    color: #464646;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* CTA Buttons */
.cta-buttons {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    margin: 0 auto;
    /* max-width: 42rem; */
    position: relative;
    z-index: 25;
    justify-content: center;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    /* height: 3.5rem; */
    font-size: 2rem;
    font-weight: 600;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn:hover {
    transform: scale(1.05);
    box-shadow:
        0 15px 20px -3px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-primary {
    background: linear-gradient(45deg, #273C8E, rgb(52, 86, 139));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #152944, #1e3a5f);
}

.cta-buttons .btn-secondary {
    background: linear-gradient(45deg, #0d9488, #14b8a6);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: linear-gradient(45deg, #0f766e, #0d9488);
}

.cta-buttons .btn svg {
    /* width: 1.5rem;
    height: 1.5rem; */
    margin-right: 1rem;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.7));
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: -20px;
    position: relative;
    z-index: 30;
}

.social-icons-box {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    /* space between icons */
    padding: 1.2rem 2.5rem;
    /* box spacing */
    border-radius: 25px 25px 0 0;
    /* smooth top corners */
    box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.08);
}

/* Icons without circle background */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    transition: 0.3s ease;
}

.social-link img,
.social-link svg {
    width: 70%;
    height: 70%;
}

/* Hover effect (grow) */
.social-link:hover {
    transform: scale(1.12);
}


/* Wooden Floor */
.wooden-floor {
    position: relative;
    height: 210px;
    overflow: hidden;
    z-index: 25;
    margin-top: -200px;
    z-index: 0;
}

.wooden-floor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contest Banner */
.contest-banner {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 30;
    /* box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.2); */
}

.contest-banner p {
    font-size: 2.3rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* Responsive Styles */

@media (min-width: 320px) {
    .background-bokeh {
        background-size: cover;
    }
}

/* Tablets and Small Desktops */
@media (min-width: 768px) {

    .spotlight-lamp {
        width: 400px;
        top: 0;
    }

    .spotlight-beam {
        top: 90px;
        width: 60%;
    }

    .main-content {
        padding: 120px 1rem 2rem;

    }

    .title-hindi {
        min-width: 220px;
        text-align: right;
        margin-left: -40px;
    }

    .main-title {
        font-size: 5rem;
    }

    .subtitle {
        font-size: 1.875rem;
    }

    .launch-banner p {
        font-size: 1.5rem;
    }

    .countdown-circle {
        width: 120px;
        height: 120px;
    }

    .countdown-number {
        font-size: 3rem;
    }

    .countdown-label {
        font-size: 1.3rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }

    .cta-buttons .btn {
        /* flex: 1;
        height: 4rem; */
        font-size: 1.6rem;
        padding: 1rem 4rem;
    }

    .cta-buttons .btn svg {
        max-width: 22px;
    }

    .wooden-floor {
        height: 210px;
    }

    .contest-banner p {
        font-size: 1rem;
    }
}

/* Large Screens */
@media (min-width: 1024px) {
    .background-bokeh {
        background-size: cover;
    }

    .spotlight-lamp {
        width: 450px;
        top: 0;

    }

    .title-hindi {
        min-width: 259px;
        text-align: right;
        margin-left: -40px;
    }

    .spotlight-beam {
        top: 100px;
        width: 50%;
    }

    .main-content {
        padding: 100px 1rem 2rem;
    }

    .main-title {
        font-size: 6rem;
    }

    .subtitle {
        font-size: 2.25rem;
    }

    .launch-banner-outer {
        margin-bottom: 1rem;
    }

    .launch-banner p {
        font-size: 1.75rem;
        font-weight: 500;
    }

    .countdown-circle {
        width: 130px;
        height: 130px;
    }

    .countdown-number {
        font-size: 40px;
        line-height: 40px;
    }

    .contest-banner p {
        font-size: 1.8rem;
    }

    .cta-buttons .btn {
        padding: 1.2rem 3rem;
        font-size: 1.8rem;
    }
}

@media (min-width: 1441px) {
    .spotlight-lamp {
        width: 450px;
        top: 0;
    }

    .spotlight-beam {
        top: 100px;
        width: 50%;
    }

    .main-content {
        padding: 130px 1rem 2rem;
    }

    /* .title-hindi {

        display: inline-block;
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transform-style: preserve-3d;
        perspective: 1000px;
        color: #003AAD !important;
        margin-right: 0em;

        min-width: 430px;
        text-align: right;
        margin-left: -140px;

    } */

    .title-hindi {
        min-width: 430px;
        text-align: right;
        margin-left: -140px;
    }

    .main-title {
        font-size: 7rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }

    .subtitle {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .launch-banner p {
        font-size: 2.5rem;
    }

    .countdown-circle {
        width: 160px;
        height: 160px;
    }

    .countdown-number {
        font-size: 6.4rem;
        line-height: 67px;
    }

    .cta-buttons .btn {
        padding: 1.4rem 3rem;
        font-size: 2rem;
    }

}


@media (min-width: 1600px) {
    /* .title-hindi {

        display: inline-block;
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transform-style: preserve-3d;
        perspective: 1000px;
        color: #003AAD !important;
        margin-right: 0em;

        min-width: 330px;
        text-align: right;
        margin-left: -105px;
    } */

    .title-hindi {
        min-width: 330px;
        text-align: right;
        margin-left: -105px;
    }

    .main-title {
        font-size: 9rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }
}

/********************************************/

.modal-content {
    width: 100%;
}

.popup-outer-header {
    width: 100%;
    padding: 1.2rem 3rem 1.5rem 2rem;
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    position: relative;
    border-bottom: 1px solid #ccc;
}

.popup-outer-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #273C8E;
}

.popup-outer-header p {
    width: 100%;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 0;
}

.btn-close {
    font-size: 1.8rem;
    color: #333;
    position: absolute;
    top: 15px;
    right: 15px;
}


.popup-outer-content {
    width: 100%;
    padding: 1.2rem 2rem 2rem 2rem;
}

.popup-outer-footer {
    width: 100%;
    padding: 1.5rem 2rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
}

.agent-registration-popup {}


.form-container {
    padding: 0px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #273C8E;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.checkbox-group {
    display: flex;
    /* flex-direction: column; */
    gap: 12px;
    flex-wrap: wrap;
}


.checkbox-label {
    min-width: 22%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: #273C8E;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-label input[type="radio"] {
    width: 18px;
    height: 18px;
}

.submit-btn {
    background: linear-gradient(135deg, #273C8E 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

@media (max-width: 767px) {
    .checkbox-label {
        width: 100%;
    }

    /* .title-hindi {
        min-width: 225px;
        text-align: right;
        margin-left: -60px;
    } */

    .title-hindi {
        min-width: auto;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .main-title {
        font-size: 4rem !important;
        /* Increased from smaller size */
        font-weight: bold;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .title-agent {
        font-size: inherit;
        /* Inherit from main-title */
    }

    /* .main-title {
        flex-wrap: wrap;
        justify-content: center;
    } */
}

.alert {
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-size: 14px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 1.5rem;
}

.step.active {
    background: #4f46e5;
    color: white;
}

.step.completed {
    background: #273C8E;
    color: white;
}

.step-line {
    flex: 1;
    height: 3px;
    background: #e5e7eb;
    margin: 0 10px;
}

.step-line.completed {
    background: #273C8E;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

.portfolio-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.selected-item {
    background: #e5e7eb;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.remove-item {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
}

.company-input-container {
    display: flex;
    gap: 10px;
}

.btn-add {
    background: #273C8E;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 6px;
    cursor: pointer;
}

.pricing-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.price-header {
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 18px;
}

.discounted-price {
    font-size: 32px;
    font-weight: bold;
    color: #059669;
}

.savings-badge {
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-top: 8px;
}

.benefits-list {
    text-align: left;
    margin: 20px 0;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 2px 0 8px 0;
    color: #374151;
    font-size: 15px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-secondary {
    background: #6b7280;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    flex: 1;
    font-size: 15px;
}

.payment-info {
    font-size: 15px;
}

.btn-primary {
    background: #273C8E;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    flex: 1;
}

.btn-payment {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    font-size: 16px;
    font-weight: bold;
}

.text-muted {
    color: #6b7280;
    font-size: 1.5rem;
}

.small {
    font-size: 14px;
}

form {
    font-size: 1.5rem;
}

.popup-outer-content .container {
    min-height: inherit;
    padding: 0;
}

.gmail {
    font-size: 16px;
    text-align: center;
    color: #222325;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #6e6e6e;
    border-radius: 4px;
    padding: 1.2rem 2rem;
    width: 100%;
}

.gmail svg {
    margin-right: 8px;
}

.gmail:hover {
    font-size: 16px;
    text-align: center;
    color: #222325;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #3d3d3d;
    border-radius: 4px;
    padding: 1.2rem 2rem;
    width: 100%;
}

.portfolio-section {
    border: 2px solid #e8f4fc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    background: #f8f9fa;
}

.chart-container {
    position: relative;
    height: 250px;
    margin: 2rem auto;
}

.legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.legend-color {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 10px;
}

.total-display {
    text-align: center;
    margin: 15px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.total-ok {
    color: #27ae60;
    border-left: 5px solid #27ae60;
}

.total-warning {
    color: #e67e22;
    border-left: 5px solid #e67e22;
}

.total-error {
    color: #e74c3c;
    border-left: 5px solid #e74c3c;
}

.flex-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-box .form-group {
    width: 100%;
    max-width: 48%;
}

.flex-box small {
    width: 100%;
    margin: -15px 0 1.8rem 0;
}

.early-bird-outer {
    width: 100%;
    margin: 1.5rem 0;
}

.early-bird-box-1 {
    width: 100%;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    background-color: #f5f5f5;
    margin-bottom: 2rem;
}

.early-bird-box-limited-time {
    background-color: #f56b6b;
    padding: 1.5rem 2rem;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.early-bird-special-text {
    color: #273C8E;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.be-among-the-first {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.be-among-the-first .text-accent {
    color: #2eb867;
}

.be-among-the-first .text-destructive {
    color: #e23636;
}

.spots-left {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    color: #8b8b8b;
}

.spots-left .rounded-full {
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: #fb7272;
    display: inline-block;
}


.early-bird-box-2 {
    width: 100%;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    background-color: #fff;
    margin-bottom: 2rem;
}

.early-bird-box-2 .one-time-investment {
    width: 100%;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
    background-color: #c8e5d466;
    margin-bottom: 2rem;
}

.early-bird-box-2 .one-time-investment p {
    color: #2eb867;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0;

}

.registration-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.registration-fee .text-foreground {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.registration-fee .text-right {
    font-size: 20px;
    font-weight: 600;
}

.registration-fee .text-right .bg-destructive {
    background-color: #e2363633;
    padding: 1rem;
    border-radius: 10px;
}

.registration-fee .text-right .bg-destructive-right {
    font-size: 35px;
    font-weight: 700;
    color: #2eb867;
    text-align: right;
}

.gst-text-muted-foreground {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    margin-bottom: 2rem;
}

.gst-text-muted-foreground span {
    font-size: 22px;
}

.gst-text-muted-foreground .font-bold {
    font-weight: 700;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    background-color: #c8e5d466;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    border-radius: 10px;

}

.total-amount .text-foreground {
    font-size: 36px;
    font-weight: 700;
}

.total-amount .text-accent {
    font-size: 36px;
    font-weight: 700;
    color: #2eb867;
}

.secure-payment-razorpay {
    background-color: #c8e5d466;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
}

.secure-payment-razorpay .text-muted-foreground {
    font-size: 16px;
    color: #6c6c6c;
    font-weight: 400;
}

.early-bird-box-3 {
    background-color: #f2f8fc;
    margin-bottom: 2rem;
    padding: 2rem;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid #e2eff9;
}

.early-bird-box-3 h3.text-gradient-primary {
    width: 100%;
    margin: 0 0 1.5rem 0;
    font-size: 26px;
    color: #273C8E;
    font-weight: 700;
}

.early-bird-box-3 p.text-muted-foreground {
    width: 100%;
    margin: 0 0 1.5rem 0;
    font-size: 17px;
    font-weight: 400;
}

.early-bird-box-3 .grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.early-bird-box-3 .grid .bg-gradient-to-br {
    display: flex;
    justify-content: center;
    border: 1px solid #e2eff9;
    flex-wrap: wrap;
    background-color: #e1eff9;
    border-radius: 8px;
    padding: 2rem;
}

.early-bird-box-3 .grid .bg-gradient-to-br svg {
    width: 25px;
}

.early-bird-box-3 .grid .bg-gradient-to-br span {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    padding: 1.5rem 0 0 0;
}

.early-bird-box-4 {
    width: 100%;
    margin: 0 0 2rem 0;
    display: flex;
}

.early-bird-box-4 button {
    width: 22px;
    height: 22px;
    margin-right: 1rem
}

.early-bird-box-4 label {
    width: 100%;
    border: none;
    padding: 0 5px;
}

.early-bird-box-4 label input {
    width: 20px !important;
    height: 20px !important;
    box-shadow: none;
    outline: 0;
}

.early-bird-box-4 label span {
    width: calc(100% - 20px);
    padding-left: 8px;
}

.early-bird-box-4 label .text-accent {
    color: #273C8E;
    padding: 0 .6rem;
}

.early-bird-box-5 {
    width: 100%;
    margin: 0;
}

.early-bird-box-5 button {
    width: 100%;
    margin: 0 0 1.5rem 0;
}

.early-bird-box-5 .secure-payment {
    width: 100%;
    background: linear-gradient(45deg, #273C8E, rgb(52, 86, 139));
    color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 2rem;
    font-weight: 600;
    justify-content: center;
    padding: 1.5rem;
    border: none;
    border-radius: 10px;

}

.early-bird-box-5 .secure-payment svg {
    margin-right: .8rem;
}

.early-bird-box-5 .secure-payment:hover {
    background: linear-gradient(45deg, #152944, #1e3a5f);
}

.early-bird-box-5 .text-muted-foreground {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400px;
    color: #333;
    margin-bottom: 2rem;
}

.early-bird-box-5 .price-increases {
    background-color: #e236361a;
    border: 1px solid #e236364d;
    padding: 1.5rem;
    font-size: 18px;
    font-weight: 400px;
    color: #333;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.early-bird-box-5 .price-increases p {
    margin-bottom: 0;
    text-align: center;
}

.early-bird-box-5 .price-increases .text-destructive {
    color: #e23636;
}

.back-previous {
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    color: #0d6efd;
    border: 1px solid #0d6efd;
    padding: 1rem 2rem;
    text-align: center;
    background-color: #fff;
    transition: all 0.3s ease;
    margin: 0;
}

.back-previous:hover {
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    color: #fff;
    border: 1px solid #0d6efd;
    padding: 1rem 2rem;
    text-align: center;
    background-color: #0d6efd;
}


.thankyou-popup {
    width: 100%;
    padding: 3rem;
    text-align: center;
}

.thankyou-popup h1 {
    width: 100%;
    font-size: 36px;
    font-weight: 700;
    color: #152944;
    margin-bottom: 2rem;
}

.thankyou-popup p {
    font-size: 16px;
    color: #333;
    line-height: 22px;
    margin-bottom: 2rem;
}

.thankyou-popup p.eligible-text {
    font-size: 20px;
    font-weight: 500;
}

.thankyou-popup .thankyou-bitton {
    width: 100%;
    text-align: center;
}

.thankyou-popup .thankyou-bitton button {
    width: auto;
    display: inline-block;
    font-size: 16px;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    font-weight: 500;
}

.share-with {
    width: 100%;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 2rem 0 0 0;
    padding: 1.5rem;
    background-color: #fff;
    transition: all 0.3s ease;
    color: #333;
}

.share-with:hover {
    background: linear-gradient(135deg, #273C8E 0%, #7c3aed 100%);
    border: 2px solid linear-gradient(135deg, #273C8E 0%, #7c3aed 100%);
    color: #fff;
}



/* Tablet devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .curtain {
        /* Keep curtains visible but adjust size if needed */
        width: 15% !important;
    }
}

/* Desktop devices (1025px and above) */
@media (min-width: 1025px) {
    .curtain {
        /* Original curtain styles */
        width: 20% !important;
    }
}

/* Show curtains in mobile landscape mode (Vivo) */
@media (max-height: 500px) and (orientation: landscape) {
    .curtain {
        display: block !important;
        max-width: 22%;
        min-width: 90px;
        height: 100%;
    }

    .curtain-left {
        left: -2px;
    }

    .curtain-right {
        right: -2px;
    }

    /* .cta-buttons {
        max-width: 450px !important;
    } */
}


.or-text {
    width: 100%;
    margin: 0 0 20px 0;
    text-align: center;
    position: relative;
}

.or-text span {
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    width: 55px;
    height: 55px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 100px;
    border: 1px solid #ccc;
    line-height: 44px;
}

.or-text::after {
    width: 100%;
    height: 2px;
    content: '';
    background-color: #ccc;
    position: absolute;
    left: 0;
    top: 50%;
}

.google-btn {
    width: 100%;
    margin: 0 0 30px 0;
}

/* Tablet devices (Tablet, 768px and below) */

@media (max-width: 991px) {
    .early-bird-box-limited-time {
        font-size: 16px;
    }

    .early-bird-special-text {
        font-size: 36px;
    }

    .be-among-the-first {
        font-size: 16px;
    }

    .spots-left {
        font-size: 16px;
    }

    .early-bird-box-2 .one-time-investment p {
        font-size: 16px;
    }

    .registration-fee .text-right {
        font-size: 18px;
    }

    .registration-fee .text-right .bg-destructive-right {
        font-size: 26px;
    }

    .gst-text-muted-foreground span,
    .registration-fee .text-foreground {
        font-size: 18px;
    }

    .total-amount .text-foreground,
    .total-amount .text-accent {
        font-size: 26px;
    }

    .early-bird-box-3 h3.text-gradient-primary {
        font-size: 24px;
    }

    .early-bird-box-3 p.text-muted-foreground {
        font-size: 16px;
    }

    .early-bird-box-3 .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .early-bird-box-5 .secure-payment {
        font-size: 18px;
    }

    .early-bird-box-5 .price-increases {
        font-size: 16px;
    }

    .back-previous {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .curtain {
        display: none !important;
    }
}

.step-two {
    display: none;
}

@media (max-width: 767px) {

    .curtain {
        display: none !important;
    }

    .launch-banner {
        padding: 1rem 1.6rem;
        margin: 0 auto 1rem;
    }

    .launch-banner p {
        font-size: 15px;
        font-weight: 500;
    }

    .countdown-number {
        font-size: 3rem;
        line-height: 30px;
    }

    .countdown-circle {
        width: 95px;
        height: 95px;
    }

    .countdown-label {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .cta-buttons .btn {
        padding: 1.2rem 2rem;
        font-size: 15px;
        font-weight: 500;
    }

    .cta-buttons .btn svg {
        max-width: 22px;
        max-height: 22px;
    }

    .contest-banner p {
        font-size: 1.3rem;
    }

    /*****************************/
    .early-bird-box-limited-time {
        font-size: 14px;
        font-weight: 500;
        padding: 14px 8px;
    }

    .early-bird-special-text {
        font-size: 30px;
    }

    .be-among-the-first {
        font-size: 14px;
        font-weight: 500;
    }

    .spots-left {
        font-size: 14px;
        font-weight: 500;
    }

    .early-bird-box-2 .one-time-investment {
        padding: 1.5rem 1rem;
    }

    .early-bird-box-2 .one-time-investment p {
        font-size: 13px;
        font-weight: 500;
    }

    .registration-fee .text-foreground,
    .registration-fee .text-right {
        font-size: 15px;
    }

    .registration-fee .text-right .bg-destructive-right {
        font-size: 22px;
    }

    .gst-text-muted-foreground span {
        font-size: 15px;
    }

    .secure-payment-razorpay {
        font-size: 15px;
    }

    .secure-payment-razorpay .text-muted-foreground {
        font-size: 14px;
    }

    .total-amount .text-foreground,
    .total-amount .text-accent {
        font-size: 22px;
    }

    .early-bird-box-3 h3.text-gradient-primary {
        font-size: 22px;
    }

    .early-bird-box-3 p.text-muted-foreground {
        font-size: 14px;
    }

    .early-bird-box-3 .grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .early-bird-box-3 .grid .bg-gradient-to-br span {
        font-size: 15px;
    }

    .early-bird-box-4 label {
        font-size: 14px;
    }

    .early-bird-box-5 .secure-payment {
        font-size: 16px;
    }

    .early-bird-box-5 .text-muted-foreground {
        font-size: 15px;
    }

    .early-bird-box-5 .price-increases {
        font-size: 15px;
    }

    .back-previous {
        font-size: 15px;
    }


    .flex-box {
        flex-wrap: wrap;
    }

    .flex-box .form-group {
        max-width: 100%;
    }

    .submit-btn,
    .share-with {
        font-size: 15px;
    }

    .or-text span {
        font-weight: 600;
        font-size: 14px;
        position: relative;
        z-index: 1;
        background-color: #fff;
        width: 40px;
        height: 40px;
        display: inline-block;
        padding: 0 0;
        border-radius: 100px;
        border: 1px solid #ccc;
        line-height: 37px;
    }

    .gmail {
        font-size: 15px;
    }

    .step-two {
        display: block;
        margin-bottom: 10px;
    }

    .early-bird-box-1,
    .early-bird-box-2,
    .early-bird-box-3,
    .early-bird-box-4 {
        padding: 2rem 12px;
    }

    .early-bird-box-5 button.back-previous {
        margin-bottom: 0;
    }

    .thankyou-popup h1 {
        font-size: 26px;
    }

    .thankyou-popup p.eligible-text {
        font-size: 18px;
    }

}

@media (max-width: 480px) {

    .title-hindi {
        min-width: auto;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .main-title {
        font-size: 3rem !important;
        /* Slightly smaller for very small screens */
    }

    .main-content {
        padding-top: 80px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .countdown-container {
        gap: .8rem;
        margin-bottom: 1.8rem;
    }

    .countdown-circle {
        width: 72px;
        height: 72px;
    }

    .countdown-number {
        font-size: 28px;
        line-height: 22px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .early-bird-special-text {
        font-size: 26px;
    }

    .total-amount .text-foreground,
    .total-amount .text-accent {
        font-size: 20px;
    }

    .secure-payment-razorpay {
        font-size: 14px;
    }

    .early-bird-box-4 label {
        font-size: 13px;
        font-weight: 500;
    }

    .early-bird-box-5 .text-muted-foreground,
    .early-bird-box-5 .price-increases {
        font-size: 14px;
    }

    .early-bird-box-4 {
        margin-bottom: 0;
    }

    .launch-banner p {
        font-size: 13px;
        font-weight: 500;
    }

    .contest-banner {
        padding: 1.5rem 5px;
    }

    .countdown-container {
        padding: 0;
    }

    .contest-banner p {
        font-size: 9px;
    }
}





.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    margin-bottom: 20px;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.success-message h2 {
    color: #10B981;
    margin-bottom: 10px;
    font-size: 28px;
}

.success-message p {
    color: #6B7280;
    font-size: 16px;
    margin-bottom: 30px;
}

.share-section {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
}

.share-section h3 {
    color: #1F2937;
    margin-bottom: 8px;
}

.share-section p {
    color: #6B7280;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.facebook-share-btn {
    background: #1877F2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.facebook-share-btn:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.copy-link-btn {
    background: white;
    color: #374151;
    border: 2px solid #E5E7EB;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-link-btn:hover {
    border-color: #10B981;
    color: #10B981;
    transform: translateY(-2px);
}

.share-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #10B981;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
}

.action-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.close-btn {
    background: #6B7280;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #4B5563;
}

.dashboard-btn {
    background: #10B981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dashboard-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Confetti Animation */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffd300;
    top: 0;
    opacity: 0;
}

.confetti:nth-child(1) {
    left: 10%;
    animation: makeItRain 5s infinite ease-out;
    animation-delay: 0s;
}

.confetti:nth-child(2) {
    left: 20%;
    animation: makeItRain 5s infinite ease-out;
    animation-delay: 0.5s;
    background: #17ead9;
}

.confetti:nth-child(3) {
    left: 30%;
    animation: makeItRain 5s infinite ease-out;
    animation-delay: 1s;
    background: #f02fc2;
}

.confetti:nth-child(4) {
    left: 40%;
    animation: makeItRain 5s infinite ease-out;
    animation-delay: 1.5s;
    background: #10B981;
}

.confetti:nth-child(5) {
    left: 50%;
    animation: makeItRain 5s infinite ease-out;
    animation-delay: 2s;
    background: #ff6b6b;
}

@keyframes makeItRain {
    from {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        transform: translateY(400px) rotate(360deg);
        opacity: 0;
    }
}