/* CV Page Specific Styles */

/* Header */
.cv-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1586281380349-632531db7ed4?w=1200&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    padding: 6rem 0;
}

/* Section Title */
.section-title {
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--bs-primary);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* CV Features */
.cv-features {
    margin-bottom: 2rem;
}

.cv-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cv-feature i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* CV Preview */
.cv-preview-wrapper {
    position: relative;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cv-preview {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.cv-preview img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.cv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cv-preview:hover .cv-overlay {
    opacity: 1;
}

.cv-preview:hover img {
    transform: scale(1.05);
}

/* Highlight Cards */
.highlight-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.highlight-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.highlight-list li::before {
    content: '\F633';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--bs-primary);
}

/* Document Cards */
.document-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.document-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
}

.document-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.document-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Download Tracking Modal */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--bs-primary);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .cv-header {
        padding: 4rem 0;
    }
    
    .highlight-card, .document-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .cv-preview-wrapper {
        margin-top: 2rem;
    }
    
    .highlight-card, .document-card {
        padding: 1.5rem;
    }
    
    .highlight-icon, .document-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}
