.top-companies-hiring-now {
    text-align: center;
}
.top-companies-hiring-now h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 30px;
}
.company-logos-container {
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    background-color: #fdfdfd;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
.company-logos-container::before,
.company-logos-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* so clicks pass through */
}

.company-logos-container::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.company-logos-container::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}
.company-logos {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    /* overflow: hidden; */
}
.company-logo {
    width: 150px;
    background-color: #ffffff;
    border-radius: 30px;
    margin-right: 1rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1.5px 28.5px 0 #00000012;
}
.company-logo img {
    width: 40px !important ;
    height: 40px !important;
    object-fit: contain;
}
.company-logos-container:hover .company-logos {
    animation-play-state: paused;
}
.scroll-left {
    animation: scrollLoop 40s linear infinite;
}
.scroll-right {
    animation: scrollLoop2 40s linear infinite;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scrollLoop2 {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
@media (max-width: 475px) {
    .company-logos-container::before,
    .company-logos-container::after {
        content: "";
        position: absolute;
        top: 0;
        width: 5%;
        height: 100%;
        z-index: 2;
        pointer-events: none; /* so clicks pass through */
    }
    .top-companies-hiring-now h1 {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #333;
        margin-bottom: 30px;
    }
    .company-logos-container::before {
        left: 0;
        background: linear-gradient(to right, white 0%, transparent 100%);
    }

    .company-logos-container::after {
        right: 0;
        background: linear-gradient(to left, white 0%, transparent 100%);
    }
}

.resume-score-section {
    font-family: "Arial", sans-serif;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}
.resume-score-section h1 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 800;
    span {
        color: var(--primary-500);
    }
}
.resume-score-section p.subtitle {
    color: #3498db;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}
.benefits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin: 25px 0;
    .benefits-image {
        width: 40%;
        img {
            width: 100%;
        }
    }
}
.benefits-text {
    ul {
        padding: 0;
    }
    h3 {
        font-size: 1.1rem;
        font-weight: 800;
        margin: 1.5rem 0 0.5rem 0;
    }
}
.benefits li {
    list-style-type: none;
    padding: 10px 0;
    color: #555e68;
    font-size: 16px;
    font-weight: 570;
}
.benefits li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}
.cta-button {
    background: var(--primary-500);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}
.cta-button:hover {
    background: rgb(89, 89, 245);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}
@media (max-width: 1052px) {
    .benefits {
        flex-direction: column;
        align-items: center;
    }
    .benefits-image {
        width: 100%;
        margin-bottom: 20px;
    }
    .benefits-text {
        width: 100%;
        text-align: center;
    }
}

/* Standard Styling start */
.rg-page-container {
    width: 100%;
}
.rg-container {
    width: 100%;
    max-width: 1092px;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0px 10px;
}
@media (max-width: 1052px) {
    .rg-container {
        max-width: 696px;
        margin-top: 50px;
    }
}
/* Standard Styling ends */
* {
    font-family: "Poppins", sans-serif !important;
}
#cc--main {
    display: none;
}

header.header {
    position: fixed;
    z-index: 9999;
    width: 100vw;
    background-color: var(--gray-10);
    top: 0;
    left: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 12px 36px;
    .n-header .brand-logo img {
        max-width: 120px !important;
    }
}
header.mobi-header {
    .mobi-bottom-header {
        z-index: 9999;
    }
}
/* RGC: Hero Section */

.hero-section-3 {
    padding: 150px 0px 70px;
    position: relative !important;
    width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
    max-width: 940px;
    .home-section-heading {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 2.5rem !important;
        margin: 0px;
        position: relative;
        z-index: -1 !important;
    }
    .home-section-subheading {
        color: var(--gray-700);
        font-size: 1.2rem;
        font-weight: 600;
        margin: 15px 0px 30px;
        position: relative;
        z-index: -1 !important;
    }
    .jobsearchBox {
        border: none;
        border-radius: 50px;
        padding: 10px 20px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 12px 36px;
        position: relative;
        z-index: 10 !important;
        input {
            font-size: 0.8rem !important;
        }
        #searchInput {
            margin: 0px;
        }
        button {
            border-radius: 50px;
        }
        .fromGroup {
            font-size: 1rem !important; /* Uniform font size */
            color: var(--gray-900) !important; /* Consistent text color */
            font-family: Inter, sans-serif !important;
            border-right: 2px solid var(--gray-50) !important;
        }
        .fromGroup:nth-of-type(3) {
            margin: 0px !important;
            width: 150px !important;
            border: none !important;
        }
    }
}

.hero-section-3::after {
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.hero-section-3 .jobsearchBox input,
.hero-section-3 .jobsearchBox select {
    font-size: 1rem !important; /* Uniform font size */
    color: var(--gray-900) !important; /* Consistent text color */
    font-family: Inter, sans-serif !important;
    font-weight: 600;
}

span.select2-container--default .select2-selection--single {
    border: none !important;
}

span.select2-selection.select2-selection--single {
    outline: none;
}

/* RGC: test practice div banner section */

.test-practice-section {
    width: 100vw;
}
.test-practice-div-container {
    background: #373b44; /* fallback for old browsers */
    background: linear-gradient(90deg, #0a2647 0%, #108a7c 100%);

    border-radius: 20px;
    padding: 0px 15px;
    position: relative;
    width: 100%;
    max-width: 940px;
    margin-left: 50%;
    margin-bottom: 100px;
    transform: translateX(-50%);

    .test-practice-div {
        display: grid;
        grid-template-columns: 0.7fr 0.3fr;

        .pratice-content-box {
            padding: 30px;
            color: white;
            font-weight: 700;
            h3 {
                font-weight: 600;
            }

            .ai-text-practice-box {
                font-size: 1rem;
                font-weight: 500;
            }

            button {
                border-radius: 20px;
            }
        }

        .test-practice-img-container {
            text-align: center;
            display: flex;
            align-items: center;
            img {
                height: 230px;
            }
        }
    }
}

.top-categories-cardss {
    background: #ffff;
}
.top-categories-cardss:hover {
    background: #40c4ff;
    color: #fff;
}

/* RGC: Top Latest Jobs */

.top-latest-jobs-section-container {
    width: 100%;
    height: fit-content;
    max-width: 1296px;
    margin: 0px auto;
    margin-top: 5rem !important;
    margin-bottom: 100px;
    .top-latest-jobs-section-heading {
        h4 {
            text-align: center;
            font-weight: 700;
        }
    }
    .top-latest-jobs-section-slider-container {
        margin: 40px 0px;
        padding: 5px 0px;
    }
    .top-latest-jobs-card {
        border: 1px solid var(--gray-200);
        border-radius: 20px;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        height: auto;
        transition: all 0.2s ease-out;
        .top-latest-jobs-card-container {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            gap: 15px;

            .top-latest-job-card-btn-container {
                width: 100%;
                text-align: center;
                .btn {
                    border-radius: 30px;
                    background-color: var(--primary-50);
                    color: var(--primary-500);
                    padding: 10px 15px;
                }
            }
        }

        .top-latest-jobs-card-job-description {
            text-align: left;
            width: 100%;

            .top-latest-jobs-card-job-title {
                white-space: nowrap; /* Prevents text from wrapping to next line */
                overflow: hidden; /* Hides overflowing text */
                text-overflow: ellipsis; /* Adds "..." at the end */
                display: block; /* Ensure it respects block layout */
                width: 80%; /* Make sure it has a fixed width */
                color: var(--gray-900);
                font-size: 16px;
                font-weight: 600;
            }
            .top-latest-jobs-card-job-type {
                font-size: 13px;
                font-weight: 600;
                color: var(--gray-400);
            }
            .top-latest-jobs-card-job-salary {
                font-size: 14px;
                font-weight: 600;
                color: var(--gray-600);
            }
        }
        .top-latest-jobs-card-company {
            display: flex;
            align-items: center;
            margin-top: 10px;
            .top-latest-jobs-card-company-logo-container {
                width: 20%;
                margin-right: 10px;
                img {
                    width: 100%;
                    object-fit: contain;
                }
            }
            .top-latest-jobs-card-company-details-container {
                text-align: left;
                width: 80%;

                .top-latest-jobs-card-company-name {
                    font-size: 14px;
                    font-weight: 600;
                    width: 100%;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: block;
                }
                .top-latest-jobs-card-company-location {
                    color: var(--gray-600);
                    font-size: 0.8rem;
                    font-weight: 600;
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    span {
                        width: 90%;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: block;
                    }
                }
            }
        }
    }
    .top-latest-jobs-card:hover {
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    .top-latest-jobs-section-btn {
        margin-top: 20px;
        display: flex;
        justify-content: space-around;

        a {
            button {
                border-radius: 20px;
            }
        }
    }
}
.top-latest-jobs-card:hover {
    box-shadow: none;
    transform: scale(1.01);
}

/* RGC: Top Categories Section */

.top-categories-section {
    margin-bottom: 100px;
}
.top-categories-section-container {
    width: 100%;
    max-width: 1296px;
    margin-left: 50%;
    transform: translateX(-50%);
    border: 0.4px solid var(--primary-500);
    border-radius: 40px;
    padding: 40px;
    background: #d6ccf1; /* fallback for old browsers */
    background: -webkit-linear-gradient(
        to left,
        #7c8ee4,
        #a9adea,
        #d6ccf1,
        #f3f1fb,
        #ffffff
    ); /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to right, #FFFFFF, #FFEFBA); W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(
        to left,
        #0a2647,
        #1e577f,
        #328dae,
        #8ad1cc,
        #e8f1ff
    );
    .top-categories-container {
        width: 40%;
        min-height: 120%;
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border-radius: 40px;
        border: 1px solid var(--gray-200);
        padding: 40px 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        .top-category-card {
            border: 1px solid var(--gray-200);
            padding: 10px;
            border-radius: 20px;
            height: 80px;
            .top-category-card-description {
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-around;
            }
            h4 {
                font-size: 0.9rem;
                font-weight: 700;
                color: var(--primary-500);
                margin: 0px;
                letter-spacing: 0.5px;
                text-transform: capitalize;
            }
            p {
                color: var(--gray-400);
                font-size: 0.7rem;
                font-weight: 600;
                margin: 0px;
            }
        }
    }
    .top-categories-section-description {
        width: 40%;
        h2 {
            font-size: 1.6rem;
            font-weight: 700;
        }
        h4 {
            font-size: 0.9rem;
            color: var(--gray-600);
            font-weight: 600;
        }
        .top-categories-section-description-img-container {
            img {
                height: 200px;
            }
        }
    }
}

/* RGC: Create your profile */

.create-profile-section {
    .create-profile-section-container {
        width: 100%;
        max-width: 1296px;
        margin-left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        .create-profile-section-description {
            width: 50%;
            padding: 10px;
            h2 {
                font-weight: 600;
            }
            p {
                color: var(--gray-500);
                font-weight: 600;
            }
            a {
                border-radius: 30px;
                text-align: center;
                margin-left: 50%;
                transform: translateX(-50%);
            }
        }
        .create-profile-img-container {
            width: 30%;
        }
    }
}

/* RGC: Working Section */

/* RGC: Top featured jobs section */

/* RGC: Better Job match banner section */

.better-job-banner-section {
    .better-job-banner {
        background: var(--gray-900);
        width: 100%;
        max-width: 940px;
        border-radius: 20px;
        margin: 0px auto;
        position: relative;
        min-height: 250px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    img {
        position: absolute;
        z-index: 100;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
    img.ring1 {
        width: 650px;
    }
    img.ring2 {
        width: 850px;
    }
    img.ring1.animate {
        animation:
            spin 2s linear infinite,
            scaleDown 2s linear 1;
    }
    img.ring2.animate {
        animation:
            spin 2s linear infinite,
            scaleDown 2s linear 1;
    }
    .banner-content {
        text-align: center;
        color: var(--gray-10);
        padding: 0px;
        z-index: 800;
        p {
            margin: 0px;
            font-weight: 500;
        }
        h2 {
            color: var(--gray-10);
            font-weight: 600;
            margin: 10px 0px;
        }
        a {
            button {
                background: #f05537;
                border: none;
                color: var(--gray-10);
                font-weight: 700;
                font-size: 1.25rem;
                border-radius: 20px;
                padding: 5px 15px;
                margin-top: 15px;
            }
        }
    }
}
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) scale(0.6) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.6) rotate(360deg);
    }
}
@keyframes scaleDown {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(0.6);
    }
}

@keyframes spin-mobi {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
/* RGC: Top companies Section */

.top-companies-section {
    margin-top: 100px;
}
.top-companies-card {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    .top-companies-card-img-container {
        width: 60px;
        height: 60px;
        margin-bottom: 5px;
        img {
            object-fit: contain;
        }
    }
    .top-companies-card-company-details {
        h4 {
            font-size: 1rem;
            font-weight: 700;
        }
        p {
            color: var(--gray-600);
            font-weight: 600;
            font-size: 0.8rem;
            i {
                transform: translateY(2px);
            }
        }
    }
    .top-companies-card-company-tags-container {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        span {
            background-color: var(--gray-50);
            color: var(--gray-400);
            font-size: 0.65rem;
            font-weight: 600;
            padding: 3px 5px;
            border-radius: 20px;
        }
    }
    .top-companies-card-btn {
        border: none;
        background-color: var(--primary-50);
        border-radius: 20px;
        color: var(--primary-500);
        padding: 5px 10px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-top: 5px;
    }
}

/* RGC: Featured Contest Section */
.featured-contest-section {
    margin-bottom: 100px;
}
.featured-contest-section-container {
    width: 100%;
    max-width: 1296px;
    margin-left: 50%;
    transform: translateX(-50%);
    border: 0.4px solid #ffefba;
    border-radius: 40px;
    padding: 40px;
    padding-left: 60%;
    background: #ffefba; /* fallback for old browsers */
    background: -webkit-linear-gradient(
        to left,
        #ffffff,
        #ffefba
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
        to left,
        #ffffff,
        #ffefba
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    .featured-contest-container {
        width: 60%;
        min-height: 120%;
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border-radius: 40px;
        border: 1px solid var(--gray-200);
        padding: 40px 40px;
        .contestSwiper {
            transform: translateY(5%);
        }

        .contest-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
            height: 100% !important;
            text-align: left;
        }

        .contest-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.1),
                rgba(255, 255, 255, 0.05)
            );
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

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

        .contest-card:hover::before {
            transform: translateY(0);
        }

        .status-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            z-index: 1;
        }

        .status-upcoming {
            background: linear-gradient(135deg, #ff6b6b, #ffe66d);
            color: #1a1c2e;
        }

        .status-active {
            background: linear-gradient(135deg, #00f2fe, #4facfe);
            color: #1a1c2e;
        }

        .status-ended {
            background: linear-gradient(135deg, #8e8e8e, #bdbdbd);
            color: #1a1c2e;
        }

        .contest-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--gray-900);
            padding-right: 100px;
        }

        .contest-description {
            color: var(--gray-500);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .date-info {
            display: flex;
            gap: 1.5rem;
            margin: 1.5rem 0;
            font-size: 0.875rem;
        }

        .date-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-500);
        }
        .countdown {
            color: var(--gray-500);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .action-button {
            width: 100%;
            padding: 1rem;
            border-radius: 15px;
            border: none;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            margin-top: 5px;
        }

        .play-button {
            background: linear-gradient(135deg, #00f2fe, #4facfe);
            color: #1a1c2e;
            font-size: 0.9rem;
        }

        .play-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 242, 254, 0.3);
        }

        .leaderboard-button {
            background: transparent;
            border: 2px solid #00f2fe;
            color: #00f2fe;
            font-size: 0.9rem;
        }
    }
    .featured-contest-section-description {
        width: 100%;
        text-align: right;
        h2 {
            font-size: 1.6rem;
            font-weight: 700;
        }
        h4 {
            font-size: 0.9rem;
            color: var(--gray-600);
            font-weight: 600;
        }
        .featured-contest-section-description-img-container {
            img {
                height: 200px;
            }
        }
    }
}
/* RGC: Swiper CSS */

.swiper {
    width: 100%;
    height: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 1rem 0.2rem !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-right: 25px !important;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 600;
}
.category-slider .slick-slide {
    margin: 0px 8px;
}

.category-slider .slick-dots {
    bottom: -32px;
}

.category-slider .slick-dots li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
}

.category-slider .slick-dots li button {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.category-slider .slick-dots li.slick-active button {
    background: rgba(255, 255, 255, 1);
    width: 12px;
    height: 12px;
}

.category-slider .slick-dots li button::before {
    display: none;
}
/* RGC: Misc CSS */

.select-items {
    width: max-content;
    overflow-y: scroll;
    height: 200px;
}
.select-items::-webkit-scrollbar {
    width: 0;
    display: hidden;
}
.select-items::-webkit-scrollbar-thumb {
    display: hidden;
}
.select-items:active {
    background-color: var(--primary-500);
}

.marginleft {
    margin-left: 10px !important;
}

body:has(.hero-section-2) .n-header--bottom {
    box-shadow: none;
    display: none !important;
}

/* Popup Styling */
.reminder-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    z-index: 9999;
    border-radius: 10px;
    text-align: center;
}

.popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 10px;
    h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--gray-900);
    }
    p {
        font-size: 1rem;
        color: var(--gray-600);
        font-weight: 700;
    }
}

.close-popup {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.popup-buttons {
}

.popup-buttons .btn {
    margin: 0px 5px;
    border-radius: 40px;
}

.working-process {
    .iconbox-content {
        div {
            font-weight: 600;
        }
    }
}

/* RGC: Responsive Styling for index page */

@media (max-width: 767px) {
    .practice-tag-div span {
        font-size: 13px;
    }

    .test-practice-div {
        margin-top: 20px;
    }

    .practice-customize-div {
        margin-top: 35px;
    }

    .pratice-content-box h3 {
        font-size: 22px;
    }
    .swiper-wrapper {
        margin: 0 !important;
    }
    .top-latest-jobs-card {
        margin: 1rem;
    }
}

@media (max-width: 425px) {
    .pratice-content-box h3 {
        font-size: 20px;
    }
}

@media (max-width: 375px) {
    .practice-customize-div {
        display: block;
    }
}

@media (max-width: 475px) {
    .hero-section-3 {
        .home-section-heading {
            font-size: 1.7rem !important;
        }
        .home-section-subheading {
            font-size: 1.4rem !important;
            margin-bottom: 50px !important;
        }
        .jobsearchBox {
            .fromGroup {
                margin: 0px !important;
                border: none !important;
                input {
                    text-align: center;
                    border: none !important;
                    padding: 10px !important;
                }
                #searchInput {
                    padding: 10px !important;
                }
                .icon-badge {
                    display: none !important;
                }
            }
            .fromGroup:nth-of-type(3) {
                width: auto !important;
            }
        }
    }
    .create-profile-section {
        padding: 0px 10px;
        .create-profile-section-container {
            flex-direction: column-reverse;
            .create-profile-section-description {
                width: 100%;
            }
            .create-profile-img-container {
                width: 100%;
            }
        }
    }
    .test-practice-section {
        padding: 0px 10px;
        .test-practice-div-container {
        }
        .test-practice-div {
            display: block;

            .pratice-content-box {
                padding: 0px !important;
                position: relative;
                top: 50%;
                transform: translateY(10%);
            }
        }

        .test-practice-img-container {
            display: none;
        }
    }
    .top-latest-jobs-section {
        padding: 0px 10px;
    }
    .top-latest-jobs-section-heading {
        h4 {
            font-size: 1.8rem !important;
        }
    }
    .top-categories-section {
        overflow: hidden;
        padding: 0px 10px;
        .top-categories-section-container {
            padding: 10px !important;
            border-radius: 20px !important;
            .top-categories-section-description {
                width: 100% !important;
                h2 {
                    font-size: 1rem !important;
                }
                h4 {
                    font-size: 0.9rem !important;
                }
                .top-categories-section-description-img-container {
                    img {
                        height: 150px !important;
                    }
                }
            }
            .top-categories-container {
                border-radius: 20px !important;
            }
        }
    }
    .featured-contest-section {
        padding: 0px 10px;
        .featured-contest-section-container {
            padding: 10px !important;
            border-radius: 20px !important;
            .featured-contest-container {
                transform: translateY(0%);
                border-radius: 20px !important;
                padding: 10px !important;
                overflow: hidden;
                .date-info {
                    gap: 0px !important;
                    justify-content: space-between !important;
                    font-size: 0.65rem !important;
                }
                .countdown {
                    font-size: 0.7rem !important;
                    font-weight: 600;
                }
            }
        }
    }
    .better-job-banner-section {
        padding: 0px 10px;
        img.ring1 {
            width: 850px;
        }
        img.ring2 {
            width: 1050px;
        }
        img.ring1.animate {
            animation: spin-mobi 2s linear infinite;
        }
        img.ring2.animate {
            animation: spin-mobi 2s linear infinite;
        }
    }
    .reminder-popup {
        width: 80%;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);

        .popup-buttons {
            display: flex;
            justify-content: space-evenly;
            align-items: center;

            button {
                font-size: 0.8rem;
            }
        }
    }
}

@media (max-width: 1052px) {
    .create-profile-section-container {
        max-width: 696px !important;
    }
    .test-practice-div-container {
        max-width: 696px;
    }
    .hero-section-3,
    .better-job-banner {
        max-width: 696px !important;
    }

    .jobsearchBox {
        max-width: 696px !important;
    }
    .video-container {
        max-width: 696px !important;
    }
    .top-latest-jobs-section-container {
        max-width: 696px !important;
    }
    .top-categories-section-container {
        max-width: 696px !important;
        display: flex;
        flex-direction: column;

        .top-categories-section-description {
            width: 60% !important;
            margin-bottom: 20px;
        }

        .top-categories-container {
            position: relative !important;
            height: auto !important;
            width: 100% !important;
            min-height: auto !important;
            right: 0px !important;
            top: 0px !important;
            transform: translateY(0%) !important;
            padding: 20px !important;
            gap: 5px !important;
            .top-category-card {
                border-radius: 10px !important;
                h4 {
                    font-size: 0.7rem !important;
                    font-weight: 500 !important;
                }
            }
        }
    }
    .featured-contest-section-container {
        max-width: 696px !important;
        display: flex;
        padding-left: 0px !important;
        padding: 20px !important;
        flex-direction: column-reverse;

        .featured-contest-section-description {
            width: 100% !important;
            margin-bottom: 20px;
        }

        .featured-contest-container {
            position: relative !important;
            height: auto !important;
            width: 100% !important;
            min-height: auto !important;
            left: 0px !important;
            top: 0px !important;
            transform: translateY(0%) !important;
            padding: 20px !important;
            gap: 5px !important;
            .featured-contest-card {
                border-radius: 10px !important;

                .date-info {
                    font-size: 0.65rem;
                }
            }
        }
    }
}
