body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
.main_logo_pro {
    padding: 30px 0!important;
}
.example-header-wrap {
	background: #51bd96;
}
.example-logo {
    max-width: 200px;
}
.example-logo img{
    width: 100%;
}

.example-menu-links ul{
	margin: 0;
	padding: 0;
}
.example-menu-links li {
	display: inline-block;
    margin: 15px 0;
}
.example-menu-links li a{ 
    font-size: 18px;
    color: #fff;
    padding: 15px;
    text-decoration: underline;
}
/*.example-menu-links li:first-child {
border-left: solid 1px #fff;
}
.example-menu-links li:last-child {
border-right: solid 1px #fff;
}*/
.example-banner-outter-wrap {
	/*min-height: calc(100vh - 118px);*/
	background: #51bd96; /* Old Browsers */
	background: -webkit-linear-gradient(top,#51bd96,#3dbcab); /*Safari 5.1-6*/
	background: -o-linear-gradient(top,#51bd96,#3dbcab); /*Opera 11.1-12*/
	background: -moz-linear-gradient(top,#51bd96,#3dbcab); /*Fx 3.6-15*/
	background: linear-gradient(to bottom, #51bd96, #3dbcab); /*Standard*/
}
.example-banner-content-wrap {
	text-align: center;
    padding: 5% 0;
    margin-top: 30px;
}
.example-banner-content-wrap h1 {
    max-width: 500px;
    width: 80vw;
    margin: 0 auto;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    line-height: 50px;
}
.example-banner-content-wrap p {
    color: #ffffff;
    font-size: 22px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 30px;
    font-weight: 300;
}
.build-yours {
    /* width: 30%; */
    max-width: 353px;
    width: 90vw;
    margin: 30px auto;
    background: #f9f9f9;
    color: #3bbdad!important;
    padding: 7px 10px;
    margin-top: 25px;
    display: block;
    font-size: 22px;
    font-weight: 700;
    border-radius: 3px;
}
@media (max-width: 540px) {
    .build-yours {
        width: 90%;
        font-size: 16px;
    }

	.example-banner-content-wrap h1 {
	    font-size: 30px!important;
        max-width: 320px!important;
        line-height: 40px!important;
        margin-top: 50px !important;
	}
}
.build-yours:hover {
    text-decoration: none!important;
    color: #34a496!important;
    box-shadow: 0px 1px 6px 1px #00000030;
}
.example-banner-content-wrap span{
    font-size: 2rem;
    color: #ffffff;
    margin-top: 12%;
    display: inline-block;
    cursor: pointer;
}
.our-mission-main-wrap {
	padding: 50px 0 30px;
}
.example-section-head {
    font-size: 3.5rem;
    font-weight: bold;
    color: #000;
    text-align: center;
}
.example-section-head::before,
.example-section-head::after {
    display: inline-block;
    content: "";
    border-top: .3rem solid #636363;
    width: 4rem;
    margin: 0 0.9rem;
    transform: translateY(-0.8rem);
}
.our-mission-main-wrap p{
	font-size: 2.2rem;
    line-height: 30px;
    margin: 25px 20%;
    text-align: center;
    color: #000;
}
.example-list {
	padding: 0;
	margin: 10px 0 20px;
	text-align: center;
}
.example-list li {
    display: block; /* Changed from inline-block to block */
    width: 100%; /* Set width to 100% to make each item take full width */
    text-align: center;
    margin-bottom: 50px;
}
/* New styles for resume items */
.example-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Set to 2 columns */
    row-gap: 10px; /* Adjust the gap between rows */
    column-gap: 40px; /* Keep the column gap the same */
    margin: 20px 0;
    padding: 0;
}

.resume-image-container {
    width: 100%; /* Ensure the container takes full width */
    background-color: #99e0ce; /* Light teal background color */
    padding: 0; /* Remove padding for the image to fit perfectly */
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

.resume-image-container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    transform: translateY(-5px); /* Slightly raise the container on hover */
}

.resume-image-container img {
    border: 2px solid #99e0ce; /* Light teal border */
    border-radius: 8px;
    padding: 5px; /* Padding between the image and border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    width: 100%; /* Ensure the image takes full width of the container */
    height: 500px; /* Set a uniform height for all images */
    object-fit: cover; /* Ensures the image covers the area while keeping aspect ratio */
    object-position: top left;
}

.example-list li {
    display: block;
    width: 100%;
    text-align: center;
}

.example-list li h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #28776a ;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .example-list {
        grid-template-columns: 1fr; /* One item per row for small screens */
    }
}

.cta-button {
    display: inline-block;
    background-color: #3bbdad; /* Button color */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding inside the button */
    margin-top: 10px; /* Space above the button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center the text */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Font size */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; /* System font */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
    text-decoration: none; /* Remove underline from link */
    margin-left: auto;
    margin-right: auto;
}
.cta-button:hover {
    background-color: #33a693; /* Slightly darker shade on hover */
}
.btn-switcher {
    color: #3bbdad;
    border: 1px solid #3bbdad;
    width: 55%;
    margin: 0 auto;
    border-radius: 3px;
    cursor: pointer;
    z-index: 2; /* Ensure it is above other elements */
    position: relative; /* Ensure positioning context */
}
.btn-switcher p {
    display: inline-block;
    width: 50%;
    margin: 0!important;
    padding: 7px 0;
}
.btn-switcher .active{
    background: #3bbdad;
    color: #fff;
}
.single-btn {
    border:none;
}
.single-btn p {
    border: 1px solid #3bbdad;
    border-radius: 3px;
}
.show-more {
    color: #383838;
    background: #d9dbdb;
    width: 20%;
    margin: 0 auto 50px;
    border-radius: 3px;
    cursor: pointer;
}
.show-more p {
    margin: 0!important;
    padding: 7px 0;
    text-align: center;
    font-weight: bold;
}
.signup-container {
    background: #f0fcfa;
    border-top: solid 1px #2fbeae;
    padding: 40px 0;
    text-align: center;
}
.signup-wrapper {
    max-width: 500px;
    margin: 0 auto;
}
.signup-wrapper h3 {
    font-size: 28px;
    text-align: center;
    font-weight: bold;
}
.signup-wrapper p {
    font-size: 20px;
}
.signup-form {
    width: 75%;
    margin: 0 auto;
}
.signup-form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.signup-form li {
    display: block;
    padding: 5px 0;
}
.social-network .google-login {
    width: 100%;
    height: 46px;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 3px;
    padding: 0;
    display: block;
    text-align: center;
    text-decoration: none;
    background: #4285f4;
}
.social-network .google-login span {
    padding: 10px 0;
    display: inline-block;
    float: none;
    margin-right: 11px;
}
.or_class_in {
    min-height: 10px;
    text-align: center;
    position: relative;
    font-size: 18px;
}
.before_or {
    position: absolute;
    width: 100%;
    display: block;
    height: 1px;
    left: 0;
    background: #d0d1d1;
    top: 11px;
    z-index: 0;
}
span.in_class {
    z-index: 1111;
    width: 60px;
    display: block;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    background: #f0fcfa;
}
.signup-form input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    width: 100%;
    height: 45px;
    background: #fff;
    border: solid 1px #dbe0df;
    font-size: 16px;
    padding: 10px 20px;
}
button.sign_up_its_free {
    height: 45px;
    border-radius: 5px;
    color: #fff;
    background: #3bbdad;
    border: none;
    width: 100%;
    font-size: 18px;
    margin-top: 10px;
}
.footer_kudos_pro {
    background: #f4f4f4;
    border-top: solid 1px #727272;
    padding: 50px 0;
    min-height: 300px;
}
.footer_menu_section_in_all {
    display: block;
}
.footer_kudos_pro_wrap {
    width: 10%;
    float: left;
}
.footer_kudos_pro_wrap ul {
    padding: 0;
    margin: 0;
}
.footer_kudos_pro_wrap ul li {
    display: block;
}
.footer_kudos_pro_wrap li a.footer_menu_top {
    display: block;
    font-size: 16px;
    color: #727272;
    text-decoration: none;
    margin-bottom: 15px;
}
.footer_kudos_pro_wrap li a.footer_menus {
    display: block;
    font-size: 14px;
    color: #8c8c8c;
    text-decoration: none;
    margin-bottom: 10px;
}
.footer_pro_menu_logo {
    text-align: right;
    display: block;
}
/*Flip card css starts*/
.card-container {
    width: 100%;
    height: 354px;
    position: relative;
    -webkit-perspective: 800px;
    -moz-perspective: 800px;
    -o-perspective: 800px;
    perspective: 800px;
}
.card {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-transition: -webkit-transform 1s;
    -moz-transition: -moz-transform 1s;
    -o-transition: -o-transform 1s;
    transition: transform 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50%;
}
.card div {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}
.card .front {
}
.card .back {
    -webkit-transform: rotateY( 180deg );
    -moz-transform: rotateY( 180deg );
    -o-transform: rotateY( 180deg );
    transform: rotateY( 180deg );
}
.card.flipped {
    -webkit-transform: rotateY( 180deg );
    -moz-transform: rotateY( 180deg );
    -o-transform: rotateY( 180deg );
    transform: rotateY( 180deg );
}
/*Flip card css ends*/
.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust gap between blog items */
    justify-content: space-between;
    margin-bottom: 40px; /* Add margin at the bottom of the container */
}

.blog-item {
    background-color: #f8f9fa; /* Light grey background color  */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    flex: 1 1 calc(50% - 20px); /* Two items per row, with gap */
    box-sizing: border-box;
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.blog-item:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.blog-item a {
    text-decoration: none;
    color: inherit; /* Inherit text color */
}

.blog-item img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Match the parent container's rounded corners */
}

.blog-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.blog-item p {
    font-size: 14px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .blog-item {
        flex: 1 1 100%; /* Stack items vertically on mobile */
    }
}
.sticky-sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 40px; /* Positioned on the right with margin */
    z-index: 1000;
}

.sticky-sidebar a {
    display: block;
    margin: 10px 0;
}

.sticky-sidebar img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.sticky-sidebar img:hover {
    transform: scale(1.1);
}
/* General styles */
.sticky-header {
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
}

/* Sticky class */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

/* Other styles */
.logo img {
    max-height: 60px;
    padding-left: 40px;
}

/* Navbar */
.navbar {
    position: relative;
    margin-bottom: 0;
    border: none;
    padding: 0 56px;
  }
  .navbar-default {
    background-color: transparent;
  }
  .navbar .container-fluid {
    padding: 5px 15px;
  }
  .navbar-brand {
    height: auto;
    padding: 0px 15px;
  }
  .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: transparent;
  }
  .navbar-default .navbar-toggle {
    border-color: transparent;
  }
  .navbar-toggle {
    margin: 0;
    padding: 13px 10px;
    border: none;
  }
  .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    background-color: transparent;
  }
  .navbar-default .navbar-collapse {
    padding: 8px 0 0;
  }
  .navbar-nav {
    margin: 0;
  }
  .navbar-nav > li {
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    color: #000;
  }
  .navbar-nav > li > a {
    text-decoration: none; 
    color: #000 !important;
    padding: 5px 8px!important;
    font-size: 16px!important;
  }
  .navbar-nav > li > a:hover, .dropdown-menu > li > a:hover {
    color: #3bbdad !important; 
    background-color: transparent;
  }
  .navbar-brand {
    padding: 0 15px 0 0;
  }
  /* Custom styles for the dropdown */
  .navbar-nav > .dropdown:hover > .dropdown-menu {
    display: block;
    position: absolute;
    z-index: 1000;
  }
  /* Ensure the parent container has relative positioning */
  .navbar-nav > .dropdown {
    position: relative;
  }
  /* Style for the dropdown toggle */
  .navbar-nav > .dropdown:hover > .dropdown-toggle::after {
    display: inline-block;
  }
  /* Custom styles for mobile menu */
  @media (max-width: 1118px) {
      .navbar-collapse {
        display: none;
      }
      .navbar-collapse.open {
        display: block;
        position: absolute;
        top: 100%;
        z-index: 1000;
        background: #fff;
        right: 0;
      }
  }
  @media (max-width: 767px) {
	.menu-separator{
		display: none!important;
	}
	.navbar-nav li {
		padding-right: 55px!important;
	}
  }
  
  /* Sticky navbar starts */
  #navbar {
  /*  overflow: hidden;*/
  }
  .sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 56px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 4px 5px #c9c9c9;
  }
  /* Sticky navbar ends */
  .hammenu .menu-icon {
    padding-top: 18px;
  }
  @media (max-width: 767px) {
    .sticky {
      padding: 0 10px;
    }
    .navbar {
      padding: 0 10px;
    }
  }
/* CTA Block Styling */
.cta-block {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-inline: auto; /* Add spacing at the top and center the block */
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Each CTA Card */
.cta-card {
    flex: 1;
    max-width: 350px;
    margin: 0 10px;   /* Reduce horizontal spacing between cards */
    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;
}

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

/* CTA Icons */
.cta-card i.material-icons {
    margin-bottom: 15px;
}

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

/* 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; /* Prevent underline and blue link style */
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #33a693;
    color: #fff;
    text-decoration: none; /* Ensures no underline on hover as well */
}


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

    .cta-card {
        margin-bottom: 20px;
    }
}
/* Generalized FAQ CSS Styles */
.faq-section {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.faq-item {
    margin-bottom: 15px;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #0056b3;
}

.faq-item p {
    margin: 0 0 10px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.faq-item ul {
    margin: 0;
    padding-left: 20px;
    font-size: 16px;
    color: #555;
}

.faq-item ul li {
    margin-bottom: 5px;
}

.main-resume-nav {
    display: block;
    text-align: center;
    background-color: #3bbdad; /* Matches your theme color */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin: 20px auto;
    text-decoration: none;
    max-width: 250px;
    transition: background-color 0.3s ease;
}

.main-resume-nav:hover {
    background-color: #33a693; /* Slightly darker shade for hover effect */
    text-decoration: none;
}

.comparison-section {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.resume-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.resume-comparison-table th,
.resume-comparison-table td {
    padding: 12px 15px;
    border: 1px solid #ccc;
    text-align: left;
}

@media (max-width: 480px) {
    .resume-comparison-table th,
    .resume-comparison-table td {
        padding: 12px 8px;
    }
}

.resume-comparison-table th {
    background-color: #3bbdad;
    color: #fff;
    text-transform: uppercase;
}

.resume-comparison-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}
/* Style for Canva Resumes Block */
.canva-resumes-block {
    background-color: #f7fcfc; /* Light background to contrast the brand color */
    padding: 20px;
    border: 1px solid #3bbdad; /* Brand color for border */
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.canva-resumes-block h2 {
    color: #3bbdad; /* Brand color for heading */
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.canva-resumes-block p {
    color: #555; /* Neutral text for readability */
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.canva-resumes-block a {
    color: #3bbdad; /* Brand color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.canva-resumes-block a:hover {
    color: #2a8e85; /* Slightly darker shade of brand color for hover */
    text-decoration: underline;
}
/* 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 #3bbdad;
    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;
}
/* Style for Job Search Steps Section */
.job-search-steps {
    background-color: #f9f9f9; /* Light gray background for better contrast */
    border-radius: 8px; /* Rounded corners */
    padding: 30px; /* Padding for the entire section */
    margin: 40px 0; /* Space above and below the section */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-family: Arial, sans-serif; /* Clean font for readability */
}

.job-search-steps h2 {
    font-size: 24px; /* Slightly larger title font */
    color: #3bbdad; /* Accent color for the title */
    margin-bottom: 20px; /* Space below the title */
    text-align: center; /* Center the title */
}

.job-search-steps p {
    font-size: 16px; /* Readable font size */
    line-height: 1.6; /* Increase line spacing for readability */
    color: #555; /* Neutral gray for text */
}

.job-search-steps .step {
    margin-bottom: 25px; /* Space between steps */
    padding: 20px; /* Inner padding for each step */
    border: 1px solid #eaeaea; /* Subtle border for separation */
    border-radius: 5px; /* Rounded corners for steps */
    background-color: #ffffff; /* White background for each step */
}

.job-search-steps .step h3 {
    font-size: 20px; /* Headline size for steps */
    color: #333; /* Darker gray for headlines */
    margin-bottom: 10px; /* Space below step headline */
}

.job-search-steps .step p {
    font-size: 14px; /* Smaller font size for content */
    color: #666; /* Medium gray for step content */
    line-height: 1.6; /* Consistent spacing for readability */
}

.job-search-steps a {
    color: #3bbdad; /* Accent color for links */
    font-weight: bold; /* Make links stand out */
    text-decoration: none; /* Remove underline for links */
}

.job-search-steps a:hover {
    text-decoration: underline; /* Add underline on hover for links */
}

/* Add responsiveness for smaller screens */
@media (max-width: 768px) {
    .job-search-steps {
        padding: 20px; /* Reduce padding for smaller screens */
    }

    .job-search-steps h2 {
        font-size: 20px; /* Smaller title for smaller screens */
    }

    .job-search-steps .step {
        padding: 15px; /* Adjust padding for steps */
    }

    .job-search-steps .step h3 {
        font-size: 18px; /* Smaller headline size */
    }
}

/* Cover Letter Card Styles */
.cover-letter-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.cover-letter-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cover-letter-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.cover-letter-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.cover-letter-snippet {
    font-size: 0.9rem;
    color: #444;
    background-color: #f9f9f9;
    border-left: 4px solid #3bbdad;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cover-letter-snippet strong {
    color: #3bbdad;
}
.button-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Primary Buttons */
.cta-button {
    display: inline-block;
    padding: 10px 15px;
    font-size: 1rem;
    color: #fff;
    background-color: #3bbdad; /* Updated theme color */
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #32a295; /* Darker shade for hover effect */
}
.resume-caption {
    font-size: 14px;
    line-height: 1.4;
    color: #3bbdad; /* or match your brand's text color */
    margin-top: 8px;
    margin-bottom: 16px;
    text-align: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 600px) {
    .resume-caption {
      font-size: 13px;
      line-height: 1.5;
      padding: 0 10px;
    }
  }
    

/* Secondary Button */
.cta-button.secondary {
    background-color: #3bbdad; /* Same theme color for consistency */
    border: 2px solid #fff; /* Optional: Adds differentiation */
}

.cta-button.secondary:hover {
    background-color: #32a295; /* Darker shade for hover effect */
}
.main-resume-nav-container {
    display: flex; /* Align items in a row */
    justify-content: center; /* Center the links horizontally */
    gap: 20px; /* Add spacing between the links */
    margin: 20px 0; /* Add margin for spacing */
}

.main-resume-nav {
    text-decoration: none; /* Remove underline from links */
    color: #ffffff; /* Set text color */
    background-color: #3bbdad; /* Set button background color */
    padding: 10px 20px; /* Add padding */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Adjust font size */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.main-resume-nav:hover {
    background-color: #2a9f91; /* Slightly darker shade for hover */
}
.keyword-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 40px;
    padding-left: 20px;
    margin-top: 15px;
    margin-bottom: 30px;
    list-style-type: disc;
  }
  
  .keyword-list li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #333;
  }
  
