 .custom-ai-btn:hover {
        background: linear-gradient(90deg, #D0003A, #B51151, #AB2379);
        color: #fff;
        box-shadow: 0px 4px 20px rgba(208, 0, 58, 0.5);
        backdrop-filter: blur(10px);
        transform: scale(1);
    }

    .custom-ai-btn {
        background: linear-gradient(90deg, #D0003A, #B51151, #AB2379);
        /* Gradient background */
        border: none;
        color: white;
        font-weight: 600;
        border-radius: 16px;
        padding: 14px 32px;
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: max-content;
        min-width: 55px !important;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        box-shadow: none;
    }

    .swiper-container {
        width: 90%;
        margin-right: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .swiper-container .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 220px;
        background-color: #fff;
        overflow: hidden;
        border-radius: 8px;
    }

    .swiper-container .picture {
        width: 220px;
        height: 320px;
        overflow: hidden;
    }

    .swiper-container .picture img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border: 1px solid #9777fa;
        border-radius: 10px;
    }


     :root {
        --brand-gradient: linear-gradient(90deg, #D0003A, #B51151, #AB2379);
        --brand-gradient-bottom: linear-gradient(to top, #D0003A, #B51151, #AB2379);
        --brand-gradient-signup: linear-gradient(to bottom, #AC2377 0%, #B90F4E 40%, #800D3A 100%);
        --shadow-color: rgba(0, 0, 0, 0.1);
    }

    body {
        font-family: 'Roboto', sans-serif;
        background-color: #ffffff;
    }

    header {
        background-color: #ffffff;
        height: 91px;
    }

    .logo {
        font-size: 24px;
        font-weight: bold;
        color: #aa007f;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 30px;
        margin-right: 8px;
    }

    .nav-link {
        font-size: 18px;
        font-weight: 500;
        color: #000;
    }

    .nav-link:hover {
        color: #aa007f;
    }

    .btn-signup {
        background: var(--brand-gradient);
        width: 118px;
        height: 47px;
        border: none;
        color: white;
        font-weight: 600;
        border-radius: 16px;
        padding: 8px 16px;
        font-size: 16px;
    }

    /* 
        .btn-login {
            border: 2px solid #aa007f;
            width: 118px;
            height: 47px;
            color: #aa007f;
            font-weight: 600;
            border-radius: 16px;
            padding: 8px 16px;
            font-size: 16px;
            background-color: white;
        } */

    /* Search Section */
    .search-section {
        background: var(--brand-gradient);
        padding: 30px 0;
    }

    .search-box {
        display: flex;
        gap: 50px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 35px;
    }

    .search-input {
        flex: 1;
        position: relative;
    }

    .search-input i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .search-input .form-select,
    .search-input .form-control {
        width: 100%;
        padding: 12px 12px 12px 45px;
        border: none;
        border-radius: 25px;
        font-size: 12px;
        color: #333;
        background-color: white;
        font-weight: 500;
    }

    .search-input .form-select:focus,
    .search-input .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(208, 0, 58, 0.2);
    }

    .search-btn {
        background: white;
        color: #D0003A;
        border: none;
        padding: 12px 30px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 16px;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .search-btn:hover {
        background: #f8f8f8;
    }

    @media (max-width: 768px) {
        .search-box {
            flex-direction: column;
            gap: 10px;
        }

        .search-input {
            width: 100%;
        }

        .search-btn {
            width: 100%;
        }
    }

    /* dropdown section */
    .dropdown {
        display: none;
        position: absolute;
        top: 200px;
        left: 50%;
        transform: translateX(-50%);
        width: 1445px;
        height: 606px;
        background: white;
        box-shadow: 0px 5px 15px var(--shadow-color);
        border-radius: 15px;
        padding: 32px 72px;
        z-index: 1000;
    }

    .dropdown.active {
        display: flex;
        justify-content: space-between;
        /* position: relative; */
    }

    .dropdown::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 100%;
        background: var(--brand-gradient);
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
    }

    .dropdown-box {
        width: 634.5px;
        height: 542px;
        background: white;
        border-radius: 15px;
        padding: 32px;
        box-shadow: 0px 13px 21px 0 var(--shadow-color);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .dropdown-box h3 {
        font-size: 24px;
        font-weight: bold;
        background-image: var(--brand-gradient);
        color: transparent;
        background-clip: text;
    }

    .dropdown-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        align-items: center;
    }

    .dropdown-list img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .dropdown-list-item {
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: bold;
        padding: 8px;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
        color: black;
    }

    .dropdown-list-item:hover {
        color: unset !important;
        text-decoration: unset !important;
    }

    .dropdown-list-item:hover {
        background-color: #FBE7FF;
    }

    .dropdown-button {
        background: var(--brand-gradient);
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        width: 159px;
        height: 47px;
        align-self: flex-end;
    }

    .solutions-box {
        width: 403px;
        height: 457px;
    }

    .resources-box {
        width: 542px;
        height: 245px;
    }

    .resources-blogs {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .resources-blogs p {
        font-size: 18px;
        line-height: 30px;
        padding: 8px;
        margin-bottom: -8px;
    }

    .blogs-image {
        height: 100px;
        width: 200px;
        border-radius: 25px;
        background-color: #E1A2BD;
    }

    .read-more {
        text-decoration: none;
        margin-left: auto;
        color: black;
        font-weight: bold;
    }

    .solutions-dropdown {
        gap: 32px;
        align-items: center;
        justify-content: center;
        display: none;
    }

    .resources-dropdown {
        width: 951px;
        height: 351px;
        gap: 32px;
        align-items: center;
        justify-content: center;
        display: none;
    }

    .solutions-testimonial {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 391px;
    }

    .solutions-testimonial img {
        width: 327px;
        height: auto;
    }

    .solutions-testimonial .stars {
        width: 140px;
        height: 28px;
    }

    .testimonial-header {
        font-size: 16px;
        font-weight: 520;
        background-image: var(--brand-gradient);
        color: transparent;
        background-clip: text;
    }

    .top-testimonial {
        display: flex;
        align-items: center;
        gap: 72px;
        margin-bottom: 32px;
    }

    .list-solutions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Popular Category Section */
    .popular-category {
        background-color: white;
        padding: 15px 0;
    }

    .category-list {
        display: flex;
        align-items: center;
        gap: 70px;
        flex-wrap: wrap;
    }

    .category-label {
        color: #333;
        font-size: 16px;
    }

    .category-link {
        color: #666;
        text-decoration: underline;
        font-size: 13px;
        transition: color 0.3s ease;
        font-weight: 500;
    }

    .category-link:hover {
        color: var(--brand-gradient-start, #D0003A);
    }

    .menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        outline: inherit;
    }

    .nav-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }



    @media (min-width: 1300px) {
        .menu {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .category-list {
            gap: 10px;
        }

        .category-label {
            width: 100%;
            margin-bottom: 10px;
        }
    }

    @media (max-width: 1200px) {
        .nav-item {
            display: none;
        }

        .menu {
            display: block;
        }
    }

    @media (max-width: 600px) {
        .nav-actions .btn-login {
            display: none;
        }

        .nav-actions .btn-signup {
            display: none;
        }
    }

    /* Hero Section */
    .hero-section {
        padding: 40px 0px 80px 0px;
        background: #fff;
    }

    .hero-section h1 {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 24px;
        font-weight: 600;
        color: #000;
        width: 80%;
    }

    .hero-section .highlight {
        color: #B51151;
    }

    .hero-description {
        font-size: 20px;
        /* line-height: 1.6; */
        color: #333;
        margin-bottom: 40px;
        max-width: 550px;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        margin-top: 32px;
    }

    .hero-primary {
        background: var(--brand-gradient);
        color: white;
        border: none;
        padding: 14px 32px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .hero-primary:hover {
        opacity: 0.9;
    }

    .hero-secondary {
        background: transparent;
        color: #B51151;
        border: 2px solid #B51151;
        padding: 14px 32px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .hero-secondary:hover {
        background: linear-gradient(110deg,
                transparent 0%,
                transparent 25%,
                rgba(181, 17, 81, 0.1) 45%,
                rgba(181, 17, 81, 0.1) 55%,
                transparent 75%,
                transparent 100%);
        background-size: 200% 100%;
        animation: shine 2s linear infinite;
        border-color: #D0003A;
        color: #D0003A;
    }

    @keyframes shine {
        0% {
            background-position: 200% center;
        }

        100% {
            background-position: -200% center;
        }
    }


    .stats-section {
        padding-bottom: 80px;
    }

    .stats-section-header {
        font-size: 32px;
        font-weight: 600;
        font-family: 'Roboto', sans-serif !important;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
        width: 50%;
        margin: 0 auto;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
        position: relative;
        z-index: 1;
    }

    .stat-item::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 71%;
        background: linear-gradient(to top, rgba(227, 99, 210, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
        border-radius: 16px;
        z-index: -1;
    }

    .stat-icon {
        margin-bottom: 12px;
    }

    .stat-icon i {
        color: #B51151;
        font-size: 24px;
    }

    .stat-label {
        font-size: 14px;
        color: #333;
        margin-bottom: 8px;
        white-space: nowrap;
    }

    .stat-value {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 12px 24px;
    }

    .stat-value .digit {
        font-size: 45px;
        font-weight: 800;
        color: #000;
        display: inline-block;
        margin: 0;
        padding: 0;
    }

    @media (max-width: 900px) {
        .stats-container {
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
            align-items: center;
        }

        .stat-item {
            width: 100%;
            max-width: 200px;
        }
    }

    .image-placeholder {
        width: 100%;
        height: 450px;
        border-radius: 12px;
    }

    .hero-video {
        width: 100%;
        height: 470px;
        object-fit: contain;
        border-radius: 30px;
    }

    @media (max-width: 900px) {
        .hero-section {
            padding: 40px 0;
        }

        .hero-section h1 {
            font-size: 36px;
        }

        .image-placeholder {
            height: 300px;
            /* margin-top: 40px; */
        }
    }

    @media (max-width: 600px) {
        .popular-category {
            padding: 10px;
        }

        .hero-section {
            padding: 10px;
        }

        .hero-description {
            font-size: 16px;
        }

        .hero-section h1 {
            font-size: 29px;
        }

        .hero-buttons {
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .hero-video {
            height: auto;
        }

        .stats-container {
            display: block;
            padding: 0px;
            width: 50%;
            margin: 0 auto;
        }

        .stats-section-header {
            font-size: 22px;
            font-weight: 400;
            line-height: 40px;
        }

        .stats-section {
            padding-bottom: 20px !important;
        }

        .search-section {
            margin-top: -20px;
        }

    }

    @media (min-width: 601px) and (max-width: 991px) {
        .category-list {
            gap: 15px;
        }

        .hero-buttons {
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .hero-section h1 {
            width: 100%;
        }

        .hero-description {
            max-width: 100%;
        }

        .stats-container {
            display: flex;
            width: 100%;
        }

        .stats-section-header {
            font-size: 22px;
        }

        .stats-section {
            padding-bottom: 20px !important;
        }

        .video-container video {
            object-fit: contain;
            width: 300px;
            height: 300px;
        }
    }


    /* Animation for entire stats-container */
    @keyframes slideDown {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Animation for stat-value (percentage) */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Animation for checkmark appearance */
    @keyframes scaleRotate {
        from {
            transform: scale(0) rotate(-45deg);
            opacity: 0;
        }

        to {
            transform: scale(1) rotate(0);
            opacity: 1;
        }
    }

    /* Apply the animations */
    .stats-container {
        animation: slideDown 1s ease-out forwards;
    }

    /* Each stat-item animation */
    .stat-item {
        opacity: 0;
        animation: slideDown 1s ease-out forwards;
        animation-delay: 0.2s;
    }

    /* Percent number fades in */
    .stat-value .digit {
        opacity: 0;
        animation: fadeIn 0.5s ease-out forwards;
    }

    .stat-value .digit:nth-child(1) {
        animation-delay: 0.6s;
    }

    /* 9 */
    .stat-value .digit:nth-child(2) {
        animation-delay: 0.8s;
    }

    /* 8 */
    .stat-value .digit:nth-child(3) {
        animation-delay: 1s;
    }

    /* % */

    /* Checkmark scales and rotates in */
    .stat-icon i {
        opacity: 0;
        animation: scaleRotate 0.5s ease-out forwards;
        animation-delay: 0.9s;
    }


    /* How It Works Section */
    .how-it-works {
        padding: 20px 32px;
        background: #fff;
    }

    .how-it-works h1 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .gradient-text {
        background-image: var(--brand-gradient);
        color: transparent;
        background-clip: text;
    }

    .how-it-works h2 {
        text-align: center;
        font-size: 48px;
        font-weight: 700;
        color: #333;
        margin-bottom: 16px;
    }

    .section-description {
        text-align: center;
        font-size: 20px;
        line-height: 1.6;
        max-width: 1116xpx;
        margin: 0 auto 50px;
    }

    .steps-container {
        display: flex;
        gap: 30px;
        /* max-width: 1200px; */
        margin: 0 auto;
    }

    .step-left {
        flex: 1;
        min-width: 400px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .preview-box {
        border: 1px solid #D0003A;
        border-radius: 25px;
    }

    .preview-box1 {
        width: 634px;
        height: 613px;
    }

    .preview-box2 {
        width: 307px;
        height: 416px;
    }

    .bottom-preview-box {
        display: flex;
        gap: 20px;
    }

    .preview-box3 {
        width: 307px;
        height: 416px;
    }

    .preview-box {
        border: 1px solid #D0003A;
        border-radius: 25px;
    }

    .preview-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 25px;
    }

    .preview-box video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 25px;
    }

    .bottom-preview-box {
        display: flex;
        gap: 20px;
    }

    .step-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .step-item {
        position: relative;
        margin-bottom: 16px;
    }

    .step-content-wrapper {
        border-left: 7px solid #B51151;
    }

    .inactive {
        border-left: 7px solid #333;
    }

    .step-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 20px 20px 20px;
        background: #fff;
        cursor: pointer;
        font-family: 'Roboto', sans-serif !important;
    }

    .step-header h3 {
        font-size: 28px;
        font-weight: 600;
        margin: 0;
        font-family: 'Roboto', sans-serif !important;
    }

    .toggle-btn {
        background: none;
        border: none;
        color: #B51151;
        cursor: pointer;
        padding: 8px;
    }

    .toggle-btn i {
        transition: transform 0.3s ease;
    }

    .step-content-wrapper.active .toggle-btn i {
        transform: rotate(180deg);
    }

    .step-content {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        margin-left: auto;
    }

    .step-content-wrapper.active .step-content {
        padding: 0px 20px 0px 20px;
        max-height: 500px;
    }

    .step-content p {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .resume-upload {
        display: flex;
        gap: 16px;
        margin-bottom: 16px;
    }

    .upload-box {
        flex: 1;
        border: 1px solid #AC2377;
        border-radius: 40px;
        padding: 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        background: white;
        cursor: pointer;
    }

    .upload-box i {
        color: #333;
        font-size: 24px;
    }

    .upload-box span {
        color: #666;
        font-size: 14px;
        opacity: 0.8;
        font-weight: 600;
    }

    .step-button {
        display: flex;
        justify-content: flex-end;
        width: 51%;
    }

    .create-btn {
        background: var(--brand-gradient);
        color: white;
        border: none;
        border-radius: 20px;
        padding: 14px 32px;
        font-weight: 600;
        cursor: pointer;
    }

    .no-resume {
        font-size: 24px;
        color: #666;
        margin: 0;
        float: right;
    }

    .start-link {
        color: #B51151;
        text-decoration: none;
    }

    .tablet-boxes {
        display: none;
    }

    .mobile-boxes {
        display: none;
    }

    @media (max-width: 1300px) {
        .step-left {
            display: none
        }
    }

    @media (max-width: 900px) {
        .how-it-works .container {
            margin-top: 32px;
            padding: 0 32px;
            padding-right: 32px;
        }

        .steps-container {
            flex-direction: column;
        }

        .preview-box {
            min-height: 300px;
        }

        .step-item {
            display: flex;
            flex-direction: row;
            width: 100%;
            min-width: 0;
            margin-bottom: 32px;
            gap: 32px;
        }

        .tablet-boxes {
            display: block;
            margin-top: 20px;
        }

        .tablet-boxes .image-container {
            width: 200px;
            height: 309px;
            border-radius: 25px;
            border: 4px solid #AC2377;
        }

        .step-header h3 {
            width: 100%;
            line-height: normal;
        }

        .step-content p {
            width: 100%;
            line-height: normal;
        }

        .step-content-wrapper {
            display: flex;
            flex-direction: column;
            width: 407px;
        }

        .no-resume {
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {
        .resume-upload {
            flex-direction: column;
        }

        .create-btn {
            width: 100%;
            padding: 12px;
        }
    }

    @media (max-width: 600px) {
        .how-it-works {
            padding: 0px;
        }

        .how-it-works .container {
            padding: 0 15px;
        }

        .how-it-works h1 {
            font-size: 16px;
            margin-bottom: 0px;
        }

        .how-it-works h2 {
            font-size: 32px;
        }

        .how-it-works .section-description {
            font-size: 16px;
            margin: 0 auto 20px;
        }

        .step-item .step-header h3 {
            font-size: 16px;
        }

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

        .step-item {
            border-bottom: 1px solid #333;
        }

        .mobile-boxes {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }

        .mobile-boxes .image-container {
            width: 100%;
            height: 213px;
            border-radius: 25px;
            border: 4px solid #AC2377;
        }

        .mobile-boxes .create-btn {
            width: auto;
        }

        .tablet-boxes {
            display: none;
        }
    }

    /* PARTNERS */
    .partners-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 1) 4%,
                rgba(224, 187, 219, 0.3) 20%,
                rgba(227, 99, 210, 0.3) 48%,
                rgba(227, 99, 210, 0.1) 80%,
                rgba(255, 255, 255, 100) 99%);
        padding: 50px 20px;
    }

    .partners-section h2 {
        background-image: var(--brand-gradient);
        color: transparent;
        background-clip: text;
        font-size: 24px;
        margin: 0;
    }

    .partners-section h1 {
        font-size: 48px !important;
        color: #333;
        margin: 18px 0;
    }

    .partners-logos {
        display: flex;
        gap: 20px;
        margin-top: 32px;
    }

    .partner-logo {
        width: 262px;
        height: 100px;
        border-radius: 25px;
        border: solid 1px #333;
    }

    @media (max-width: 1300px) {
        .partners-logos {
            display: flex;
            overflow: hidden;
            white-space: nowrap;
            justify-content: center;
            gap: 20px;
            max-width: 47.25rem;
        }

        .partner-logo {
            flex-shrink: 0;
        }
    }

    @media (max-width: 600px) {
        .partners-section {
            margin-top: 32px;
            padding: 0px 20px;
        }

        .partners-section h2 {
            font-size: 15px;
        }

        .partners-section h1 {
            font-size: 32px;
        }

        .partners-logos {
            overflow: visible;
            white-space: unset;
            flex-wrap: wrap;
        }
    }

    /* TESTIMONIAL */
    .testimonials-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: white;
        padding: 217px 0px;
        position: relative;
    }

    .testimonials-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .testimonials-text h2 {
        background-image: var(--brand-gradient);
        color: transparent;
        background-clip: text;
        font-size: 24px;
        margin: 0;
    }

    .testimonials-text h1 {
        font-size: 48px;
        color: #333;
        margin: 18px 0;
        white-space: nowrap;
    }

    .testimonials-text a {
        width: 193px;
        height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--brand-gradient);
        color: white;
        font-size: 16px;
        text-decoration: none;
        padding: 12px 24px;
        border-radius: 16px;
        margin-top: 20px;
        transition: background 0.3s;
    }

    .testimonials-text a:hover {
        background: linear-gradient(to right, #ff5e5e, #a50050);
    }

    .testimonials-text a span img {
        margin-left: 15px;
    }

    .testimonial-cards {
        flex: 2;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .testimonial-card {
        position: absolute;
        width: 700px;
        height: 190px;
    }

    .testimonial-card:nth-child(2) {
        width: 450px;
        height: 127px;
        bottom: 100px;
        left: 430px;
        z-index: 10;
    }

    .testimonial-card:last-child {
        width: 450px;
        height: 127px;
        top: 100px;
        left: 430px;
        z-index: 10;
    }

    @media (max-width: 1440px) {
        .testimonials-text {
            margin-left: 90px;
        }

        .testimonial-card:nth-child(2) {
            left: 250px;
        }

        .testimonial-card:last-child {
            left: 250px;
        }
    }

    @media (max-width: 1300px) {
        .testimonials-section {
            flex-direction: column;
            justify-content: center;
            position: static;
        }

        .testimonials-text {
            text-align: center;
            align-items: center;
            margin-left: 0;
            margin-bottom: 32px;
        }

        .testimonials-text h1 {
            margin: 0;
        }

        .testimonial-cards {
            position: static;
            flex-direction: column;
            margin: 32px 0;
            gap: 32px;
        }

        .testimonial-card {
            position: static;
            width: 720px;
        }

        .testimonial-card:nth-child(2) {
            width: 720px;
            height: 190px;
        }

        .testimonial-card:last-child {
            width: 720px;
            height: 190px;
        }
    }

    @media (max-width: 600px) {
        .testimonials-section {
            display: none;
            padding: 32px;
            align-items: start;
        }

        .testimonials-text {
            align-items: start;
            margin-left: 32px;
        }

        .testimonials-text h2 {
            font-size: 15px;
        }

        .testimonials-text h1 {
            font-size: 26px;
        }

        .testimonials-text a {
            width: 127px;
            height: 48px;
            font-size: 12px;
        }

        .testimonials-text a span {
            display: none;
        }

        .testimonial-card {
            position: static;
            width: auto;
            height: auto;
            padding: 0 32px;
        }

        .testimonial-card:nth-child(2) {
            width: auto;
            height: auto;
        }

        .testimonial-card:last-child {
            width: auto;
            height: auto;
        }
    }

    /* Styles for tablets */
    @media (min-width: 601px) and (max-width: 991px) {
        .testimonials-section {
            padding: 20px 0px !important;
            margin: auto !important;
        }
    }

    /* BLOGS */
    .insights-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: white;
    }

    .insights-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .insights-header h2 {
        background-image: var(--brand-gradient);
        color: transparent;
        background-clip: text;
        font-size: 24px;
        margin: 0;
    }

    .insights-header h1 {
        font-size: 48px !important;
        color: #333;
        margin: 18px 0;
    }

    .insights-header p {
        font-size: 20px;
        color: #333;
        margin: 0;
    }

    .insights-cards {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 32px;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 32px;
    }

    .insights-cards::-webkit-scrollbar {
        display: none;
    }

    .insight-card {
        width: 372px;
        height: 499px;
        flex-shrink: 0;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: left;
        scroll-snap-align: start;
    }

    .insight-card .image-placeholder {
        width: 100%;
        height: 190px;
        background-color: #E1A2BD;
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .insight-card .image-placeholder img {
        border-radius: 10px;
    }

    .insight-card h3 {
        font-size: 20px;
        margin-bottom: 18px;
        color: black;
        line-height: 30px;
    }

    .insight-card p {
        font-size: 16px;
        color: black;
        margin-bottom: 18px;
        line-height: 30px;
    }

    .insight-card a {
        font-size: 16px;
        font-weight: bold;
        color: var(--brand-gradient);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .insight-card a span {
        margin-left: 5px;
    }

    .bottom-nav {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 32px;
    }

    .circles {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 148px;
        height: 64px;
    }

    .circle {
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #B2B2B2;
    }

    .active-step {
        background: var(--brand-gradient);
    }

    .change-arrow {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 148px;
        height: 64px;
        background: white;
        border-radius: 15px;
        gap: 16px;
    }

    .change-arrow img {
        width: 12px;
        height: 12px;
    }

    .change-arrow .left-arrow {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        border-radius: 8px;
        background-image: white;
        border: 1px solid #B2B2B2;
    }

    .change-arrow .right-arrow {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        border-radius: 8px;
        background-image: var(--brand-gradient);
    }

    @media (max-width: 1440px) {
        .insights-section {
            padding: 0 90px;
        }
    }

    @media (max-width: 600px) {
        .insights-section {
            padding: 0 15px !important;
        }

        .insights-header {
            margin-bottom: 5px;
        }

        .insights-header h2 {
            font-size: 18px;
            margin-top: 18px
        }

        .insights-header h1 {
            font-size: 32px;
            margin: 10px 0;
        }

        .insights-header p {
            font-size: 14px;
        }

        .insights-header a {
            display: none;
        }

        .insight-card h3 {
            font-size: 14px;
            margin: 0;
            line-height: 20px;
        }

        .insight-card p {
            font-size: 14px;
            line-height: 20px;
            margin: 0;
        }

        .insight-card a {
            font-size: 14px;
            margin: 0;
        }

        .insight-card .image-placeholder {
            margin: 0;
            height: 138px;
        }

        .insight-card {
            width: 256px;
            height: 381px;
        }
    }

    /* HIRING */
    .hiring-section {
        display: flex;
        flex-direction: column;
        padding: 98px 262px;
        background: var(--brand-gradient-signup);
        height: 373px;
        color: white;
    }

    .hiring-text h1 {
        color: white;
        font-size: 64px;
        font-weight: bold;
        margin: 20px 0;
    }

    .hiring-text p {
        color: white;
        font-size: 40px;
        margin: 0;
    }

    .hiring-button {
        margin-left: auto;
        width: 152px;
        height: 47px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        color: #a50050;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        padding: 12px 24px;
        border-radius: 16px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: background 0.3s ease;
    }

    @media (max-width: 1440px) {
        .hiring-section {
            padding: 98px 90px;
        }
    }

    @media (max-width: 1300px) {
        .hiring-section {
            padding: 98px 72px;
        }

        .hiring-button {
            margin-top: 24px;
        }
    }

    @media (max-width: 600px) {
        .hiring-section {
            padding: 98px 32px;
        }

        .hiring-text p {
            font-size: 34px;
            margin-bottom: 32px;
        }

        .hiring-text h1 {
            font-size: 38px;
        }

        .hiring-button {
            margin-left: 0;
        }
    }

    @media (max-width: 1440px) {
        .footer {
            gap: 20px;
            padding: 72px 90px;
        }

        .footer-logo {
            grid-column: span 3;
        }
    }

    @media (max-width: 1300px) {
        .footer {
            grid-template-columns: repeat(2, 1fr);
            padding: 60px 72px;
            gap: 40px;
        }

        .footer-logo {
            grid-column: span 2;
            display: grid;
            grid-template-columns: auto 1fr auto;
            grid-template-areas:
                "logo . . . "
                "legal legal legal social";
            align-items: center;
            width: 100%;
        }

        .footer-logo>img {
            grid-area: logo;
        }

        .legal {
            grid-area: legal;
            flex-direction: row;
            justify-content: flex-start;
            margin-top: 15px;
        }

        .social-icons {
            grid-area: social;
            justify-self: end;
        }
    }

    @media (max-width: 600px) {
        .footer {
            padding: 60px 32px;
        }

        .main-footer-header {
            display: none;
        }

        .footer-column {
            display: none;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: start;
        }

        .legal {
            margin-top: 32px;
            flex-direction: column;
            align-items: start;
            gap: 0;
        }

        .stats-numbers {
            flex-direction: column;
            gap: 64px;
        }

        .stats-hook {
            font-size: 32px;
        }

        .file:nth-child(2) {
            background: var(--brand-gradient-signup);
        }

        .file:nth-child(2) h2 {
            background-image: unset;
            color: white;
            background-clip: unset;
        }

        .file:nth-child(2) h3 {
            color: white;
        }

        .file:nth-child(2) p {
            color: white
        }

        .file:nth-child(2)::before {
            content: "";
            position: absolute;
            top: -25px;
            right: 0px;
            width: 97px;
            height: 26px;
            border-top-right-radius: 25px;
            border-top-left-radius: 25px;
            background: #AC2377;
            z-index: -1;
        }

        .step-item {
            border-bottom: 1px solid #333;
        }

        .step-button .create-btn {
            display: none;
        }

        .mobile-boxes {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }

        .mobile-boxes .video-container {
            width: 100%;
            height: 250px;
            border-radius: 25px;
            border: 4px solid #AC2377;
        }

        .mobile-boxes .video-container video {
            width: 100%;
            height: 100%;
            border-radius: 25px;
            object-fit: cover;
        }

        .mobile-boxes .create-btn {
            width: auto;
        }

        .step-header h3 {
            line-height: normal;
        }
    }