/* General Layout */
.resume-example-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

/* Resume Image Section */
.resume-image-section {
    text-align: center;
    margin-top: 30px;
}

/* Image Styling with Border and Shadow */
.resume-image-section img {
    width: 100%;
    max-width: 600px; /* Ensures consistent sizing */
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 6px solid #3bbdad;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Wrapper to Center Text */
.resume-text-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* Clickable Text Below Image */
.click-text {
    font-size: 16px;
    color: #3bbdad; 
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Hover Effect on Text */
.click-text:hover {
    color: #33a693; /* Slightly darker teal on hover */
}
/* CTA Section */
.cta-section {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Each CTA Card */
.cta-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* CTA Icons */
.cta-card i.material-icons {
    font-size: 40px;
    color: #3bbdad;
    margin-bottom: 15px;
}

/* CTA Titles */
.cta-card h3 {
    font-size: 20px;
    color: #3bbdad;
    margin-bottom: 10px;
    font-weight: bold;
}

/* CTA Descriptions */
.cta-card p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3bbdad;
    color: #ffffff;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #33a693;
    text-decoration: none;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        align-items: center;
    }

    .cta-card {
        margin-bottom: 20px;
    }
}
/* Explore Hub Section */
.explore-hub {
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.explore-hub p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.hub-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3bbdad; /* Existing theme color */
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hub-link:hover {
    background-color: #3bbdad; /* Slightly darker shade on hover */
}
.back-to-parent {
    text-align: center;
    margin-top: 20px;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3bbdad; /* Adjust color as per your theme */
    color: #ffffff;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #33a693; /* Slightly darker shade on hover */
    text-decoration: none;
}

.back-button i.material-icons {
    vertical-align: middle;
    margin-right: 5px;
}
/* Styling for the resume FAQ section */
.resume-faqs {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header for FAQ section */
.resume-faqs h3 {
    font-size: 24px;
    color: #3bbdad;
    margin-bottom: 20px;
}

/* Individual FAQ item container */
.faq {
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

/* Question styling */
.faq h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

/* Answer styling */
.faq p {
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Optional hover effect for FAQs (if desired) */
.faq:hover {
    background-color: #f1f8f7;
    transition: background-color 0.3s ease;
}

/* Responsive styling */
@media (max-width: 768px) {
    .resume-faqs h3 {
        font-size: 20px;
    }
    .faq h4 {
        font-size: 16px;
    }
    .faq p {
        font-size: 14px;
    }
}
/* Job Description Section */
.job-description {
    background: #f8f9fa;
    border-left: 4px solid #3bbdad;
    border-radius: 8px;
    padding: 20px;
}

/* Career Path Section */
.career-path {
    background: #e9f7f5;
    border-left: 4px solid #f1f8e9;
    border-radius: 8px;
    padding: 20px;
}

/* Key Skills Section */
.skills {
    background: #fff3e6;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
}

/* Regional Demand Section */
.regional-demand {
    background: #f1f8e9;
    border-left: 4px solid #8bc34a;
    border-radius: 8px;
    padding: 20px;
}

/* Education and Certifications Section */
.education-certifications {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 8px;
    padding: 20px;
}

/* Industry Trends Section */
.industry-trends {
    background: #ede7f6;
    border-left: 4px solid #673ab7;
    border-radius: 8px;
    padding: 20px;
}
/* Container for image and overlay */
.resume-overlay-container {
    position: relative;
    width: 100%;
    max-width: 400px; /* Adjust size as needed */
    margin: auto;
}

/* Style for the resume image */
.resume-overlay-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Permanent Overlay */
.resume-overlay-container .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6); /* Adjust transparency here */
    color: #fff;
    font-size: 1.2rem; /* Adjust font size here */
    font-weight: bold;
    text-align: center;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 80%; /* Adjust overlay width */
    max-width: 300px; /* Limit maximum width */
    line-height: 1.4;
}

/* Frame-like container for cover letter content */
.cover-letter-frame {
    border: 2px solid #3bbdad; /* Theme color for border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden; /* Clip content inside the container */
    max-height: 750px; /* Limit the height */
    width: 100%;
    background-color: #fff; /* White background for readability */
    margin: 20px 0; /* Add spacing around the frame */
}

/* Scrollable content */
.cover-letter-content {
    padding: 15px; /* Space inside the container */
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 520px; /* Matches the container's height */
    font-family: 'Arial', sans-serif; /* Clean font */
    font-size: 14px; /* Readable font size */
    line-height: 1.8; /* Comfortable line spacing */
    color: #333; /* Dark text for readability */
    text-align: left; /* Left-align the content */
}

/* Scrollbar customization for modern browsers */
.cover-letter-content::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.cover-letter-content::-webkit-scrollbar-thumb {
    background-color: #3bbdad; /* Theme color for the scrollbar */
    border-radius: 5px; /* Rounded scrollbar */
}

.cover-letter-content::-webkit-scrollbar-track {
    background-color: #f0f0f0; /* Light background for scrollbar track */
}

/* Header Section Styling */
.cover-letter-header {
    background-color: #3bbdad; /* Theme color */
    color: #fff; /* White text */
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #2aa394;
    text-align: left;
}
/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .cover-letter-frame {
        max-height: 300px; /* Reduce height for smaller screens */
    }

    .cover-letter-content {
        max-height: 300px; /* Ensure consistent scrolling */
        font-size: 13px; /* Slightly smaller text for mobile readability */
        padding: 10px; /* Reduce padding to save space */
    }
}

/* Scrollbar customization for all devices */
.cover-letter-content::-webkit-scrollbar {
    width: 8px;
}

.cover-letter-content::-webkit-scrollbar-thumb {
    background-color: #3bbdad;
    border-radius: 5px;
}

.cover-letter-content::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}



