/* PDF Showcase Styling */
.pdf-container {
    background: #f8f9fa;
    border: 1px solid #eee;
    margin-bottom: 30px;
    position: relative;
}

/* Adjust height for mobile devices */
@media (max-width: 768px) {
    .pdf-container object {
        height: 500px;
    }
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #007bff; /* Matches your theme-btn color */
}

        /* PDF Showcase Styling */
        .pdf-container {
            background: #f8f9fa;
            border: 1px solid #eee;
            margin-bottom: 30px;
            position: relative;
        }

        /* Adjust height for mobile devices */
        @media (max-width: 768px) {
            .pdf-container object {
                height: 500px;
            }
        }

        .section-title h2 {
            font-size: 36px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #007bff;
            /* Matches your theme-btn color */
        }

        #flipbook {
            width: 800px;
            height: 500px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        #flipbook .page {
            width: 400px;
            height: 500px;
            background-color: white;
            background-size: cover;
            background-position: center;
            line-height: 300px;
            font-size: 20px;
            text-align: center;
        }

        #flipbook .hard {
            background: #1b4332 !important;
            color: white;
            font-weight: bold;
        }

        .cover-text {
            padding-top: 200px;
            text-align: center;
        }

        /* Responsive: Scale down for tablets */
        @media (max-width: 768px) {
            #flipbook {
                width: 100%;
                height: 300px;
            }
        }

        #flipbook .page,
        #flipbook div {
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
        }

