

/* Hero */
.hero-section {
    background: url('/images/bg.jpg') center center / cover no-repeat;
    position: relative;
    /* height: 87vh; */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    padding: 15rem 0 !important;
}



.floating-info-box {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -55px;
    background-color: #1f1f1f;
    color: #fff;
    font-weight: 300;
    max-width: 620px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    font-size: 1.5rem;
    z-index: 2;
    text-align: center;
    padding: 2rem !important;
}


/* APRC Test Section */
#aprc-tests {
    background: #fff;
    padding-top: 7rem;
    padding-bottom: 3rem;
    margin-top: 5rem !important;
}

.section-title {
    font-size: 2.7rem;
    color: #005a54;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: left;
}

.test-list .test-item {
    opacity: 0;
    transform: translateY(120px);
    transition: all 1s ease-out;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 0.35rem;
}

    .test-list .test-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* PDF Section */
#pdf-section {
    background: #fefefe;
    padding: 4rem 0;
}

.pdf-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.pdf-card {
    width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

    .pdf-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .pdf-card a {
        color: #005a54;
        text-decoration: none;
        font-weight: 600;
    }

    .pdf-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-3px);
    }





/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding-top: 6rem;
        padding-bottom: 8rem; /* Give space for the floating box */
        position: relative;
    }

    .floating-info-box {
        position: absolute;
        left: 50%;
        bottom: -40px; /* Half in and out */
        transform: translateX(-50%);
        width: 90%;
        border-radius: 8px;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    #aprc-tests .col-md-5,
    #aprc-tests .col-md-7 {
        text-align: center !important;
        padding-left: 0 !important;
    }

    .test-list .test-item {
        font-size: 1rem;
    }
}

.experience-modern-section {
    padding: 1rem 0;
}

.experience-wrapper {
    gap: 4rem;
}

.experience-text {
    position: relative;
    max-width: 600px;
}

.v-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(180deg, #00b3b3, #007f72);
    border-radius: 6px;
}

.experience-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    margin-left: 1.75rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.experience-desc {
    font-size: 1.25rem;
    margin-left: 1.75rem;
    color: #444;
    line-height: 1.65;
}

.experience-stats {
    display: flex;
}

.stat-box h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00b3b3, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
