.page-wrapper {
    transition: opacity 0.3s ease;
}

.second-container {
    position: relative;
    min-height: 100vh;
    margin-top: 8em;
    margin-bottom: 4em;
    transition: all 0.3s ease;
    transform-origin: center;
}

.small a {
    color: unset;
    text-decoration: none;
}

.text-18 {
    font-size: 18px;
    line-height: 1.5;
}

.nav-link {
    color: inherit;
    text-decoration: none;
}

.nav-link:hover {
    text-decoration: underline;
}

.page-scale-in {
    transform: initial;
    opacity: initial;
}

.page-scale-out {
    transform: scale(0.98);
    opacity: 0;
}

.preview-box {
    width: 280px;
    height: 160px;
    background-color: var(--bs-body-bg);
    box-shadow: var(--bs-box-shadow-sm);
    border-radius: var(--bs-border-radius-lg);
    transition: all 0.2s ease-in-out;
}

.preview-box:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

footer.navbar {
    box-shadow: 0 -1px 2px rgba(0, 0, 0, .3);
}

[data-bs-theme="dark"] .card.bg-light {
    background-color: rgba(var(--bs-body-rgb), var(--bs-bg-opacity)) !important;
}

/*cv styles*/
.cv-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cv-actions {
    text-align: center;
    margin-bottom: 1.5rem;
}

.download-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid currentColor;
}

.cv-viewer iframe {
    width: 100%;
    height: 900px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
}

@media (max-width: 768px) {
    .cv-viewer iframe {
        height: 600px;
    }
}