/* ================= GLOBAL ================= */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(90deg, #f8f8f8 50%, #ffe5e5 100%);
    padding-top: 80px;
}

/* GRID BACKGROUND */
.hero-section {
    position: relative;
    padding: 80px 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#eaeaea 1px, transparent 1px),
        linear-gradient(90deg, #eaeaea 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* ================= HEADER ================= */
.logo-icon {
    font-size: 20px;
}

.navbar .nav-link {
    color: #333;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #e60000;
}

.navbar {
    transition: all 0.3s ease;
}

/* default transparent */
.navbar {
    background: transparent;
}

/* on scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* ================= HERO ================= */
.badge-custom {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: #ffe5e5;
    color: #e60000;
    font-size: 13px;
    font-weight: 600;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-desc {
    color: #666;
    font-size: 16px;
    max-width: 520px;
}

/* FEATURES */
.feature-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

/* ================= FORM ================= */
.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    transition: 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e60000;
}

/* ================= BUTTON ================= */
.btn-danger {
    background: #e60000;
    border: none;
}

.btn-danger:hover {
    background: #cc0000;
}

/* ================= ANIMATION ================= */
.hero-title {
    animation: fadeUp 0.8s ease forwards;
}

.form-card {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= TRUST SECTION ================= */
.trusted-section {
    padding: 100px 0;
    background: #fafafa;
    overflow: hidden;
}

.trusted-title {
    font-size: 36px;
    font-weight: 800;
}

.trusted-desc {
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
}

/* MARQUEE BASE */
.logo-marquee {
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* LOGO BOX */
.logo-box {
    min-width: 220px;
    height: 80px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #888;
    border: 1px solid #eee;
    transition: 0.3s;
}

.logo-box:hover {
    color: #000;
    transform: translateY(-3px);
}

/* LEFT SCROLL */
.marquee-left .marquee-track {
    animation: scrollLeft 25s linear infinite;
}

/* RIGHT SCROLL */
.marquee-right .marquee-track {
    animation: scrollRight 25s linear infinite;
}

/* ANIMATIONS */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* ================= FEATURES STRIP ================= */
.features-strip {
    background: #f5f5f5;
    padding: 40px 0;
}

/* BOX */
.feature-box {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.35s ease;
    cursor: pointer;
    border: 1px solid #eee;
    height: 100%;
}

/* ICON */
.feature-box .icon {
    width: 44px;
    height: 44px;
    background: #ffe5e5;
    color: #e60000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    transition: all 0.35s ease;
}

/* TEXT */
.feature-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* HOVER EFFECT */
.feature-box:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* ICON HOVER EFFECT */
.feature-box:hover .icon {
    background: #e60000;
    color: #fff;
    transform: rotate(-8deg) scale(1.1);
}

/* TEXT HOVER */
.feature-box:hover p {
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .feature-box {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}


/* ================= RISK SECTION ================= */
.risk-section {
    padding: 100px 0;
    background: #fafafa;
}

.risk-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: #ffe5e5;
    color: #e60000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.risk-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.risk-desc {
    color: #666;
    max-width: 600px;
}

/* CARD */
.risk-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
}

/* ICON */
.risk-card .icon {
    width: 50px;
    height: 50px;
    background: #f5eaea;
    color: #e60000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* TEXT */
.risk-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.risk-card p {
    color: #666;
    font-size: 14px;
}

/* HOVER EFFECT */
.risk-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(230,0,0,0.08);
    border-color: #f1d0d0;
}

/* ICON HOVER */
.risk-card:hover .icon {
    background: #e60000;
    color: #fff;
    transform: scale(1.1);
}

/* ACTIVE CARD (CENTER ONE LIKE DESIGN) */
.risk-card.active {
    border: 1px solid #f3b5b5;
    box-shadow: 0 20px 50px rgba(230,0,0,0.12);
}

.risk-card.active .icon {
    background: #e60000;
    color: #fff;
}

/* CTA BUTTON GLOW */
.btn-danger {
    position: relative;
    overflow: hidden;
}

.btn-danger::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.btn-danger:hover::after {
    opacity: 1;
}


/* ================= REALITY SECTION ================= */
.reality-section {
    padding: 100px 0;
    background: #fafafa;
}

.reality-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

/* BOX */
.reality-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}

/* LEFT */
.left-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* RIGHT (highlighted) */
.right-box {
    border: 1px solid #f3b5b5;
}

.right-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(230,0,0,0.12);
}

/* TITLE */
.box-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* LIST */
.reality-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reality-box ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #444;
}

/* CHECK ICON */
.reality-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* DANGER LIST */
.reality-box ul.danger li::before {
    content: "✕";
    background: #e60000;
    color: #fff;
}

/* ================= SCROLL ANIMATION ================= */
.reality-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 100px 0;
    background: #fafafa;
}

.services-title {
    font-size: 42px;
    font-weight: 800;
}

.services-desc {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #eee;
    text-align: left;
    transition: all 0.35s ease;
    height: 100%;

    opacity: 0;
    transform: translateY(30px);
}

/* ICON */
.service-card .icon {
    width: 50px;
    height: 50px;
    background: #ffe5e5;
    color: #e60000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* TEXT */
.service-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    color: #666;
    font-size: 14px;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #f1d0d0;
}

.service-card:hover .icon {
    background: #e60000;
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

/* SHOW ANIMATION */
.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= WHY SECTION ================= */
.why-section {
    padding: 100px 0;
    background: #fafafa;
}

.why-title {
    font-size: 42px;
    font-weight: 800;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #eee;
    text-align: left;
    transition: all 0.35s ease;
    height: 100%;

    opacity: 0;
    transform: translateY(30px);
}

/* ICON */
.why-card .icon {
    width: 50px;
    height: 50px;
    background: #ffe5e5;
    color: #e60000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* TEXT */
.why-card h3 {
    font-weight: 800;
    margin-bottom: 5px;
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    color: #666;
    font-size: 14px;
}

/* HOVER */
.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #f1d0d0;
}

.why-card:hover .icon {
    background: #e60000;
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

/* STAT CARD */
.stat-card h3 {
    font-size: 32px;
}

/* SHOW */
.why-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= INDUSTRIES ================= */
.industries-section {
    padding: 100px 0;
    background: #fafafa;
}

.industries-title {
    font-size: 42px;
    font-weight: 800;
}

.industries-desc {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* CARD */
.industry-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 18px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;

    opacity: 0;
    transform: translateY(30px);
}

/* ICON */
.industry-card .icon {
    width: 55px;
    height: 55px;
    background: #ffe5e5;
    color: #e60000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 22px;
    margin: 0 auto 15px;
    transition: 0.3s;
}

/* TEXT */
.industry-card h6 {
    font-weight: 600;
    margin: 0;
}

/* HOVER */
.industry-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #f1d0d0;
}

.industry-card:hover .icon {
    background: #e60000;
    color: #fff;
    transform: scale(1.15) rotate(-5deg);
}

/* SHOW */
.industry-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= HOW SECTION ================= */
.how-section {
    padding: 100px 0;
    background: #fafafa;
}

.how-title {
    font-size: 42px;
    font-weight: 800;
}

/* TIMELINE */
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

/* LINE */
.timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #f3b5b5;
    z-index: 0;
}

/* ITEM */
.timeline-item {
    width: 23%;
    position: relative;
    text-align: center;

    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s;
}

/* CIRCLE */
.circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f3b5b5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: auto;
    position: relative;
    transition: 0.35s;
}

/* STEP NUMBER */
.step {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e60000;
    color: #fff;
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.timeline-item h5 {
    margin-top: 15px;
    font-weight: 700;
}

.timeline-item p {
    color: #666;
    font-size: 14px;
}

/* HOVER EFFECT */
.timeline-item:hover .circle {
    background: #e60000;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(230,0,0,0.2);
}

/* SHOW */
.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .timeline {
        flex-direction: column;
        gap: 40px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        width: 100%;
    }
}

/* ================= FAQ ================= */
.faq-section {
    padding: 100px 0;
    background: #fafafa;
}

.faq-title {
    font-size: 42px;
    font-weight: 800;
}

/* WRAPPER */
.faq-wrapper {
    max-width: 800px;
    margin: auto;
}

/* ITEM */
.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* ACTIVE */
.faq-item.active {
    border: 1px solid #f3b5b5;
    box-shadow: 0 10px 30px rgba(230,0,0,0.08);
}

/* QUESTION */
.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */
.faq-question .icon {
    transition: 0.3s;
}

/* ROTATE ICON */
.faq-item.active .icon {
    transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #666;
    transition: all 0.35s ease;
}

/* SHOW ANSWER */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

/* ================= CTA SECTION ================= */
.cta-section {
    padding: 120px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, #e60000, #b80000);
}

/* GRID OVERLAY */
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* BADGE */
.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    font-size: 12px;
    letter-spacing: 1px;
}

/* TITLE */
.cta-title {
    font-size: 48px;
    font-weight: 800;
}

/* DESC */
.cta-desc {
    max-width: 650px;
    margin: auto;
    opacity: 0.9;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* MAIN BUTTON */
.main-btn {
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    transition: 0.3s;
}

.main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* OUTLINE BUTTON */
.btn-outline-light {
    border-radius: 50px;
    padding: 12px 22px;
    transition: 0.3s;
}

.btn-outline-light:hover {
    background: #fff;
    color: #e60000;
}

/* NOTE */
.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

/* ANIMATION */
.cta-title,
.cta-desc,
.cta-buttons,
.cta-note {
    animation: fadeUp 1s ease forwards;
}


/* ================= FOOTER ================= */
.footer-section {
    background: #0c0c0c;
    color: #aaa;
    padding: 80px 0 30px;
    border-top: 3px solid #e60000;
}

/* LOGO */
.footer-brand .logo {
    font-weight: 700;
    color: #fff;
}

.footer-brand .logo span {
    color: #e60000;
}

.footer-brand p {
    margin-top: 15px;
    color: #888;
}

/* TITLES */
.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* LIST */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

/* LINKS */
.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #fff;
    padding-left: 5px;
}

/* CONTACT */
.footer-section .contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 14px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .footer-bottom {
        text-align: center;
    }
}

/* MOBILE MENU FIX */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
}

@media (max-width: 991px) {
    .navbar {
        background: #fff !important;
    }
}

.navbar {
    z-index: 9999;
}


/* ================= THANK YOU ================= */
.thankyou-section {
    padding: 120px 0;
    background: linear-gradient(90deg, #f8f8f8 50%, #ffe5e5 100%);
    position: relative;
    text-align: center;
}

/* GRID BACKGROUND */
.thankyou-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#eaeaea 1px, transparent 1px),
        linear-gradient(90deg, #eaeaea 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

.thankyou-section .container {
    position: relative;
    z-index: 1;
}

/* SUCCESS ICON */
.success-icon {
    width: 90px;
    height: 90px;
    background: #e60000;
    color: #fff;
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;

    box-shadow: 0 0 0 10px rgba(230,0,0,0.15),
                0 0 0 20px rgba(230,0,0,0.08);
}

/* BADGE */
.thank-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: #ffe5e5;
    color: #e60000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* TITLE */
.thank-title {
    font-size: 48px;
    font-weight: 800;
}

/* TEXT */
.thank-desc {
    font-size: 18px;
    color: #444;
}

.thank-subdesc {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* BUTTONS */
.thank-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* NOTE */
.thank-note {
    font-size: 14px;
    color: #888;
}

/* ANIMATION */
.success-icon,
.thank-badge,
.thank-title,
.thank-desc,
.thank-buttons {
    animation: fadeUp 0.8s ease forwards;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .thank-title {
        font-size: 34px;
    }
}

.iti {
    width: 100%;
    margin-bottom: 15px;
}

.iti input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;

}

.dpdp-section {
  background: #f8f9fb;
}

.small-badge {
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1px;
}

.dpdp-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dpdp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.dpdp-card .step {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #ff3b3b, #ff0000);
  color: #fff;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.dpdp-card h5 {
  margin-top: 40px;
  font-weight: 600;
}

.dpdp-card ul {
  padding-left: 0;
  margin-top: 15px;
  list-style: none;
}

.dpdp-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
}

.dpdp-card ul li::before {
  content: "●";
  color: red;
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 4px;
}

.dpdp-cta {
  background: linear-gradient(135deg, #ff2d2d, #ff0000);
  border-radius: 20px;
  padding: 40px;
}

.dpdp-cta .btn {
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 14px;
}

/* Fade Animation */
.dpdp-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.dpdp-card:nth-child(1) { animation-delay: 0.1s; }
.dpdp-card:nth-child(2) { animation-delay: 0.2s; }
.dpdp-card:nth-child(3) { animation-delay: 0.3s; }
.dpdp-card:nth-child(4) { animation-delay: 0.4s; }
.dpdp-card:nth-child(5) { animation-delay: 0.5s; }
.dpdp-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}