﻿.data-integrity-page {
    font-family: 'Poppins', Arial, sans-serif;
    color: #13233a;
    background: #ffffff;
    overflow: hidden;
}

.di-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}

/* HERO */
.di-hero {
    position: relative;
    padding: 90px 0 80px;
    background: radial-gradient(circle at top left, rgba(0, 166, 81, 0.14), transparent 34%), linear-gradient(135deg, #f4fbf8 0%, #eef7ff 100%);
}

    .di-hero::before {
        content: "";
        position: absolute;
        right: -160px;
        top: -160px;
        width: 430px;
        height: 430px;
        background: rgba(0, 91, 170, 0.12);
        border-radius: 50%;
        animation: diBgMove 7s ease-in-out infinite alternate;
    }

.di-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 45px;
    z-index: 1;
}

.di-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 50px;
    background: #e7f7ef;
    color: #00964d;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.di-hero-content .di-badge,
.di-hero-content h1,
.di-hero-content .di-subtitle,
.di-hero-content .di-text,
.di-hero-content .di-highlights,
.di-hero-content .di-course-info,
.di-hero-content .di-btn-wrap {
    opacity: 0;
    transform: translateY(28px);
    animation: diFadeUp 0.8s ease forwards;
}

.di-hero-content .di-badge {
    animation-delay: 0.1s;
}

.di-hero-content h1 {
    animation-delay: 0.22s;
}

.di-hero-content .di-subtitle {
    animation-delay: 0.34s;
}

.di-hero-content .di-text {
    animation-delay: 0.46s;
}

.di-hero-content .di-highlights {
    animation-delay: 0.58s;
}

.di-hero-content .di-course-info {
    animation-delay: 0.7s;
}

.di-hero-content .di-btn-wrap {
    animation-delay: 0.82s;
}

.di-hero-content h1 {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 800;
    color: #06335f;
    margin: 0 0 22px;
}

.di-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #33465f;
    margin-bottom: 14px;
}

.di-text {
    font-size: 16px;
    line-height: 1.75;
    color: #5d6b7c;
    margin-bottom: 25px;
}

.di-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

    .di-highlights span {
        padding: 10px 15px;
        background: #ffffff;
        border: 1px solid #dcece5;
        border-radius: 12px;
        color: #06335f;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 8px 24px rgba(6, 51, 95, 0.06);
        transition: all 0.35s ease;
    }

        .di-highlights span:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 38px rgba(6, 51, 95, 0.12);
        }

.di-course-info {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

    .di-course-info div {
        background: #ffffff;
        padding: 18px 14px;
        border-radius: 16px;
        border: 1px solid #e3edf3;
        box-shadow: 0 12px 35px rgba(6, 51, 95, 0.07);
        transition: all 0.35s ease;
    }

        .di-course-info div:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 38px rgba(6, 51, 95, 0.12);
        }

    .di-course-info strong {
        display: block;
        color: #00964d;
        font-size: 13px;
        margin-bottom: 7px;
    }

    .di-course-info p {
        margin: 0;
        color: #06335f;
        font-size: 15px;
        font-weight: 700;
    }

    .di-course-info .di-price {
        color: #ff8a00;
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .di-course-info .di-old-price {
        color: #8794a5;
        font-size: 14px;
        text-decoration: line-through;
    }

.di-btn-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.di-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
}

.di-btn-primary {
    background: linear-gradient(135deg, #00964d, #006fb8);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 150, 77, 0.25);
}

    .di-btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -85%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
        transform: skewX(-20deg);
    }

    .di-btn-primary:hover::before {
        animation: diShine 0.75s ease;
    }

    .di-btn-primary:hover {
        transform: translateY(-3px);
        color: #ffffff;
        box-shadow: 0 18px 35px rgba(0, 150, 77, 0.34);
    }

.di-btn-outline {
    color: #06335f;
    background: #ffffff;
    border: 1px solid #cfe2ec;
}

    .di-btn-outline:hover {
        background: #06335f;
        color: #ffffff;
        transform: translateY(-3px);
    }

/* HERO IMAGE */
.di-hero-img {
    position: relative;
    padding: 16px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 24px 55px rgba(6, 51, 95, 0.16);
    opacity: 0;
    transform: translateX(45px) scale(0.96);
    animation: diImageIn 1s ease forwards;
    animation-delay: 0.45s;
}

    .di-hero-img img {
        width: 100%;
        height: 440px;
        object-fit: contain;
        border-radius: 24px;
        display: block;
    }

.di-img-card {
    position: absolute;
    left: 35px;
    bottom: 35px;
    background: rgba(255, 255, 255, 0.94);
    padding: 16px 22px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: diFloat 3.2s ease-in-out infinite;
}

    .di-img-card strong {
        display: block;
        color: #00964d;
        font-size: 22px;
    }

    .di-img-card span {
        color: #33465f;
        font-size: 14px;
        font-weight: 600;
    }

/* COMMON */
.di-section {
    padding: 80px 0;
}

.di-section-heading {
    margin-bottom: 35px;
}

    .di-section-heading.center {
        text-align: center;
    }

    .di-section-heading span {
        color: #00964d;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .di-section-heading h2 {
        color: #06335f;
        font-size: 38px;
        line-height: 1.2;
        margin: 8px 0 0;
        font-weight: 800;
    }

/* SCROLL ANIMATION */
.di-animate {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .di-animate.di-show {
        opacity: 1;
        transform: translateY(0);
    }

.di-delay-1 {
    transition-delay: 0.12s;
}

.di-delay-2 {
    transition-delay: 0.24s;
}

.di-delay-3 {
    transition-delay: 0.36s;
}

/* ABOUT */
.di-about {
    background: #ffffff;
}

.di-about-box {
    background: #ffffff;
    padding: 38px;
    border-radius: 26px;
    border-left: 6px solid #00964d;
    box-shadow: 0 20px 50px rgba(6, 51, 95, 0.09);
}

    .di-about-box p {
        font-size: 16px;
        line-height: 1.85;
        color: #536477;
        margin: 0 0 18px;
    }

        .di-about-box p:last-child {
            margin-bottom: 0;
        }

/* CURRICULUM */
.di-curriculum {
    background: #f5faf8;
}

.di-module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.di-module-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.di-module-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    border: 1px solid #e2eee8;
    box-shadow: 0 14px 35px rgba(6, 51, 95, 0.07);
    transition: all 0.35s ease;
    overflow: hidden;
}

    .di-module-card::after {
        content: "";
        position: absolute;
        right: -45px;
        bottom: -45px;
        width: 110px;
        height: 110px;
        background: rgba(0, 150, 77, 0.09);
        border-radius: 50%;
        transition: all 0.35s ease;
    }

    .di-module-card:hover {
        transform: translateY(-10px);
        border-color: #00964d;
        box-shadow: 0 24px 55px rgba(6, 51, 95, 0.14);
    }

        .di-module-card:hover::after {
            transform: scale(1.22);
        }

    .di-module-card span {
        display: inline-block;
        color: #006fb8;
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .di-module-card h3 {
        position: relative;
        z-index: 1;
        color: #06335f;
        font-size: 22px;
        line-height: 1.45;
        margin: 0 0 18px;
        font-weight: 800;
    }

.di-module-list {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .di-module-list li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 10px;
        color: #536477;
        font-size: 15px;
        line-height: 1.6;
    }

        .di-module-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #00964d;
            font-weight: 900;
        }

/* WHO SHOULD ENROLL */
.di-enroll {
    background: #ffffff;
}

.di-enroll-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

    .di-enroll-grid div {
        background: linear-gradient(180deg, #ffffff, #f7fbff);
        border: 1px solid #dfeaf2;
        border-radius: 18px;
        padding: 22px 18px;
        color: #06335f;
        font-size: 15px;
        font-weight: 700;
        min-height: 92px;
        display: flex;
        align-items: center;
        box-shadow: 0 12px 30px rgba(6, 51, 95, 0.06);
        transition: all 0.35s ease;
    }

        .di-enroll-grid div:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 38px rgba(6, 51, 95, 0.12);
        }

        .di-enroll-grid div::before {
            content: "✓";
            width: 26px;
            height: 26px;
            min-width: 26px;
            margin-right: 12px;
            border-radius: 50%;
            background: #e7f7ef;
            color: #00964d;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
        }

/* CERTIFICATION */
.di-certification {
    background: #f5faf8;
}

.di-cert-box {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 35px;
    align-items: center;
    background: linear-gradient(135deg, #06335f, #006fb8);
    border-radius: 30px;
    padding: 50px;
    color: #ffffff;
    box-shadow: 0 22px 55px rgba(6, 51, 95, 0.2);
}

.di-badge.light {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.di-cert-box h2 {
    font-size: 36px;
    margin: 10px 0 18px;
    color: #ffffff;
}

.di-cert-box h3 {
    font-size: 24px;
    line-height: 1.45;
    color: #ffffff;
    margin: 18px 0;
}

.di-cert-box p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 12px;
}

.di-cert-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    color: #00964d;
    font-size: 74px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    animation: diPulse 2.8s ease-in-out infinite;
}

/* FINAL CTA */
.di-final-cta {
    padding: 85px 0;
    background: radial-gradient(circle at top right, rgba(0, 150, 77, 0.16), transparent 30%), linear-gradient(135deg, #f2fbf7, #eef7ff);
}

.di-final-box {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

    .di-final-box h2 {
        font-size: 42px;
        line-height: 1.2;
        color: #06335f;
        margin: 0 0 18px;
        font-weight: 800;
    }

    .di-final-box p {
        color: #536477;
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

.di-final-fee {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    color: #06335f;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    box-shadow: 0 12px 30px rgba(6, 51, 95, 0.08);
}

    .di-final-fee strong {
        color: #ff8a00;
        font-size: 22px;
    }

    .di-final-fee del {
        color: #8794a5;
        font-size: 16px;
    }

.di-btn-wrap.center {
    justify-content: center;
}

.di-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

    .di-btn-whatsapp:hover {
        background: #1fb357;
        color: #ffffff;
        transform: translateY(-3px);
    }

/* KEYFRAMES */
@keyframes diFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes diImageIn {
    from {
        opacity: 0;
        transform: translateX(45px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes diFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes diShine {
    from {
        left: -85%;
    }

    to {
        left: 130%;
    }
}

@keyframes diPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 150, 77, 0);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 26px rgba(0, 150, 77, 0.28);
    }
}

@keyframes diBgMove {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-25px, 25px);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .di-hero {
        padding: 65px 0;
    }

    .di-hero-grid,
    .di-cert-box {
        grid-template-columns: 1fr;
    }

    .di-hero-content h1 {
        font-size: 38px;
    }

    .di-course-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .di-module-grid {
        grid-template-columns: 1fr;
    }

    .di-enroll-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .di-cert-icon {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .di-section {
        padding: 55px 0;
    }

    .di-hero-content h1,
    .di-final-box h2 {
        font-size: 31px;
    }

    .di-section-heading h2,
    .di-cert-box h2 {
        font-size: 29px;
    }

    .di-subtitle {
        font-size: 16px;
    }

    .di-course-info,
    .di-enroll-grid {
        grid-template-columns: 1fr;
    }

    .di-about-box,
    .di-cert-box {
        padding: 28px 22px;
    }

    .di-hero-img img {
        height: 300px;
    }

    .di-img-card {
        left: 25px;
        bottom: 25px;
        animation: none;
    }

    .di-cert-icon {
        animation: none;
    }

    .di-btn {
        width: 100%;
    }
}
