/*
Theme Name: Incruiter Blog Theme
Theme URI: https://incruiter.com
Author: Incruiter Frontend Team
Author URI: https://incruiter.com
Description: Custom blog theme with hero, featured carousel and tag navigation.
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
}

body,
html {
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
}

.html,
body {
    margin-top: 0 !important;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    padding-top: 80px !important; /* Ensures content starts after fixed header */
}

.site-header {
    background: #00003c;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.container {
    padding: 0 8%;
}
.contact-info-bar {
    display: flex;
    justify-content: space-between;
    color: #fff;
    padding: 10px 4%;
}
.contact-bar-mail {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo img {
    height: 50px;
}

/* Menu */
.main-nav .menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* Dropdown Base */
.dropdown-menu {
    position: absolute;
    top: 102%;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 99;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Products Dropdown */
.products-dropdown {
    width: 300px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    top: 50px;
}

.product-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    transition: 0.3s;
}

.product-item:hover {
    background: #f5f7ff;
}

.product-item h4 {
    margin: 0;
    font-size: 15px;
    color: #000;
}

.product-item p {
    margin: 0;
    font-size: 13px;
    color: #0000cb;
    font-weight: 600;
}

/* Icon Circle */
.product-item .icon {
    width: 40px;
    height: 40px;
    background: #1d4ed8;
    border-radius: 50%;
}

/* Simple Dropdown */
.simple-dropdown {
    min-width: 200px;
    padding: 10px 0;
    background: linear-gradient(180deg, #060a85 0%, #03043b 100%);
    z-index: 10000;
}

.simple-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #fff;
}

.simple-dropdown a:hover {
    background: linear-gradient(90.14deg, #06bfd8 0.12%, #0008f7 95.11%);
}
.solutions-dropdown {
    width: 1000px;
    padding: 10px 0;
    background: linear-gradient(180deg, #010164 0%, #000 44.22%);
    box-shadow: 5.208px 12.153px 20.833px 0px rgba(255, 255, 255, 0.1);
    position: absolute;
    left: -400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    top: 50px;
}
.solution-dropdown-content {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    width: 300px;
}
.solution-dropdown-title-header {
    font-size: 12px;
}
.solution-dropdown-title-p {
    font-size: 12px;
    color: #ccc;
}
.solution-dropdown-img {
    display: flex;
    width: 52px;
    height: 52px;
    padding: 12.133px 12.567px 12.133px 11.7px;
    justify-content: center;
    align-items: center;
    border-radius: 8.667px;
    border: 0.433px solid var(--border, #0e7dff);
}

.login-btn > a {
    padding: 8px 8px;
    border-radius: 8px;
    background: #0000cb;
    color: #fff;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    display: flex;
    align-items: center;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.get-started-icon {
    width: auto;
    height: 0.8em;
}
.interviewer-logo {
    width: 30px;
    height: 30px;
}
.contact-bar-phone {
    height: 13px;
    width: 13px;
    margin-right: 5px;
}
.dropdown:hover .arrow-icon {
    transform: rotate(180deg);
}
.dropdown.active .arrow-icon {
    transform: rotate(180deg);
}
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 4%;
    }

    .main-nav .menu {
        gap: 20px;
    }
    .product-item {
        display: flex !important;
    }
    .product-item h4 {
        margin: 0;
        font-size: 15px;
        color: #000 !important;
    }

    .product-item p {
        margin: 0;
        font-size: 13px;
        color: #1d4ed8 !important;
    }
    .products-dropdown {
    }
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }

    .dropdown:hover .arrow-icon {
        transform: none;
    }
    .dropdown.active .arrow-icon {
        transform: rotate(180deg);
    }
    .solution-dropdown-content {
        display: flex !important;
        gap: 15px;
        padding: 12px;
        border-radius: 10px;
        transition: 0.3s;
        cursor: pointer;
        text-decoration: none;
        color: inherit;
        width: 300px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .contact-info-bar p {
        font-size: 12px;
    }
    .main-nav {
        position: absolute;
        top: 105px;
        left: 0;
        width: 100%;
        background: #14093e;
        display: none;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .main-nav.active {
        display: block;
        z-index: 100000;
    }

    .main-nav .menu {
        flex-direction: column;
        gap: 0;
        padding: 15px;
        align-items: flex-start;
    }

    .menu li {
        width: 100%;
    }

    .menu li:last-child {
        border-bottom: none;
    }

    .menu a {
        display: block;
        padding: 10px 0;
    }
    .login-btn-mobile {
        width: fit-content !important;
        font-size: 12px;
    }
    .login-a-mobile {
        padding: 8px !important;
    }
    .get-started-icon {
        margin-right: 5px;
    }
    .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px 15px;
        border-radius: 12px;
    }
    .dropdown-arrow {
        display: inline;
        align-items: center;
    }
    .products-dropdown {
        /* width: 400px; */
        padding: 15px;
        grid-template-columns: 1fr;
    }

    .product-item {
        padding: 10px;
        border-radius: 8px;
    }

    .product-item h4 {
        color: #fff;
    }

    .product-item p {
        color: #ccc;
    }

    .simple-dropdown {
        padding: 0;
    }

    .simple-dropdown a {
        color: #fff;
        /* padding: 12px 20px; */
    }
    .product-item h4 {
        color: #000 !important;
    }

    .login-btn > a {
        background: #0000fc;
        margin: 10px 0;
        text-align: center;
        border-radius: 8px;
    }
    .solutions-dropdown {
        position: absolute;
        left: auto;
        width: 100%;
        box-shadow: none;
        display: flex !important;
        overflow-y: auto;
        max-height: 500px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .header-wrapper {
        height: 70px;
    }

    .logo img {
        height: 35px;
    }
    .demo-right {
        width: 100%;
        /* max-width: 300px !important; */
    }
    .demo-newsletter h3 {
        font-size: 14px !important;
    }
}

.site-footer {
    background: #000;
    color: #fff;
    padding: 40px 60px 40px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-evenly;
}

.footer-left {
    max-width: 320px;
}

.footer-logo {
    width: 180px;
}

.footer-tagline {
    font-size: 12px;
    margin-bottom: 10px;
}

.footer-mobile-links {
    display: none;
}

.footer-mobile-links a {
    display: block;
    color: #fff;
    font-size: 12px;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
}

.footer-column a:hover {
    color: #fff;
}

.footer-certifications {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-certifications img {
    width: 60px;
    height: auto;
}
.google-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.footer-socials img {
    width: 42px;
}

.footer-copy {
    font-size: 12px;
    color: #fff;
}
.footer-column-title {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px !important;
}
.footer-certifications-wrapper {
    display: none;
}
.footer-wrapper {
    display: none;
}

@media (max-width: 1024px) {
    .footer-links {
        display: none;
    }

    .footer-mobile-links {
        display: flex;
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-certifications {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        margin-bottom: 0px;
    }
    .mobile-dropdown-toggle {
        cursor: pointer;
        display: flex;
        gap: 10px;
    }

    .mobile-dropdown-toggle span {
        transition: transform 0.3s ease;
    }

    .mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-dropdown.active .mobile-dropdown-menu {
        max-height: 300px;
        margin-top: 12px;
    }
    .google-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 50%;
        margin-top: 15px;
    }
    .google-container img {
        width: 90%;
    }
}
@media (max-width: 600px) {
    .footer-certifications-wrapper {
        display: none;
    }
    .site-footer {
        padding: 30px 20px 30px;
    }
    .footer-logo {
        width: 100px;
    }
    .footer-certifications {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
        margin-bottom: 0px;
        justify-content: flex-start;
    }
    .footer-socials img {
        width: 38px;
    }
    .google-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 50%;
        margin-top: 15px;
    }
    .google-container img {
        width: 90%;
    }
    .footer-left {
        max-width: 100%;
        border-bottom: 1px solid #fff;
    }
    .mobile-dropdown-toggle {
        cursor: pointer;
        display: flex;
        gap: 10px;
        font-size: 14px;
    }

    .mobile-dropdown-toggle span {
        transition: transform 0.3s ease;
    }

    .mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-dropdown.active .mobile-dropdown-menu {
        max-height: 300px;
    }
    .footer-mobile-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 600px) {
    .mobile-dropdown-toggle {
        cursor: default;
    }
    .mobile-dropdown.active .mobile-dropdown-menu {
        max-height: 300px;
        margin-top: 12px;
    }
    .footer-mobile-links .mobile-dropdown-menu li {
        list-style: none;
    }
    .mobile-dropdown {
        margin-bottom: 10px;
    }
}
.demo-wrapper {
    display: flex;
    gap: 60px;
    padding: 50px 50px;
    background: linear-gradient(180deg, #0a0e4a 0%, #000 100%);
    color: #fff;
    align-items: center;
    justify-content: center;
}
.demo-container {
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.demo-left {
    flex: 1;
}
.location-country {
    font-weight: 800;
}
.location-address {
    font-weight: 500;
}
.demo-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
}

.demo-subtitle {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
}

.demo-address-wrapper {
    margin-top: 20px;
}

.demo-address {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 14px;
    align-items: flex-start;
}

.demo-address img {
    width: 20px;
    height: 20px;
}

.demo-address a {
    color: #fff;
    text-decoration: none;
}

.demo-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1e40ff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    font-weight: 600;
    font-size: 16px;
}

.demo-right {
    flex: 1;
    width: 600px;
}

.demo-map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
}

.demo-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.incruiter-drop {
    position: absolute;
    top: -10px;
    left: 0;
}

.demo-newsletter {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.demo-newsletter h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.demo-newsletter-form {
    display: flex;
    gap: 12px;
}

.demo-newsletter-form input {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: none;
    width: 250px;
}

.demo-newsletter-form button {
    background: #0000fc;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}
.thank-you-mail {
    text-align: left;
    margin-bottom: 10;
    font-weight: 300;
    font-size: 30px;
}
.thank-you-success {
    font-size: 14px;
}
@media (max-width: 1024px) {
    .demo-wrapper {
        flex-direction: column;
        padding: 30px 24px;
    }
    .demo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-direction: column;
    }
    .demo-right {
        width: 100%;
    }
}
/* Blog Section */
.blog-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, #0a0e4a 0%, #000 100%);
}

.blog-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-content {
    flex: 1;
}

.blog-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.blog-description {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.blog-image {
    flex: 1;
}

.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-section {
        padding: 60px 40px;
    }

    .blog-container {
        gap: 40px;
    }

    .blog-heading {
        font-size: 36px;
    }
    .footer-column {
        display: none;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 40px 20px;
    }

    .blog-container {
        flex-direction: column;
        gap: 30px;
    }

    .blog-heading {
        font-size: 25px;
        text-align: center;
    }

    .blog-description {
        text-align: center;
        font-size: 14px;
    }
    .demo-title {
        font-size: 20px;
    }
    .footer-column {
        display: none;
    }
    .demo-newsletter-form input {
        width: 150px;
    }
}

/* Blog Post Section */
.blog-post-section {
    padding: 80px 60px;
    background: #f8f9fa;
}

.blog-post-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-content {
    flex: 1;
}

.blog-post-heading {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    gap: 12px;
}

.blog-post-meta > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.meta-value {
    color: #333;
    font-size: 14px;
}

.blog-post-image {
    flex: 1;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Single Post Container Override */
.single-post-container {
    padding: 0 !important;
}

.single-post-container .row {
    margin: 0;
}

.mytheme-single-post-wrap {
    padding: 0;
    width: 100%;
}

/* Blog Post Content Section */
.blog-post-content-section {
    padding: 60px;
    background: #fff;
}

.blog-post-content-section .container {
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    min-height: 100vh;
}

.blog-post-article {
    flex: 1;
    max-width: 800px;
    min-width: 0;
    margin-right: auto;
}

.hubspot-form-sidebar {
    width: 300px;
    position: sticky;
    top: 140px;
    align-self: flex-start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

@media (max-width: 768px) {
    .blog-post-content-section .container {
        overflow: visible;
    }
}

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #000;
}

.form-container {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #000;
}

.ai-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #1e40ff;
}

.ai-summary h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.ai-summary-content {
    color: #666;
    line-height: 1.6;
}

.ai-summary-content p {
    margin: 0 0 10px 0;
}

.ai-summary-content ul,
.ai-summary-content ol {
    margin: 10px 0;
    padding-left: 20px;
}

.ai-summary-content li {
    margin-bottom: 5px;
    color: #666;
}

.blog-post-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.blog-post-text p {
    margin-bottom: 20px;
}

.blog-post-text h1,
.blog-post-text h2,
.blog-post-text h3,
.blog-post-text h4,
.blog-post-text h5,
.blog-post-text h6 {
    margin: 30px 0 15px 0;
    color: #333;
}

/* Social Share Section */
.social-share-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.share-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.social-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.email {
    background: #666;
}

@media (max-width: 768px) {
    .social-share-buttons {
        gap: 10px;
    }

    .share-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* CTA Section */
.cta-section {
    background: #1d4ed8;
    padding: 40px;
    margin: 40px 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.cta-content p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-button {
    background: #fff;
    color: #1d4ed8;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #1d4ed8;
}

@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Tags Section */

.tag-button {
    display: inline-block;
    padding: 8px 16px;
    background: #ef7730;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 2px solid #ef7730;
}

.tag-button:hover {
    background: #d6661a;
    border-color: #d6661a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 119, 48, 0.3);
}

@media (max-width: 768px) {
    .nv-tags-list {
        gap: 8px;
    }

    .tag-button {
        padding: 6px 12px;
        font-size: 10px;
    }
}

/* Blog Cards Layout */
.posts-wrapper-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.post-desc {
    padding: 20px;
}

.post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.post .default-image-placeholder {
    width: 100%;
    height: 200px;
    display: block;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.post .default-image-placeholder svg {
    width: 100%;
    height: 200px;
}

.post h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.post h2 a {
    color: #333;
    text-decoration: none;
}

.post h2 a:hover {
    color: #1e40ff;
}

.post .excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post p:last-child {
    margin: 0;
}

.post p:last-child a {
    color: #1e40ff;
    text-decoration: none;
    font-weight: 500;
}

.post p:last-child a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .posts-wrapper-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .posts-wrapper-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    padding: 20px 0;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 12px;
    background: #f4f5f7;
    color: #333;
    text-decoration: none;
    border: 2px solid #f4f5f7;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-numbers:hover {
    background: #2f5aae;
    color: #fff;
    border-color: #2f5aae;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 90, 174, 0.3);
}

.page-numbers.current {
    background: #2f5aae;
    color: #fff;
    border-color: #2f5aae;
    cursor: default;
}

.page-numbers.dots {
    background: transparent;
    border: none;
    color: #666;
    cursor: default;
    font-weight: 600;
}

.page-numbers.dots:hover {
    background: transparent;
    color: #666;
    transform: none;
    box-shadow: none;
}

.page-numbers.prev,
.page-numbers.next {
    padding: 8px 16px;
    font-weight: 600;
}

.page-numbers.prev:before {
    content: '← ';
}

.page-numbers.next:after {
    content: ' →';
}

@media (max-width: 768px) {
    .pagination {
        gap: 12px;
        margin: 30px 0;
    }

    .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        padding: 6px 8px;
    }

    .page-numbers.prev,
    .page-numbers.next {
        padding: 6px 12px;
    }
}

/* CTA Popup Styles */
.info-form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.info-form-popup {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    z-index: 10000;
}

.popup-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.popup-content {
    padding: 0 30px 30px;
}

.popup-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #000;
}

/* Responsive */
/* Blog Post Content Section Layout */
.solution-dropdown-title {
    border-right: 0.5px solid white;
}
.solution-dropdown-content:nth-child(3n) .solution-dropdown-title {
    border-right: none;
}
.solution-dropdown-content:last-child .solution-dropdown-title {
    border-right: none;
}
/* HubSpot Form Sidebar - Sticky positioning */

@media (max-width: 1024px) {
    .blog-post-section {
        padding: 60px 40px;
    }

    .blog-post-container {
        gap: 40px;
    }

    .blog-post-heading {
        font-size: 36px;
    }

    .blog-post-content-section {
        padding: 40px;
    }

    .blog-post-content-section .container {
        flex-direction: column;
    }

    .hubspot-form-sidebar {
        width: 100%;
        position: static;
        order: -1;
        margin-bottom: 30px;
    }
    .get-started-popup {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    .get-started-content-img {
        display: none;
    }
    .get-started-divider {
        width: 100%;
        height: 1px;
    }
    .get-started-overlay {
        justify-content: center;
        right: 0;
    }
    .get-started-title {
        font-size: 20px;
    }
}

.tags-list-mobile {
    display: none;
}

.tags-list-desktop {
    display: block;
}

@media (max-width: 768px) {
    .tags-list-mobile {
        display: block;
    }

    .tags-list-desktop {
        display: none;
    }

    .blog-post-section {
        padding: 40px 20px;
    }

    .blog-post-container {
        flex-direction: column;
        gap: 30px;
    }

    .blog-post-heading {
        font-size: 20px;
        text-align: center;
    }

    .blog-post-meta {
        align-items: center;
        text-align: center;
    }

    .blog-post-content-section {
        padding: 30px 20px;
    }

    .blog-post-content-section .container {
        flex-direction: column;
    }

    .hubspot-form-sidebar {
        width: 100%;
        position: static;
        order: -1;
        margin-bottom: 20px;
    }
    .solution-dropdown-title {
        border-right: none;
    }
    .solution-dropdown-title {
        border-right: none;
    }
    .solution-dropdown-content:nth-child(3n) .solution-dropdown-title {
        border-right: none;
    }
    .solution-dropdown-content:last-child .solution-dropdown-title {
        border-right: none;
    }
}
/* Solution Dropdown Border Styles */

.contact-login {
    height: 15px;
    width: 15px;
}
.employer-logo {
    height: 15px;
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
}
.resources-logo {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}
/* LuckyWP Table of Contents Plugin Styles */
.lwptoc {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: block !important;
    visibility: visible !important;
}

.lwptoc_header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

.lwptoc_items li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.lwptoc_items a {
    color: #1e40ff;
    text-decoration: none;
    font-size: 14px;
}

.lwptoc_items a:hover {
    text-decoration: underline;
}
.location-address {
    font-weight: 500;
}
.contact-info-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
}

#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0056a7;
    color: #fff;
    border: none;
    padding: 12px 14px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

#scrollToTop:hover {
    background: #084b91;
}

.mytheme-single-post-wrap {
    overflow: visible !important;
    transform: none !important;
}

.hero-container .tags-list {
    list-style-type: none;
    text-align: center;
}

.hero-container .tags-list li {
    display: inline-block;
    font-weight: bold;
    white-space: nowrap;
}

.nv-tags-list a {
    margin: 0 10px 10px 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff !important;
    padding: 10px;
    border-radius: 4px;
    background: #ef7730;
    line-height: 1;
    font-size: 0.75em !important;
    display: inline-block;
    text-decoration: none;
}

.get-started-overlay {
    position: fixed;
    top: 105px;
    right: 100px;
    width: 100%;
    display: none;
    justify-content: flex-end;
    z-index: 10000;
    padding: 20px 0;
}

.get-started-popup {
    background: linear-gradient(180deg, #000, #010164);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 0;
}

.get-started-close-img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.get-started-content {
    flex: 1;
    text-align: center;
}

.get-started-content-img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.get-started-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.get-started-description {
    font-size: 14px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.5;
}

.d-center {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.get-started-signup-btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
}

.btn-interviewer {
    background: #133f7d;
}

.btn-employer {
    background: #12b6bc;
}

.get-started-bottom-line {
    font-size: 12px;
    color: #fff;
}

.get-started-login {
    color: #12b6bc;
    text-decoration: none;
}

.get-started-divider {
    width: 1px;
    height: 300px;
    background: #e5e5e5;
}
