.affirmation-carousel-container {
    margin-bottom: 2rem;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(12px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.05),
        0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: background 0.8s ease;
}

.aff-slides-wrapper {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.aff-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 3rem 1.5rem;
    text-align: center;

    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(8px);

    transition:
        opacity 0.8s cubic-bezier(0.25, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.3, 1),
        filter 0.8s ease;

    pointer-events: none;
    z-index: 1;
}


.aff-slide.aff-slide--active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);

    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.aff-slide-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
}

.aff-slide--active .aff-slide-inner {
    animation: floatContinuous 5s ease-in-out 1s infinite;
}

@keyframes floatContinuous {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bg-soft-purple {
    background: linear-gradient(135deg, #fbf7ff 0%, #ece0fa 100%);
}

.bg-soft-orange {
    background: linear-gradient(135deg, #fffaf6 0%, #fee4cd 100%);
}

.bg-soft-blue {
    background: linear-gradient(135deg, #f5f9ff 0%, #dceaff 100%);
}

.affirmation-icon {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.aff-slide--active .affirmation-icon {
    animation: iconEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

@keyframes iconEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-25deg) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateY(0);
    }
}

.bg-soft-purple .affirmation-icon {
    color: #8338ec;
}

.bg-soft-orange .affirmation-icon {
    color: #fb5607;
}

.bg-soft-blue .affirmation-icon {
    color: #3a86ff;
}

.affirmation-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #1f2937;
    letter-spacing: -0.5px;

    opacity: 0;
    transform: translateY(20px);
}

.aff-slide--active .affirmation-title {
    animation: textEntrance 0.7s cubic-bezier(0.25, 1, 0.3, 1) 0.25s forwards;
}

.affirmation-text {
    font-size: 1.05rem;
    color: #4b5563;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;

    opacity: 0;
    transform: translateY(20px);
}

/* Text animation */

.aff-slide--active .affirmation-text {
    animation: textEntrance 0.7s cubic-bezier(0.25, 1, 0.3, 1) 0.4s forwards;
}

@keyframes textEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aff-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 0 1.2rem;
    position: relative;
    z-index: 10;
}

.aff-dot {
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 999px;

    background: rgba(156, 163, 175, 0.4);

    height: 8px;
    width: 8px;

    transition:
        width 0.4s cubic-bezier(0.25, 1, 0.3, 1),
        background 0.3s ease,
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.aff-dot:hover {
    background: rgba(107, 114, 128, 0.8);
    transform: scale(1.2);
}

.aff-dot.aff-dot--active {
    background: #5d2a77;
    width: 36px;
    transform: scale(1);
    box-shadow: 0 3px 10px rgba(93, 42, 119, 0.4);
}

@media (max-width:768px) {
    .aff-slide {
        padding: 2rem 1.5rem 1.5rem;
    }

    .affirmation-text {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .affirmation-title {
        font-size: 1.35rem;
    }

    .aff-slides-wrapper {
        min-height: 230px;
    }
}

.collection {
    background: #fdfdfd;
    padding-top: 60px;
    padding-bottom: 60px;
}

.pcard {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(93, 42, 119, 0.08);
    border-color: rgba(93, 42, 119, 0.15) !important;
}

.pcard .card-body {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 2.5rem;
    border: none;
    display: flex;
    flex-direction: column;
}

.panduanimg {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 20px;
    background: #f8f6fc;
    padding: 10px;
    border-radius: 12px;
}

.pcard .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.pcard .szf {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.bgpp {
    background: linear-gradient(135deg, var(--high-oren), var(--semi-medium-oren));
    height: 300px;
    color: white;
}

.panduanph {
    padding-top: 0;
    padding-right: 20px;
}

.panduanp {
    font-family: Montserrat !important;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.panduanh {
    font-family: Montserrat !important;
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.3;
}

.pbutton2 {
    padding-top: 0;
    padding-left: 0;
}

.button-panduan {
    font-family: Montserrat !important;
    height: 60px;
    width: 100%;
    max-width: 380px;
    background-color: var(--maroon5);
    border-radius: 8px;
    border: none;
    font-weight: bold;
    font-size: 1.15rem;
    transition: 0.3s;
    color: white;
}

.button-panduan:hover {
    background-color: var(--burgundy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.polybtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pbutton {
    width: 12px;
}

.berita {
    background-color: var(--high-ungu);
    padding-top: 80px;
    padding-bottom: 80px;
    height: auto;
}

.beritah {
    font-family: Montserrat !important;
    font-weight: 800;
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.pberita {
    padding-left: 50px;
}

.becard {
    width: 18rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.becard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bcard {
    height: 165px;
}

.b3card {
    height: 170px;
}

.card-img-top {
    border-radius: 8px;
    padding: 8px;
}

.cardb {
    font-family: Montserrat !important;
    color: #989595;
    font-size: 0.95rem;
}

.cardh {
    font-family: Montserrat !important;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-top: 10px;
}

.pertanyaan {
    padding-top: 140px;
}

.pertanyaanh {
    font-family: Montserrat !important;
    font-weight: 700;
}

.pertanyaanp {
    font-family: Montserrat !important;
    font-weight: 500;
}

.button-pertanyaan {
    font-family: Montserrat !important;
    height: 40px;
    width: 180px;
    background-color: var(--maroon5);
    border-radius: 6px;
    border: none;
    font-weight: bold;
    transition: 0.3s;
    color: white;
}

.button-pertanyaan:hover {
    background-color: var(--burgundy);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.imgpertanyaan {
    height: 500px;
    width: auto;
    cursor: pointer;
}

.navdef {
    color: var(--maroon5);
}

.navdef:hover {
    color: var(--burgundy);
}

.defnav {
    color: var(--maroon5);
}

.defnav:hover {
    color: var(--burgundy);
}

.defhero {
    background-image: url(../assets/Rectangle\ 21.png);
    margin-top: 150px;
    height: 420px;
    width: 500px;
    border-radius: 6px;
    margin-left: 100px;
}

.definfo {
    margin: 30px;
}

.imgdef {
    margin-left: 550px;
    border-radius: 6px;
    margin-top: -360px;
    height: 420px;
    width: 500px;
}

.jenisks {
    background-image: url(../assets/Rectangle\ 21.png);
    height: 500px;
    margin-top: 50px;
}

.hks {
    font-family: Montserrat !important;
    font-weight: bold;
    color: white;
}

.bgks {
    background-color: white;
    height: 150px;
    width: 100%;
    border-radius: 6px;
    padding-top: 20px;
}

.hjenis {
    font-family: Montserrat !important;
    font-weight: 700;
}

.pjenis {
    font-family: Montserrat !important;
    font-size: small;
    font-weight: 550;
}

.bgks2 {
    margin-top: 30px;
    background-color: white;
    height: 150px;
    width: 45%;
    border-radius: 6px;
    padding-top: 7px;
    margin-left: 12px;
}

.bgks3 {
    margin-top: 30px;
    background-color: white;
    height: 150px;
    width: 45%;
    border-radius: 6px;
    padding-top: 7px;
    margin-left: 90px;
}

.hcks {
    font-family: Montserrat !important;
    font-weight: bold;
}

.pictall {
    margin-top: 40px;
    margin-left: 100px;
}

.pict {
    background-image: url(../assets/Rectangle\ 21.png);
    height: 200px;
    width: 200px;
    padding: 30px;
    border-radius: 6px;
}

.picta {
    width: 100px;
}

.pict2 {
    background-image: url(../assets/Rectangle\ 80.png);
    height: 200px;
    width: 200px;
    padding: 30px;
    border-radius: 6px;
}

.p3 {
    color: white;
    font-family: Montserrat !important;
}

.p6 {
    font-family: Montserrat !important;
}

.pphero {
    margin-top: 80px;
    padding-bottom: 80px;
}

.hpngn {
    font-weight: 800;
    font-family: Montserrat !important;
    font-size: 1.8rem;
}

.hppngn {
    font-weight: 700;
    color: var(--maroon5);
    font-family: Montserrat !important;
    font-size: 1.3rem;
}

.bghpngn {
    background-color: #D9D9D9;
    height: 200px;
    width: 45%;
    border-radius: 6px;
    padding: 10px;
    margin-left: 50px;
}

.bghpngn2 {
    background-color: #D9D9D9;
    height: 200px;
    width: 45%;
    border-radius: 6px;
    padding: 10px;
    margin-left: 35px;
}

.bghpngn3 {
    background-color: #D9D9D9;
    height: 200px;
    width: 45%;
    border-radius: 6px;
    padding: 10px;
    margin-left: 50px;
    margin-top: 30px;
}

.bghpngn4 {
    background-color: #D9D9D9;
    height: 200px;
    width: 45%;
    border-radius: 6px;
    padding: 10px;
    margin-left: 35px;
    margin-top: 30px;
}

.imghp {
    width: 150px;
    position: absolute;
    left: 450px;
    bottom: 220px;
}

.imghp2 {
    width: 150px;
    position: absolute;
    left: 1005px;
    bottom: 220px;
}

.imghp3 {
    width: 150px;
    position: absolute;
    left: 450px;
    bottom: -10px;
}

.imghp4 {
    width: 150px;
    position: absolute;
    left: 1005px;
    bottom: -10px;
}

.pncghks {
    margin-top: 70px;
    background-image: url(../assets/Rectangle\ 21.png);
    height: 500px;
}

.pencegahpict {
    margin-left: 35px;
}

.allpict {
    padding-top: 100px;
    margin-left: 90px;
}

.allpict2 {
    padding-top: 50px;
    margin-left: 100px;
}

.hpncgh {
    font-weight: 700;
    font-family: Montserrat !important;
    color: white;
}

.pictpks {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-left: 5px;
    padding-top: 10px;
    margin-left: 95px;
}

.pictpks2 {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-top: 10px;
    margin-left: -30px;
}

.pictpks3 {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-top: 10px;
    padding-left: 5px;
    margin-left: -10px;
}

.pictpks3a {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-top: 10px;
    margin-left: -45px;
}

.pictpks4 {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-top: 10px;
    padding-left: 5px;
    margin-left: -77px;
}

.pictpks4a {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-top: 10px;
    margin-left: -115px;
}

.imgpks {
    width: 70px;
}

.tks {
    font-size: x-small;
    text-align: center;
    font-family: Montserrat !important;
    font-weight: 700;
}

.imgttgkmi {
    background-image: url(../assets/ttgkami.png);
    height: 400px;
    margin-top: 80px;
    padding-top: 120px;
}

.httgkmi {
    color: white;
    font-family: Montserrat !important;
    font-weight: 600;
}

.bghttgkmi {
    background-image: url(../assets/Rectangle\ 21.png);
    margin-top: 100px;
    height: 400px;
    width: 100%;
    border-radius: 6px;
}

.imgell {
    width: 200px;
    margin-top: 50px;
}

.himgttg {
    color: white;
    font-weight: 600;
    font-family: Montserrat !important;
}

.pimgttg {
    color: white;
    font-family: Montserrat !important;
}

.filosofi {
    margin-top: 330px;
}

.imgfilo {
    height: 250px;
    margin-left: 50px;
}

.mgfilo {
    margin-top: 45px;
    margin-right: 70px;
}

.hfilo {
    color: var(--maroon5);
    font-weight: 600;
    font-family: Montserrat !important;
}

.pfilo {
    font-family: Montserrat !important;
}

.bgfilo {
    background-image: url(../assets/Rectangle\ 21.png);
}

.bgim {
    background-image: url(../assets/Rectangle\ 21.png);
    height: 250px;
    margin-top: 50px;
    padding-top: 60px;
}

.him {
    color: white;
    font-weight: 600;
    font-family: Montserrat !important;
    text-align: center;
}

.pim {
    color: white;
    font-family: Montserrat !important;
    text-align: justify;
}

.padclrplt {
    padding-top: 50px;
}

.clrplt {
    font-family: Montserrat !important;
    font-weight: 600px;
    text-align: center;
}

.imgclrplt {
    width: 100%;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.plyfd {
    background-color: #D9D9D9;
    width: 100%;
    height: 100px;
    padding: 15px;
    margin-bottom: 50px;
}

.ply {
    font-family: Montserrat !important;
    font-weight: 600;
    color: var(--maroon5);
}

.pply {
    font-weight: 600;
    font-family: Montserrat !important;
    font-size: large;
}

.Montserrat {
    font-family: Montserrat !important;
    font-weight: 600;
    color: var(--maroon5);
}

.pMontserrat {
    font-weight: 600;
    font-family: Montserrat !important;
    font-size: large;
}

@media (max-width: 575.98px) {
    .button-panduan {
        width: 100%;
        max-width: 280px;
    }

    .bgreport {
        padding: 40px 15px;
    }
}