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;
}
.example-banner-content-wrap h1 {
    max-width: 400px;
    margin: 0 auto;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-top: 20px;
    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%;
    margin: 30px auto;
    background: #fff;
    color: #3bbdad!important;
    padding: 7px 10px;
    margin-top: 25px;
    display: block;
    font-size: 18px;
    border-radius: 3px;
}
.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;
}
.search-section {
    padding: 50px 0;
    text-align: center;
}

#searchInput {
    width: 50%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 20px;
}

.resources-section {
    padding: 30px 0;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    width: 300px;
    height: 300px; /* Set a fixed height for all cards */
    background-color: #3bbdad;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Ensure the content is arranged vertically */
    justify-content: space-between; /* Evenly distribute space inside the card */
    text-align: center; /* Center-align text within the card */
    padding: 20px;
    position: relative;
}

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

.card-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 22px;
    font-weight: bolder;
    margin-bottom: 10px;
    color: #ffffff;
}

.card-content p {
    font-size: 16px;
    font-weight:bold;
    margin-bottom: 40px;
    color: #ffffff;
}

.card-content a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #9f9f9f; /* Different button color */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    align-self: center;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
/* Special styles for the "Build My Resume Now" card */
#buildResumeCard {
    background-color: #007bff; /* Different background color */
    color: #fff; /* White text */
    text-align: center;
    border: 2px solid #0056b3; /* Border to make it stand out */
}

#buildResumeCard h3 {
    font-size: 22px; /* Slightly larger font size */
    margin-bottom: 15px;
}

#buildResumeCard p {
    font-size: 16px; /* Larger font size for the description */
}

#buildResumeCard a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ffcd39; /* Different button color */
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    position: absolute;
    left: 30%;
    transform: translateX(-20%);
}

#buildResumeCard a:hover {
    background-color: #ffc107; /* Hover effect for the button */
    color: #000;
}
.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 */
}
.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;
}
@media (max-width: 768px) {
    .blog-item {
        flex: 1 1 100%; /* Stack items vertically on mobile */
    }
}
/* Navbar */
.navbar {
    position: relative;
    margin-bottom: 0;
    border: none;
  }
  .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;
  }
  .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: 767px) {
    .navbar-collapse {
      display: none;
    }
    .navbar-collapse.open {
      display: block;
      position: absolute;
      top: 100%;
      z-index: 1000;
      background: #fff;
      right: 0;
    }
    .sticky .navbar-collapse.open {
      margin-right: 0px;
    }
  }
  
  /* 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;
    }
  }
/* Container styling to control the grid layout */
.resume-examples-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center cards in the container */
    gap: 20px; /* Space between cards */
}

/* Resume card design */
.resume-card {
    background-color: #51bd96; /* Consistent background color for all cards */
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px; /* Set a minimum height for uniformity */
    max-height: 350px; /* Set a maximum height to prevent cards from growing too large */
    width: calc(33.33% - 20px); /* Set each card to take up 1/3 of the container width, with space for the gap */
    max-width: 300px; /* Limit maximum width to prevent excessive stretching */
    flex-grow: 1; /* Allow cards to grow evenly */
    flex-shrink: 0; /* Prevent cards from shrinking below the minimum height */
}

/* Ensures cards don't stretch across entire width when only one is visible */
@media (max-width: 768px) {
    .resume-card {
        width: calc(50% - 20px); /* Adjust width for smaller screens */
    }
}

@media (max-width: 480px) {
    .resume-card {
        width: calc(100% - 20px); /* Full width for very small screens */
    }
}

/* Title styling */
.resume-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 20px 0; /* Add consistent margin around the title */
    font-weight: bold;
}

/* Description paragraph styling */
.resume-card p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; /* Ensures the paragraph takes up available space */
    display: flex;
    align-items: center;
    justify-content: center; /* Centers the text vertically within the space */
}

/* CTA Button styling */
.resume-card a .cta-button {
    display: inline-block;
    background-color: #3bbdad; /* Button color */
    color: #ffffff; /* Text color */
    padding: 12px 25px; /* Slightly larger padding */
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Hover effects for the entire card and button */
.resume-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* More pronounced shadow on hover */
}

.resume-card a .cta-button:hover {
    background-color: #33a693; /* Darken button color slightly on hover */
}
.explore-resume-examples {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    margin: 30px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.explore-resume-examples h2 {
    font-size: 2rem;
    color: #3bbdad;
    margin-bottom: 20px;
}

.explore-resume-examples p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.explore-resume-examples .cta-button {
    background-color: #3bbdad;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    margin-top: 20px;
}

.explore-resume-examples .cta-button:hover {
    background-color: #34a999;
}
/* Cover Letter Templates Section */
.cover-letter-templates {
    background-color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.cover-letter-templates h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.cover-letter-templates p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.cover-letter-templates .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3bbdad;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cover-letter-templates .cta-button:hover {
    background-color: #2ea79e;
    transform: scale(1.05);
}

/* Cover Letter Categories Section */
.cover-letter-categories {
    padding: 50px 0;
    text-align: center;
    background-color: #ffffff;
}

.cover-letter-categories h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.category-item {
    background-color: #f0fcfa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #3bbdad;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-item a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #3bbdad;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #e6faf7;
}

.category-item a:hover {
    color: #2ea79e;
}
 /* Modern Category Grid & Search Styles */
        .hub-search-container {
            display: flex;
            align-items: center;
            max-width: 750px;
            margin: 20px auto 40px auto;
            /* Adjusted to sit nicely above the grid */
            background: #ffffff;
            border-radius: 50px;
            padding: 5px 25px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid #cbd5e1;
            transition: all 0.3s ease;
        }

        .hub-search-container:focus-within {
            border-color: #3b82f6;
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
        }

        .search-icon {
            color: #64748b;
            font-size: 28px;
            margin-right: 15px;
        }

        .hub-search-input {
            flex: 1;
            border: none;
            padding: 15px 0;
            font-size: 1.25em;
            outline: none;
            background: transparent;
            color: #0f172a;
        }

        .hub-search-input::placeholder {
            color: #94a3b8;
        }

        .organized-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .category-group {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
        }

        .category-title {
            font-size: 1.3em;
            color: #0f172a;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f5f9;
            display: flex;
            align-items: center;
        }

        .category-title span {
            margin-right: 10px;
            font-size: 1.2em;
        }

        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-item {
            margin-bottom: 10px;
        }

        .category-item a {
            color: #334155;
            text-decoration: none;
            display: block;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95em;
        }

        .category-item a:hover {
            background: #f8fafc;
            color: #2563eb;
            font-weight: 600;
        }

        .no-results {
            text-align: center;
            display: none;
            color: #64748b;
            font-size: 1.1em;
            margin-top: 30px;
            grid-column: 1 / -1;
        }


