.circle-left {
    top: 120px;
    left: -250px;
    background: linear-gradient(135deg, rgba(252, 222, 158, 0.75) 35%, rgba(147, 255, 212, 0.75) 75%);
}

.circle-middle {
    bottom: -800px;
    right: -200px;
    background: linear-gradient(135deg, rgba(158, 184, 252, 0.75) 35%, rgba(227, 120, 237, 0.75) 75%);
    ;
}

.circle-right {
    top: 1600px;
    left: -250px;
    background: linear-gradient(135deg, rgba(252, 158, 158, 0.75) 35%, rgba(147, 244, 255, 0.75) 75%);
}


.circle-middle2 {
    background: linear-gradient(135deg, rgba(158, 184, 252, 0.75) 35%, rgba(227, 120, 237, 0.75) 75%);
    bottom: -2664px;
    right: -200px
}


.circle-left2 {
    background: linear-gradient(135deg, rgba(252, 222, 158, 0.75) 35%, rgba(147, 255, 212, 0.75) 75%);
    bottom: -3683px;
    left: -250px;
}

.circle-right2 {
    background: linear-gradient(135deg, rgba(252, 158, 158, 0.75) 35%, rgba(147, 244, 255, 0.75) 75%);
    bottom: -4793px;
    right: -250px;
}

main {
    line-height: 1.7;
    padding: 2rem;
}

body.dark-mode .evidence {
    background: #E6E6E6;
    color: #3C3C3C;
}


.head-text-wrapper {
    margin: 3rem;
    text-align: center;
    align-items: center;
    justify-content: center;
}


.evidence {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
}

.evidence-text h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.evidence-text h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #444;
}

.evidence-text p {
    font-size: 1rem;
    color: #333;
    margin: 0.5rem 0;
}

.evidence-text ul {
    padding-left: 1.5rem;
}

.evidence-text ul li {
    margin-bottom: 0.4rem;
    color: #333;
}

.evidence-text a {
    color: #0066cc;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.evidence-text a:hover {
    color: #003366;
}


.evidence-text h2 {
    margin-top: 2rem;
    font-size: 2rem;
    text-align: center;
    color: #222;
}

.single-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.next-page {
    position: relative;
    bottom: 3rem;
    left: 105rem;
    z-index: 99;
    width: 57px;
    height: 56px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.prev-page {
    position: relative;
    bottom: 3rem;
    z-index: 99;
    width: 57px;
    height: 56px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.next-page {
    right: 2rem;
}

.prev-page {
    left: 2rem;
}

.next-page a,
.prev-page a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.next-page svg,
.prev-page svg {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease;
}

.next-page:hover svg,
.prev-page:hover svg {
    transform: scale(1.05);
}


/* Scroll up */

.scroll-circle {
    background: linear-gradient(135deg, #fce4f4 0%, #f2bddc 25%, #d4bcf1 50%, #bcd9f7 75%, #c2fbf6 100%);
    position: relative;
    bottom: -120rem;
    left: 91%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

@keyframes bounce {

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

    50% {
        transform: translateY(6px);
    }
}

.bounce-arrow {
    animation: bounce 1.6s ease-in-out infinite;
}


.carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 0.8rem;
    overflow: hidden;
    flex-shrink: 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    height: 100%;
}

.carousel-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fbf8f8;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.carousel-btn.prev {
    background: linear-gradient(180deg, #FF9B9F 0%, #FECFEF 100%);
    left: 10px;
}

.carousel-btn.next {
    background: linear-gradient(180deg, #ADCBEE 0%, #E7F0FD 100%);
    right: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    /* Frosted Glass Effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.modal-content {
    margin-top: 5%;
    max-width: 80%;
    max-height: 80%;
}