
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline:0;
  box-shadow: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    'Helvetica Neue', sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  min-height: 100vh;
}

/* =========================
   2. Typography Defaults
   ========================= */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;

}

a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* takes parent text color */
}

a:hover {
  color: inherit;          /* prevents blue color on hover */
  text-decoration: none;   /* optional: remove underline on hover */
}

/* =========================
   3. Images & Media
   ========================= */

/*img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}*/

/* =========================
   4. Form Elements
   ========================= */

input,
textarea,
select,
button {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* =========================
   5. Lists
   ========================= */

ul,
ol {
  list-style: none;
}

/* =========================
   6. Layout Helpers
   ========================= */

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
}
.main-container {
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}
.section {
  padding: 4rem 0;
}
@media(min-width: 1181px){
   .container{
      width: 100%;
      max-width: 1400px;
      padding: 0 75px;
      margin: 0 auto;
   } 
}
.navbar-brand{
    padding: 0;
    margin: 0;
}
/* =========================
   7. Utility Classes
   ========================= */

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

/* =========================
   8. Buttons (Basic)
   ========================= */

        .hero {
/*            background: linear-gradient(175deg, var(--color-primary) 77%, var(--color-white) 78%);*/
            color: var(--color-white);
            padding: 60px 0px 30px;
            position: relative;
            background: var(--color-primary);
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 333px;
            background: #fff;
            clip-path: polygon(0 55%, 100% 20%, 100% 100%, 0 100%);
        }
        .hero h1 {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero p {
            margin-top: 10px;
            font-size: 16px;
        }

        .search-box {
            margin-top: 16px;
            max-width: 720px;
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 9px 10px;
            display: flex;
            gap: 10px;
            box-shadow: var(--shadow-md);
        }

        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            padding: 6px 14px;
            font-size: 15px;
        }

        .search-box button {
            background: var(--color-primary);
            color: var(--color-white);
            border: none;
            padding: 7px 22px;
            border-radius: var(--radius-md);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .search-box button:hover {
            background: var(--color-primary-dark);
        }

        .qualifications {
            margin-top: 45px;
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .qualification-pill {
            background: var(--color-white);
            color: var(--color-black);
            padding: 10px 0;
            border-radius: 16px;
            font-size: 14px;
            cursor: pointer;
            transition: .25s;
            font-weight: 500;
            width: 112px;
            text-align: center;
            box-shadow: 0px 4px 60px 0px #00000040;

        }
        .category-wrapper {
            padding: 45px 0 0;
        }
        .qualification-pill:hover {
            transform: translateY(-2px);
            color: #000;
            box-shadow: var(--shadow-md);
        }


        .maincategory-grid {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }


        .category-card {
            width: 150px;
            height: 120px;
/*            background: linear-gradient(90deg, var(--color-primary-light) 0%, rgba(255, 255, 255, 1) 50%, var(--color-primary-light) 100%);*/
            border-radius: 18px;
/*            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);*/
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            position: relative;
            cursor: pointer;
            background: linear-gradient(261.32deg, #AAD4FF 17.87%, #FFFFFF 57.08%, #8AC3FF 93.38%);
            transition: .3s ease;
            box-shadow: 0px 5.23px 9.5px 0px #00000033;
            border: 1px solid #fff;
        }

        .category-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 30px rgba(0, 0, 0, .25);
        }

        .category-card img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            z-index: 1;
        }
        .category-card.ssc-pt img, .category-card.nurse-pt img{
            width: 72px;
            height: 70px;
        }
        .category-card span {
            font-size: 16px;
            font-weight: 600;
            color: #000;
            z-index: 1;
        }


        /* .hero::after{
                            content:"";
                            position:absolute;
                            bottom:-1px;
                            left:0;
                            width:100%;
                            height:80px;
                            background:#fff;
                            border-top-left-radius:80% 100%;
                            border-top-right-radius:80% 100%;
                        } */

        @media(max-width:767px) {
            .hero {
                padding: 22px 0px 10px 0px;
            }

            .hero h1 {
                font-size: 20px
            }

            .hero p {
                margin-top: 10px;
                font-size: 12px;
            }

            .search-box {
                margin: 0px;
                max-width: 720px;
                background: var(--color-white);
                border-radius: 10px;
                padding: 6px;
                display: flex;
                gap: 0px;
                box-shadow: var(--shadow-md);
                height: 40px;
            }

            .search-box button {
                background: var(--color-primary);
                color: var(--color-white);
                border: none;
                padding: 2px 10px;
                border-radius: 5px;
                cursor: pointer;
                position: relative;
                overflow: hidden;
                font-size: 12px;
            }

            .qualifications {
                justify-content: center;
                margin-top: 18px;
                gap: 8px;
            }

            .qualification-pill {
                background: var(--color-white);
                color: var(--color-black);
                padding: 6px 0;
                border-radius: 9px;
                font-size: 12px;
                box-shadow: var(--shadow-md);
                cursor: pointer;
                /*width: auto;
                flex-basis: 106px;*/
                width: auto;
                flex-basis: 23%;
                transition: .25s;
            }
            
            .search-box input {
                flex: 1;
                border: none;
                outline: none;
                padding: 8px 8px;
                font-size: 12px;
            }

            .category-wrapper {
                padding: 0;
                margin: 18px 0 0;
            }
            .hero::after{
                height: 343px;
            }
            .maincategory-grid {
                /*display: grid;
                grid-template-columns: repeat(4, 1fr);*/
                display: flex;
                gap: 13px;
            }

            .category-card img {
                width: 38px;
                height: 38px;
                object-fit: contain;
                z-index: 1;
            }
            .category-card.ssc-pt img, .category-card.nurse-pt img {
                width: 45px;
                height: 42px;
            }
            main {
                overflow-x: hidden;
            }
            .category-card span {
                font-size: 11px;
                font-weight: 600;
                color: #000;
                z-index: 1;
            }

            .category-card {
/*                width: 75px;*/
                flex-basis: 22%;
                height: 65px;
/*                background: linear-gradient(90deg, var(--color-primary-light) 0%, rgba(255, 255, 255, 1) 50%, var(--color-primary-light) 100%);*/
                border-radius: 10px;
/*                box-shadow: 0 8px 20px rgba(0, 0, 0, .15);*/
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 1px;
                position: relative;
                cursor: pointer;
                background: linear-gradient(241.3deg, #E9F3FF 29.96%, #FFFFFF 70.04%);
                box-shadow: 0px 2.66px 4.83px 0px #00000033;
                transition: .3s ease;
            }

        }


        .state-section {
            padding: 10px 0px 20px;
            text-align: center;
        }
        .state-container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0;
        }
        .state-title {
            font-size: 18px;
            font-weight: 600;
        }

        .state-list {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            justify-content: center;
        }

        .state-pill {
            padding: 8px 12px;
            border-radius: 10px;
            border: 1px solid var(--color-primary);
            background: var(--color-primary);
            color: #fff;
            box-shadow: 0px 2px 2.8px 0px #00000033;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: .3s;
        }

        .state-pill:hover {
            background: #2b7cff;
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
        }

        .other-btn {
            margin-top: 14px;
            background: #2b7cff;
            color: #fff;
            border: none;
            padding: 9px 16px;
            border-radius: 999px;
            font-size: 13px;
            cursor: pointer;
        }

        .state-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .45);
            display: none;
            align-items: flex-end;
            justify-content: center;
            z-index: 1090;
        }

        .state-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            padding-bottom: 14px;
        }

        .state-divider::before,
        .state-divider::after {
           content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--color-primary), transparent);
        }

        .state-modal {
            background: #fff;
            border-radius: 14px;
            padding: 20px;
            max-width: 900px;
            width: 90%;
        }

        .state-modal-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
        }
        .state-modal-grid .state-pill{
            border-color: transparent;
        }
        .moblie {
            display: flex;
        }

        .desktop {
            display: none;
        }
        @media(max-width:411px){
            .qualification-pill.extra-pill {
                flex-basis: 27%;
            }
        }
        @media(min-width:768px) {
            .other-btn {
                display: none;
            }

            .desktop {
                display: flex;
            }

            .moblie {
                display: none;
            }

            .state-overlay {
                display: none !important;
            }

            .state-modal {
                display: none;
            }
        }

        .header-wrap {
            padding: 20px 0 40px;
            text-align: center;
        }

        .header-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
        }

        .header-divider::before,
        .header-divider::after {
            /*content: "";
            flex: 1;
            height: 1px;
            background: #cfe0ff;*/
            content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--color-primary), transparent);
        }

        .logo-box {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .footer-brand .logo {
          display: flex;
          align-items: center;
          gap: 14px;
        }

        .footer-brand .logo-icon {
          width: 70px;
          height: 70px;
          background: var(--color-primary);
          color: #fff;
          font-weight: 700;
          font-size: 26px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 18px;
        }

        .footer-brand .logo-text {
          font-size: 32px;
          font-weight: 700;
          color: var(--color-primary);
        }
        .tagline {
            margin-top: 10px;
            font-size: 15px;
            color: #000;
        }

        .social-btns {
            margin-top: 26px;
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .social-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 35px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
            transition: .25s;
        }
        .social-btn i, .social-btn-ex i{
            font-size: 30px;
        }
        .social-btn:hover, .social-btn-ex:hover {
            transform: translateY(-3px);
            color: #fff;
            box-shadow: 0 14px 28px rgba(0, 0, 0, .25);
        }

        .whatsapp {
            background: #5fd068
        }

        .telegram {
            background: #0ea5e9
        }

        .social-btn img {
            width: 22px;
            height: 22px;
        }

        .category_section {
            background: var(--color-primary-light);
            padding: 60px 0;
        }

        .category-ui {
            background: #dff0ff;
            padding: 40px 0px;
            font-family: Inter, sans-serif;
        }

        .category-ui h2 {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .category-ui h2 span {
            color: var(--color-primary);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 16px;
        }

        .cat-card {
            background: #fff;
            border-radius: 10px;
            padding: 18px 12px 14px;
            text-align: center;
            text-decoration: none;
            color: var(--color-primary-dark);
            border-bottom: 4px solid var(--color-primary-dark);
            transition: .25s ease;
        }

        .cat-card:hover {
            transform: translateY(-4px);
        }

        .cat-card .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
        }

        .cat-card .icon svg {
            width: 36px;
            height: 36px;
        }

        .cat-card .title {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #000;
        }
        .cat-card:hover .cat-card .title {
            color: var(--color-primary);
        }
        .cat-card small {
            font-size: 11px;
            color: #6b7280;
        }

        .cat-card.wide {
            grid-column: span 2;
        }

        @media(max-width:1200px) {
            .category-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        @media(max-width:900px) {
            .category-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media(max-width:600px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .cat-card.wide {
                grid-column: span 1;
            }
        }

        .notice-section {
            padding: 30px 0px 10px;
            background: var(--color-white);
            font-family: var(--font-primary);
        }

        .notice-card {
            background: var(--color-primary-dark);
            color: #fff;
            padding: 18px;
            border-radius: var(--radius-md);
            text-align: center;
            font-size: 16px;
            font-weight: 700;
            line-height: 20px;
            text-decoration: none;
/*            display: block;*/
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
        }

        .notice-card:hover {
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
        }

        .notice-card strong {
            display: block;
            margin-top: 6px;
            font-weight: 600;
        }

        .notice-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .swiper-slide {
            height: auto;
        }

        .notice-nav {
            display: flex;
            justify-content: center;
            margin-top: 14px;
        }

        .notice-progress {
            width: 140px;
            height: 4px;
            background: #dcdcdc;
            border-radius: 4px;
            overflow: hidden;
        }

        .notice-progress-active {
            display: block;
            width: 0%;
            height: 100%;
            background: var(--color-primary);
            transition: width .3s ease;
        }

        .notice-card {
            min-height: 100px;
        }

        @media (min-width: 992px) {
            .notice-swiper {
                overflow: visible;
            }

            .notice-swiper .swiper-wrapper {
                display: grid !important;
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
                padding: 5px 0 15px;
                transform: none !important;
                width: auto !important;
            }
            .notice-swiper .swiper-slide {
                width: auto !important;
                flex: none !important;
                display: contents !important;
            }
            .notice-grid {
                display: contents !important;
            }
            .notice-nav {
                display: none;
            }
        }
/*card styling*/
.home-info-section {
    padding: 30px 0 40px;
}

.home-info-card {
    background: #fff;
    border-radius: 20px 20px 12px 12px;;
    overflow: hidden;
    box-shadow: 4px 4px 11.4px 0px #00000040;
}
.home-info-section .row>*{
    padding: 0 10px;
}
.home-info-section .row{
    margin: 0 -10px;
}
.home-info-card h3 {
    margin: 0;
    padding: 20px 14px 14px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.home-info-result h3 { background: var(--color-accent-pink); }
.home-info-admit h3 { background: var(--color-primary-dark); }
.home-info-jobs h3  { background: var(--color-accent-red); }

.home-info-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-info-card ul li {
    padding: 2px 14px;
    font-weight: 600;
    min-height: 58px;
    display: flex;
    align-items: center;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

.home-info-view {
    display: block;
    text-align: center;
    padding: 12px 7px 20px;
    font-weight: 700;
/*    background: #f3f3f3;*/
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
}

.home-info-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}

.home-info-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #0086FF;
    color: #fff;
    cursor: pointer;
}

.home-info-progress {
    width: 120px;
    height: 6px;
    background: #ddefff;
    border-radius: 999px;
    overflow: hidden;
}

.home-info-progress-active {
    display: block;
    width: 0%;
    height: 100%;
    background: #0086FF;
    transition: width .3s ease;
}

@media (min-width: 992px) {
    .home-info-swiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        transform: none !important;
    }

    .home-info-nav {
        display: none;
    }
}

.premium-jobs-section {
    padding: 40px 0;
    background: var(--color-gray-light);
    font-family: var(--font-primary);
}

.premium-jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.premium-jobs-header h2 {
    font-size: 28px;
    font-weight: var(--font-bold);
    color: var(--color-black);
}

.premium-jobs-header h2 span {
    color: var(--color-primary);
}

.premium-jobs-viewall {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-semibold);
}

.premium-jobs-swiper {
    overflow: hidden;
    padding-bottom: 0px;
}

.premium-jobs-swiper .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.premium-jobs-swiper .swiper-slide {
    flex-shrink: 0 !important;
    height: auto;
    padding: 20px 0 35px;
}

@media (min-width: 992px) {
    .premium-jobs-swiper .swiper-slide {
        width: calc((100% - 40px) / 3) !important;
    }
}

.premium-job-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 16px;
    border: 1px solid #fff;
    height: 100%;
    transition: all 0.3s;
}
.premium-job-card:hover, .premium-job-card:focus{
     border: 1px solid var(--color-primary);
    box-shadow: var(--shadow-md);
}
.job-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-logo {
    height: 36px;
}

.job-share {
    font-size: 20px;
    color: var(--color-black);
    opacity: .5;
    text-decoration: none;
}

.job-badge {
    display: inline-block;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: var(--font-medium);
    margin: 12px 0;
}

.premium-job-card h4 {
    font-size: 16px;
    font-weight: var(--font-semibold);
    color: var(--color-black);
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-black);
    opacity: .7;
    margin-bottom: 6px;
}

.job-tags span {
    display: inline-block;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-black);
    opacity: .6;
    margin-top: 12px;
}

.premium-jobs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 0px;
}

.premium-jobs-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 18px;
    box-shadow: 0px 4px 4px 0px #00000040;
    cursor: pointer;
}

.premium-jobs-progress {
    width: 340px;
    height: 11px;
    background: var(--color-primary-light);
    border-radius: 22px;
    overflow: hidden;
}

.premium-jobs-progress-active {
    width: 0%;
    display: block;
    height: 100%;
    background: var(--color-primary);
    transition: width .3s ease;
}
/*card styling ends*/

/* =========================
   9. Responsive Defaults
   ========================= */

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }
}
.logo-box {
    width: 170px;
}
.logo-box img{
    width: 100%;
    height: auto;
}
.navbar{
	box-shadow: 0px 6px 12.8px 0px #0000004D;
    padding: 6px 0;
}
.spl-btn {
    width: 42px;
    transition: all 0.3s;
}
.spl-btn:hover{
    transform: translateY(-3px);
}
.navbar-nav .nav-link{
    color: #000 !important;
}
.navbar-expand-lg .navbar-nav .nav-link{
	padding-right: 5px !important;
    padding-left: 5px !important;
    font-size: 19px;
    font-weight: 600;
    color: #000;
     position: relative;
    font-family: 'Inter', sans-serif;
}
.navbar-nav.gap-3{
	gap: 0.5rem !important;
}
/* underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 10px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* hover */
.nav-link:hover::after {
  width: 17px;
}

/* active */
.nav-link.active::after {
  width: 17px;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
    width: 600px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 40px;
    display: none;
    z-index: 999;
    top: 100%;
    left: 0;
    margin-top: 4px;
    box-shadow: 5px 5px 34.7px 0px #0000004A;
}
.mega-menu.blog-menu{
    position: absolute;
    width: 159px;
    background: #fff;
    border-radius: 20px;
    padding: 17px 15px;
    display: none;
    z-index: 999;
    top: 100%;
    left: 0;
    margin-top: 4px;
    box-shadow: 5px 5px 34.7px 0px #0000004A;
}
.mega-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.mega-column h6 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.mega-column a {
  display: block;
  color: #222;
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
    font-size: 15px;
  transition: 0.3s;
}

.mega-column a:hover {
/*  color: var(--color-primary);*/
  transform: translateX(3px);
}
.jobs-icon, .blogIcon {
  font-size: 12px;      
  margin-left: 4px;
  transition: 0.3s ease;
}

.rotate-icon {
  transform: rotate(180deg);
}
.site-footer {
  background: #f5f5f5;
  color: #111;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #eee;
}

/*.site-footer .container{
	padding: 70px 1rem !important;
}*/
.footer-text {
  font-size: 14px;
  color: #000;
  line-height: 1.7;
  font-weight: 500;
  max-width: 320px;
}

.footer-title {
  font-size: 20px;
  font-weight: 700 !important;
  color: #000 !important;
  margin-bottom: 12px !important;
  font-family: 'Inter', sans-serif !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  font-family: 'Inter', sans-serif !important;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.social-icons {
    display: flex;
    margin-top: 15px;
}

.social-icons a {
  margin-right: 12px;
  width: 35px;
  transition: all 0.3s;
}
.social-icons a:hover {
  transform: translateY(-2px) scale(1.04);
}
.app-buttons img {
  	width: 145px;
	display: block;
	margin: 0 auto 10px;
}
.last-column{
	text-align: center;
}

.footer-bottom {
  background: #eee !important;
  font-size: 13px;
  color: #555 !important;
}
.powered-by {
/*  color: #0086ff;*/
  font-weight: 700;
  text-decoration: none;
}
.footer-brand{
	width: 180px;
}
.footer-brand img{
	width: 100%;
	height: auto;
}
.powered-by:hover {
  text-decoration: underline;
}

.about-title {
    font-size: 70px;
    font-weight: 700;
    padding-top: 40px;
}

.about-title span {
  color: var(--color-primary-dark);
}

.about-text {
  color: #71717b;
  font-size: 16px;
  line-height: 1.7;
}
.text-primary{
    color: var(--color-primary) !important;
}

/* Cards */
.info-card {
  border-radius: 40px;
  padding: 22px;
  height: 100%;
}

.info-card.dark {
  background:  var(--color-primary-dark);
  color: #fff;
}
.info-card h4{
 display: flex;
    align-items: center;
    gap: 9px;
}
.info-card h4 .icon-circle{
  position: static;
  transform: none;
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: none;
}
.info-card.light {
  background: #eaf2ff;
  color: #0b5ed7;
}

.info-card h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.info-card .fw-semibold{
  line-height: 1;
}
.info-card h4 {
  font-size: 32px;
  font-weight: 700;
}
.info-card h2{
  font-size: 48px;
  font-weight: 700;
}

.info-card small {
  font-size: 12px;
  line-height: 1.6;
  display: block;
}
/* Mission Section */
.mission-title {
  font-weight: 600;
  font-size: 24px;
}
.mission-box{
  border-left: 3px solid #0d6efd;
  padding-left: 12px;
}
.mission-text {
  font-size: 13px;
  color: #000;
  margin-top: 8px;
}
.ssc-pill.prem {
    font-size: 20px;
    padding: 4px 32px;
}
.prem span{
    color: var(--color-primary);
}
.mission-img {
/*  max-width: 220px;*/
}

/* Why Choose Cards */
.choose-card {
  background: #fff;
  border-radius: 50px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-6px);
}
.choose-head{
  display: flex;
  gap: 20px;
}
.choose-card h6 {
  font-weight: 600;
  margin-top: 15px;
}

.choose-card p {
  font-size: 14px;
  color: #71717b;
  margin-bottom: 0;
}

/* Icon */
.choose-card .icon-circle {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: static;
  transform: none;
  box-shadow: none;
}

.choose-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.choose-card h6 {
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/*faq styling*/
.heading-box{
  background: var(--color-primary);
  padding: 25px 0;
  text-align: center;
}
.heading-title{
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}
 .steps-wrapper {
  width: auto;
  margin: 50px auto;
  position: relative;
}

/* STEP ROW */
.step-row {
  position: relative;
  display: flex;
  align-items: center;
  margin: 40px 0;
}

/* STEP LABEL */
.step-label {
  width: 90px;
  text-align: center;
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.step-label strong {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* STEP BOX */
.step-box {
  background: var(--color-primary-dark);
  color: #fff;
  border-radius: 60px;
  padding: 10px 90px 10px 30px;
  position: relative;
  width: 380px;
  right: 0;
  margin-left: 25px;
}

.icon-circle2 {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    width: 62px;
    height: 62px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
/* ICON CIRCLE */
.icon-circle {
  position: absolute;
  left: 7px;
  top: 47%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  font-size: 23px;
 box-shadow: 0px 4px 7.4px 0px #00000040 inset;
}

/* TEXT */
.text h4 {
  font-size: 16px;
  margin: 0 0 2px;
  font-weight: 600;
}

.text p {
  font-size: 13px;
  margin: 0;
  opacity: .95;
}

/* CONNECTOR LINE */
.connector {
  position: absolute;
  width: 234px;
  height: 128px;
  border: 2px dotted #bfc8d6;
  z-index: 9;
}

/* RIGHT ALIGN */
.step-row.right {
  justify-content: flex-start;
}

.step-row.right .step-label {
  order: 2;
  margin-left: 20px;
  /* margin-left: auto; */
}

.step-row.right .connector {
  left: 190px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 76px 76px 0px;
}

/* LEFT ALIGN */
.step-row.left {
  justify-content: flex-end;
}

.step-row.left .step-label {
  order: 0;
  margin-right: 20px;
  position: absolute;
  right: 400px;
}

.step-row.left .step-box {
  padding-left: 30px;
  padding-right: 90px;
  margin-right: 25px;
}

 .step-row.left .icon-circle2  {
  left: auto;
  right: 15px;
}
.step-row.left .icon-circle{
  left: auto;
  right: 6px;
}
.step-row.left .connector {
    right: 190px;
    border-right: none;
    border-bottom: none;
    border-radius: 76px 0px 0px 76px;
}
#faqAccordion{
  padding: 55px 0;
}
.accordion-button {
    background-color: #ffffff;
    color: #333;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 20px solid var(--color-primary);
}
.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color:  #333;
}
.accordion-item{
  border: none;
  box-shadow: 4px 8px 34.5px 0px #00000040;
  margin-bottom: 15px;
  border-radius: 23px;
  overflow: hidden;
}
.accordion-item:first-of-type {
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 23px;
    border-bottom-left-radius: 23px;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-body {
    background-color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
    color: #fff;
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.faq-icon {
    margin-right: 10px;
    color: #edbe00;
    display: none;
}

/*faq styling ends*/

/*testimonial*/
.reviews-section {
  overflow: hidden;
}

.quote-icon {
  font-size: 80px;
  color: #0d6efd;
  line-height: 1;
}

.slider-wrapper {
  position: relative;
}

.slider-track::-webkit-scrollbar {
  display: none;
}
.slider-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  will-change: transform;
}

.quote-icn {
  color: var(--color-primary);
    font-size: 60px;
    line-height: 1;
}
#testimonialCarousel .carousel-inner{
  padding: 30px 19px 50px;
}
.progress-wrapper {
  width: 200px;
  height: 6px;
  background: #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #0d6efd;
  border-radius: 10px;
  transition: width 0.4s ease;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.review-header h6 {
  margin: 0;
  font-size: 14px;
}

.review-header small {
  color: #777;
}

.rating {
  margin-left: auto;
  background: #fff3cd;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
}

.review-card p {
  font-size: 14px;
  margin-top: 12px;
  color: #333;
}




.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.slider-controls button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #0d6efd;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(13,110,253,.4);
}

.progress-bar {
  width: 150px;
  height: 6px;
  background: #ddd;
  border-radius: 10px;
  position: relative;
}

.progress-bar::after {
  content: '';
  width: 40%;
  height: 100%;
  background: #0d6efd;
  border-radius: 10px;
  position: absolute;
  left: 0;
}


.testimonial-section {
}

.section-title {
  font-size: 42px;
  font-weight: 600;
}

.section-text {
  color: #6c757d;
  margin-bottom: 25px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
}

.testimonial-card .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.testimonial-card h5 {
  margin-top: 20px;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 14px;
  color: #6c757d;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
}

.carousel-indicators .active {
  background-color: #0d6efd;
}

.carousel-item {
  transition: transform 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ctrl-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctrl-arrow.prev {
  background: #5b5b5b;
  color: #fff;
}

.ctrl-arrow.next {
  background: #0d6efd;
  color: #fff;
}

.ctrl-progress {
  width: 160px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.ctrl-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: #0d6efd;
  border-radius: 10px;
  transition: width 0.6s ease;
}
.contact-cards {
  padding: 60px 0;
}
.content-left {
    max-width: 54%;
}
.diff-clor {
    color: #fad004;
}
.spl-clor {
    color: var(--color-primary);
}
.heading-contact {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* COMMON CARD */
.contact-box {
  border-radius: 40px;
  padding: 40px;
  position: relative;
  min-height: 260px;
  overflow: hidden;
  display: flex;
}

/* TEXT AREA */
.contact-content {
  max-width: 60%;
}

.contact-box h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-box p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* IMAGES */
.contact-box-img {
  position: absolute;
  right: 10px;
  bottom: 0px;
  max-width: 260px;
  height: auto;
}

/* JOBSEEKER CARD */
.jobseker {
  background: var(--color-primary-dark);
  color: #fff;
}

/* PARTNER CARD */
.partner {
  background: #fad004;
  color: #000;
}
.contact-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE FIX */
@media (max-width: 767px) {
  .contact-cards .contact-box {
    flex-direction: row;
    text-align: center;
    min-height: auto;
    background: #fff;
    color: #000;
    padding: 20px;
    border: 1px solid var(--color-primary);
  }
  .contact-wrapper{
    background: #fff !important;
    color: #000 !important;
    border: 1px solid var(--color-primary);
  }
  .contact-section .social-icons a{
    color: #000 !important;
  }
  .contact-input{
    background-color: #fff !important;
    border: 1px solid #ccc !important;
  }
  .contact-cards {
    padding: 20px 0;
  }
  .contact-cards .row{
    gap: 22px;
  }
  .heading-contact{
    font-size: 24px;
    text-align: center;
  }
  .content-left{
    max-width: 65%;
    text-align: left;
  }
  .contact-box h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .contact-box p {
    font-size: 12px;}

  .contact-content {
    max-width: 100%;
  }

  .contact-box-img {
    position: static;
    margin-top: 20px;
    max-width: 125px;
  }
}
.contact-section {
  padding: 0px 0 40px;
}

.contact-wrapper {
  background: var(--color-primary-dark);
  border-radius: 40px;
  padding: 40px;
  color: #fff;
}

.contact-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
}

.contact-section .form-label {
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-input {
  background: var(--color-primary-light);
  border: none;
  border-radius: 20px;
  padding: 10px 18px;
  font-size: 14px;
}

.contact-input::placeholder {
  color: #2c2c2c;
}

.contact-input:focus {
  box-shadow: none;
  outline: none;
}

.contact-section .textarea {
  height: 90px;
  resize: none;
}

.contact-btn {
  background: #ffd400;
  color: #000;
  border-radius: 25px;
  padding: 10px 35px;
  font-weight: 600;
  width: 100%;
  border: none;
}

.contact-btn:hover {
  background: #ffcc00;
}

/* SOCIAL ICONS */
.contact-section .social-icons {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 25px;
}
.contact-section .social-icons a{
    color: #fff;
}
.contact-section .social-icons span {
  cursor: pointer;
}

/* IMAGE */
.contact-img {
  max-width: 95%;
  height: auto;
  margin-left: auto;
}

/* MOBILE */
@media (max-width: 991px) {
  .contact-wrapper {
    padding: 35px 25px;
  }

  .contact-title {
    font-size: 26px;
  }
}
.partner-wrapper {
  background: var(--color-primary-dark);
  border-radius: 40px;
  padding: 40px;
}
.partner-wrapper h2{
    font-size: 34px;
}
.white-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 25px;
}

.white-card label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #000;
}

.pill-input {
  border-radius: 50px;
  padding: 10px 16px;
  border: 1px solid #ccc;
  background: var(--color-primary-light);
  border-color: #fff;
  font-size: 14px;
}
.white-card.ctt {
    padding: 25px 25px 52px;
}
.partner-wrapper textarea {
  resize: none;
  background: var(--color-primary-light);
  border-color: #fff;
  font-size: 14px;
}
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #1f73d8; /* arrow color */
  transform: translateY(-50%);
  pointer-events: none;
}

/* Remove default arrow */
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 45px;
}

.partner-wrapper .submit-btn {
  background: #ffd400;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  min-width: 400px;
  border: none;
}

.partner-wrapper .submit-btn:hover {
  background: #ffcc00;
}

.main-title {
  font-size: 45px;
  font-weight: 700;
  color: var(--color-primary);
/*  padding-top: 34px;*/
}

.main-title span {
  color: #f5c400;
}

.main-desc {
    color:#000;
    font-weight:700;
    font-size: 17px;
    line-height: 1.7;
  margin-top: 15px;
  margin-bottom:0;
/*  max-width: 520px;*/
}
.loud{
    position: absolute;
    /*top: -31px;
    left: 0;*/
    top: 23px;
    left: 7px;
    width: 100px;
}
.wp-mob{
    position: absolute;
}
.loud img, .wp-mob img{
    width: 100%;
    height: 100%;
}
/* Job Alert Card */
.job-alert-card {
 border-radius: 40px;
    padding: 25px;
    /* background: url(/img/icons/alert-bg.webp); */
    background-color: #c3e5fe;
    /* background-repeat: no-repeat; */
    border: none;
    height: 244px;
    position: relative;
    margin-top: auto;
    /* background-position: bottom; */
/*    margin-top: 52px;*/
}
.alert-text{
    max-width: 68%;
    margin-left: auto;
    padding-top: 2px;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.job-alert-card h5 {
  font-weight: 700;
  font-size: 21px;
}

.job-alert-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.govt-career-section .icon-circle {
  background: #1f73d8;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.govt-career-section  .join-btn {
  margin-bottom: auto;
    position: absolute;
    bottom: 30px;
    width: 56%;
    height: auto;
    left: 33%;
}
.text-update{
    text-align: center;
    max-width: 80%;
    margin: 0 auto 30px;
}
/* Social Cards */
.govt-career-section  .social-card {
  border-radius: 40px;
  padding: 16px 0px 20px 20px;
  color: #fff;
}

.govt-career-section .whatsapp {
/*  background: url(/img/icons/wb-bg-n.webp);*/
  background-repeat: no-repeat;
  border: none;
  background-position: right;
  position: relative;
  background-color: #29dd28;
}

.govt-career-section .telegram {
/*  background: url(/img/icons/tg-bg-n.webp);*/
  background-repeat: no-repeat;
  position: relative;
  border: none;
  background-color: #3aa9f1;
  background-position: right;
}
.wp-mob {
    position: absolute;
    width: 112px;
    bottom: 0px;
    right: 8px;
    border-bottom-right-radius: 27px;
    overflow: hidden;
}
.govt-career-section .card-content{
    max-width: 68%;
}
.govt-career-section .telegram .follow-btn{
    background: #94d8fd;
}
.telegram .aspirants strong{
    color: var(--color-primary);
}
.card-content h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 2px;
}

.card-content p {
  font-size: 14px;
  margin-bottom: 8px;
  max-width: 380px;
}

/* Tags */
.govt-career-section .tags {
  display: flex;
  gap: 7px;
  margin: 3px 0;
  flex-wrap: wrap;
}

.govt-career-section .tags span {
  background: #000;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 13px;
  display: inline-flex;
}

/* Bottom Row */
.govt-career-section .bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 15px;
}

.govt-career-section  .follow-btn {
  background: #7cff7a;
  border: 2px solid #000;
  border-radius: 40px;
  padding: 6px 30px;
  font-weight: 700;
}

.aspirants {
  width: 70px;
  background: #ffffff;
  border-radius: 18px;
  padding: 6px 0;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.aspirants strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary); 
  line-height: 1;
}
.whatsapp .aspirants strong{
    color: #76e966;
}
.aspirants small {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  line-height: 0;
}

.aspirants .avatars {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.aspirants .avatars img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}

.aspirants .avatars img:first-child {
  margin-left: 0;
}
/* Modal card styling */
.job-modal {
  border-radius: 24px;
  border: none;
  background: var(--color-primary-light);
  padding: 10px;
}

/* Heading */
.job-modal h4 {
  font-weight: 700;
}

/* Paragraph */
.job-modal p {
  font-size: 14px;
  color: #333;
}

/* Inputs */
.job-modal .form-control {
  border-radius: 12px;
  border: 1px solid #cfe9f5;
  padding: 8px 14px;
  font-size: 14px;
}

/* Submit button */
.job-modal .submit-btn {
  background: linear-gradient(90deg, #1e90ff, #0b5ed7);
  border-radius: 30px;
  padding: 10px;
  font-weight: 600;
  color: #fff;
  border: none;
}

/* Join button image fix */
.join-btn {
  background: none;
  border: none;
  padding: 0;
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background-color: #fff;
  border-radius: 50%;
  padding: 6px;
  opacity: 1;
}

.job-modal textarea.form-control {
  resize: none;
}
/* Custom select styling */
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #fff;
  border: 1px solid #cfe9f5;
  border-radius: 12px;
  padding: 10px 40px 10px 14px;
  font-size: 14px;

  /* Custom arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%23666' d='M5.5 7.5l4.5 4.5 4.5-4.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

/* On focus */
.custom-select:focus {
  border-color: #86d1f2;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

/* Option color same as input */
.custom-select option {
  color: #333;
  background-color: #fff;
}

.jobtalk-section {
  background: #fff;
}
.right .box .icard {
    margin: 0;
    padding: 24px 18px;
}
.right .box p{
    font-size: 13px !important;
}
.jobtalk-card {
  position: relative;
  box-shadow: 0 8px 19px #b9b9b94d;
  border-radius: 12px;
}

/* Image stays normal */
.jobtalk-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

/* Floating white content box */
/* White content box */
.jobtalk-card .card-body {
  position: relative;
  background: #fff;
  padding: 18px;
/*  margin-top: -48px;*/
  z-index: 2;
  min-height: 189px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.jobtalk-card .card-body h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.jobtalk-card .card-body p {
  font-size: 14px;
  color: #71717b;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.jobtalk-card .card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #111;
  margin-top: 12px;
}

/* Swiper spacing */
.jobtalkSwiper.swiper {
  padding: 10px 12px 20px;
  margin: 0 -12px;
}

/* Arrows */
.jobtalk-arrow {
  color: #0d6efd;
}

.jobtalkSwiper .swiper-button-prev {
  left: 0;
}

.jobtalkSwiper .swiper-button-next {
  right: 0;
}
.jobtalkSwiper .swiper-wrapper{
   height: auto;
}
/*grad slider*/
.edu-jobs-swiper{
  padding: 20px 15px 35px !important;
    margin: 0 -20px;
}
.edu-jobs-section {
    padding: 40px 0;
}

.edu-jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.edu-jobs-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0086FF;
}

.edu-jobs-viewall {
    background: #0086FF;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.edu-jobs-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.edu-jobs-filters button {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
}

.edu-jobs-filters button.active {
    background: #0086FF;
    color: #fff;
    border-color: #0086FF;
}

.edu-jobs-swiper {
    overflow: hidden;
}

.edu-jobs-swiper .swiper-wrapper {
    display: flex;
}

.edu-jobs-swiper .swiper-slide {
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .edu-jobs-swiper .swiper-slide {
        width: calc((100% - 40px) / 3) !important;
    }
}

.edu-jobs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 0px;
}

.edu-prev,
.edu-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0px 4px 4px 0px #00000040;
    cursor: pointer;
}

.edu-progress {
    width: 340px;
    height: 11px;
    background: var(--color-primary-light);
    border-radius: 22px;
    overflow: hidden;
}

.edu-progress-active {
    display: block;
    width: 0%;
    height: 100%;
    background: #0086FF;
    transition: width .3s ease;
}

.edu-filter-swiper {
    margin-bottom: 8px;
    padding-bottom: 17px;
    padding-top: 8px;
    margin-top: -8px;
}

.edu-filter-swiper .swiper-wrapper {
    display: flex;
}

.edu-filter-swiper .swiper-slide {
    width: auto !important;
}

.edu-filter {
    padding: 8px 0px;
    border-radius: 10px;
    border: 1px solid #CFCFCF;
    background: #fff;
    cursor: pointer;
    font-weight: 700;
    width: 125px;
    white-space: nowrap;
/*    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);*/
    box-shadow: 7px 7px 9.8px 0px #00000040;
}

.edu-filter.active {
    background: #0086FF;
    color: #fff;
    border-color: #0086FF;
}

.edu-filter:hover {
    border-color: #0086FF;
}
.edu-jobs-viewall:hover, .premium-jobs-viewall:hover{
    color: #fff;
}
.date-sub {
    font-size: 14px;
    font-weight: 400;
}
.jobtalk-section .fw-bold
{
    text-transform:uppercase;
}
.fw-bold
{
    font-weight:900!important
}
.text-muted
{
    color:#000!important;
}
.jobtalk-card .card-body p
{
    color:#000!important;
}
/*basic job card*/
.job-card.basic-card {
/*  gap: 16px;*/
  background: #fff;
  padding: 16px 20px 7px;
  border-radius: 14px;
  width: 100%;
/*  border: 1px solid var(--color-primary);*/
/*  box-shadow: 0 4px 16px rgba(0,0,0,0.06);*/
/*  box-shadow: var(--shadow-md);*/
   /*box-shadow: 7px 7px 8.3px 0px #00000040;*/
   /*box-shadow:8px 7px 10.3px 0px #00000040;*/
   box-shadow:4px 4px 10.3px 0px #00000040;
   height: 100%;
    display: flex;
    flex-direction: column;
  position: relative;
  transition: all 0.3s;
}
.job-card.basic-card:hover, .job-card.basic-card:focus{
    /*border: 1px solid var(--color-primary);
    box-shadow: var(--shadow-md);*/
    transform: translateY(-4px);
}
.basic-card .job-left{
    width: 75px;
    height: 75px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-right: 12px;
    border-radius: 5px;
    flex-shrink: 0;
}
a.exam-card:hover, a.exam-card:focus, a.exam-card.active{
color:#fff;
}
/* LEFT */
.basic-card .job-logo {
  border-radius: 7px;
  object-fit: contain;
  height: auto;
  max-width: 100%;
}
.basic-card .job-top{
  display: flex;
}
.basic-card .job-right {
  flex: 1;
}
.basic-card .job-main {
    padding-top: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.basic-card .job-sal{
    flex-shrink: 40%;
}
.basic-card .job-role {
  border-radius: 4px;
  white-space: nowrap;
    font-weight: 400;
    overflow: hidden;
    max-width: 210px;
    font-size: 12px;
    line-height: 18px;
    text-overflow: ellipsis;
    display: inline-block;
    color: #000;
    text-transform: capitalize;
    background-color: #f3f3f3;
    padding: 4px 8px;
    margin-bottom: 2px;
}
.basic-card .job-exp, .basic-card .job-sal{
    flex: 1;
}
.basic-card .job-title {
  color: #454545;
/*    font-family: 'Poppins', sans-serif;*/
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 0;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.basic-card .job-info {
  display: flex;
  gap: 14px;
  font-size: 14px;
    color: #71717b;
    font-weight: 400;
  margin-bottom: 0px;
}
.basic-card .job-info .icon{}
.basic-card .job-info i {
  margin-right: 2px;
  color: #71717b;
    opacity: 0.8;
}
.basic-card .job-tag-box {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.basic-card .job-tags {
  display: flex;
  gap: 1px;
  margin: 10px 0 5px;
max-height: 29px;
overflow: hidden;
}

.basic-card .job-tags span {
  border-radius: 5px;
color: #71717b;
font-size: 12px;
line-height: 16px;
padding: 4px;
margin-right: 5px;
margin-bottom: 5px;
display: inline-block;
text-transform: capitalize;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
background-color: #f3f3f3;
}

.basic-card .job-footer {
  font-size: 12px;
  color: #6b7280;
  display: flex;
justify-content: space-between;
flex-wrap: nowrap;
padding: 7px 0 0;
opacity: 0.8;
margin-top: auto;
border-top: 1px solid #e1e1e1;
}
.basic-card .job-loc, .basic-card .job-qual{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.basic-card .job-vest {
  position: relative;
}

.basic-card .menu-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #6b7280;
  background: #f3f3f3;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    gap: 4px;
    border-radius: 5px;
    transform: rotate(90deg);
}

/* DROPDOWN */
.basic-card .dropdown {
  position: absolute;
  right: 20px;
    bottom: -48px;
  background: #fff;
  border-radius: 10px;
  width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  z-index: 20;
}

.basic-card .dropdown div {
  padding: 10px 14px;
  cursor: pointer;
  padding: 2px 10px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 300;
    border-bottom: 1px solid #f2f2f2;
}

.basic-card .dropdown div:hover {
  background: #f3f4f6;
}

/*basic job card ends */

/*type of job*/
.top-header-wrap {
            padding: 16px 0 12px
        }

        .ssc-pill {
            padding: 4px 32px;
            border-radius: 14px;
            border: 3px solid var(--color-primary);
            font-weight: 700;
            background: #fff;
            font-size: 22px;
            text-transform: capitalize;
            box-shadow: 0px 2px 2.8px 0px #00000033;
            text-align: center
        }

        .edu-toggle-box {
            display: flex;
            align-items: center;
            gap: 14px;
            background: #fff;
            padding: 12px 22px;
            border-radius: 14px;
/*            box-shadow: var(--shadow-sm);*/
            box-shadow: 2.83px 3.78px 15.12px 0px #00000040;
        }

        .edu-text {
            font-size: 15px;
            font-weight: 500;
            color: #444
        }

        .edu-text.active {
            font-weight: 600
        }

        .switch {
            position: relative;
            width: 52px;
            height: 26px
        }

        .switch input {
            display: none
        }

        .slider {
            position: absolute;
            inset: 0;
            background: #dbe9ff;
            border-radius: 999px
        }

        .slider:before {
            content: "";
            width: 22px;
            height: 22px;
            background: var(--color-primary);
            border-radius: 50%;
            position: absolute;
            top: 2px;
            left: 2px;
            transition: .3s
        }

        .switch input:checked+.slider:before {
            transform: translateX(26px)
        }

        .search-box-header {
          display: flex;
          align-items: center;
          gap: 8px;
          padding: 9px 8px 9px 14px;
          border: 1px solid #d1d5db; 
          border-radius: 10px;
          background: #fff;
          box-shadow: 2px 3px 15px 0px #00000040;
        }

        .search-box-header input {
          border: none;
          outline: none;
          width: 100%;
          font-size: 16px;
          color: #333;
        }

        .search-box-header input::placeholder {
          color: #9aa0a6;
        }
        .search-btn {
          background: var(--color-primary-dark);
          color: #fff;
          border: none;
          padding: 4px 18px;
          border-radius: 10px;
          font-size: 14px;
          font-weight: 500;
          transition: 0.3s ease;
        }

        .search-btn:hover {
          background: var(--color-primary);
        }

        .search-icon {
          font-size: 18px;
          color: #9aa0a6;
          border-right: 1px solid #d1d5db;
          padding-right: 9px;
        }
        .top-header-wrap .social-btn, .social-btn-ex {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            padding: 9px 0;
            border-radius: 999px;
            font-weight: 600;
            color: #fff;
            flex: 1;
            transition: all 0.3s;
            justify-content: center;
            text-decoration: none
        }

        .whatsapp {
            background: #5fd068
        }

        .telegram {
            background: #0ea5e9
        }

        .logo-line-wrap {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 18px
        }

        .logo-line-wrap .line {
            content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--color-primary), transparent);
        }

        .brand-box {
            width: 112px;
        }
        .filter-box {
            background: #fff;
            border-radius: 36px;
            padding: 16px 25px 30px;
/*            box-shadow: var(--shadow-sm)*/
            box-shadow: 2.84px 3.79px 15.17px 0px #00000040;
        }
        .filter-title, .qual-title {
            font-weight: 700;
            margin-top: 9px;
            font-size: 19px;
        }
        .filter-tags.fil-state {
            display: flex;
            gap: 10px 5px;
        }
        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px
        }

        .reset-all-btn {
            padding: 6px 14px;
            border-radius: 999px;
            border: 1.5px solid var(--color-primary);
            background: #fff;
            color: #000;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0px 2px 2.8px 0px #00000033;
            cursor: pointer;
        }

        .reset-all-btn:hover {
            background: var(--color-primary);
            color: #fff;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px 6px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
        }

        .filter-pill {
            padding: 8px 2px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 700;
            background: #fff;
            border: 1px solid #e5e7eb;
            color: #111;
            box-shadow: 0px 1.9px 2.66px 0px #00000033;
            text-decoration: none
        }
        .filter-pill:nth-child(6n+1) {
            background: #E1F5FF;
            color: #1E73DA;
            border-color: #4F82EE;
        }

        .filter-pill:nth-child(6n+2) {
            background: #FCF2F2;
            color:  #AA2E26;
            border-color: #F6CCCB;
        }

        .filter-pill:nth-child(6n+3) {
            background: #F2FDF5;
            color: #3C7E44;
            border-color: #C8F5D3;
        }

        .filter-pill:nth-child(6n+4) {
            background: #FEF7EE;
            color: #B34A22;
            border-color: #F8D8B1;
        }

        .filter-pill:nth-child(6n+5) {
            background: #F9F5FE;
            color: #7429C6;
            border-color: #4F82EE;
        }

        .filter-pill:nth-child(6n+6) {
            background: #e6f7ff;
            color: #0277bd;
            border-color: #a8d8f5;
        }

        /*  Hover Effect */
        .filter-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }


        .filter-pill:hover {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary)
        }
        /*  Active State */
        .filter-pill.active {
            background: var(--color-primary);
            color: #fff;
        }
        .mobile-filter-bar {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
        }

        .filter-open-btn {
            padding: 8px 12px;
            border-radius: 10px;
            border: 1px solid #d1d5db;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
        }

        .mobile-grad-toggle {
            display: flex;
            gap: 6px;
            background: #fff;
            box-shadow: 0px 2.96px 11.78px 0px #00000040;
            padding: 3px;
            border-radius: 999px;
        }

        .grad-pill {
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            border: none;
            background: transparent;
            color: #111;
        }

        .grad-pill.active {
            background: var(--color-primary);
            color: #fff;
        }

        .filter-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .45);
            display: none;
            z-index: 9999;
        }

        .filter-modal-content {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: #fff;
            border-radius: 22px 22px 0 0;
            padding: 16px;
            max-height: 57vh;
            display: flex;
            flex-direction: column;
        }

        .filter-modal-header {
            display: flex;
            position: relative;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 12px;
        }

        .close-btn {
            position: absolute;
            right: 0;
            top: 0;
            background: none;
            border: none;
            font-size: 18px;
        }

        .filter-search {
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #ccc;
            border-radius: 10px;
            padding: 10px 12px;
            margin-bottom: 12px;
        }

        .filter-search input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 14px;
        }

        .filter-modal-body {
            overflow-y: auto;
            flex: 1;
        }

        /*.filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }*/

        .filter-pill {
            padding: 8px 2px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 700;
            background: #fff;
            border: 1px solid #e5e7eb;
            color: #111;
            text-align: center;
            box-shadow: 0px 1.9px 2.66px 0px #00000033;
            text-decoration: none
        }

        .filter-pill.active {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
        }

        .filter-modal-footer {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 14px;
        }

        .clear-btn {
/*            flex: 1;*/
            padding: 10px;
            border-radius: 12px;
            border: 1px solid var(--color-primary);
            background: #fff;
            font-weight: 600;
        }

        .apply-btn {
/*            flex: 1;*/
            padding: 10px;
            border-radius: 12px;
            background: var(--color-primary);
            color: #fff;
            border: none;
            font-weight: 600;
        }
        .filter-pill.filter-state{
            background: #fff !important;
            color: #333 !important;
            border-color: #d1d5db !important;
            justify-content: center;
            padding: 6px 8px;
            flex-basis: auto;
        }
        .filter-pill.filter-state.active{
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
        }
        .filter-modal-body.specialization-list {
            max-height: 240px;
        }
        #updates-display .result-tag{
            background: var(--color-accent-pink);
            color: #fff;
        }
        #updates-display .admit-tag{
            background: var(--color-primary-dark);
            color: #fff;
        }
        #updates-display .job-tag{
            background: var(--color-accent-red);
            color: #fff;
        }
        /* Remove colors on mobile */
    @media (max-width: 767px) {

        .filter-pill {
            background: #fff !important;
            color: #333 !important;
            border-color: #d1d5db !important;
            justify-content: center;
            /* padding: 10px 12px; */
        }
        #stateContent {
            display: flex;
        }
        .filter-tags {
           gap: 12px 6px;
        }
        
        #filterModalTitle {
            font-size: 20px;
            font-weight: 700;
        }
        .qual-head, .filter-modal-header span{
            font-size: 16px;
           font-weight: 600;
        }
        .filter-pill.active {
            background: var(--color-primary) !important;
            color: #fff !important;
            border-color: var(--color-primary) !important;
        }

        .filter-pill:hover {
            transform: none;
            box-shadow: none;
        }

    }

        @media(max-width:767px) {
            .logo-line-wrap {
                display: none;
            }
            .filter-modal-body .filter-tags{
              grid-template-columns: repeat(3, 1fr);
            }
            #modalContent{
                grid-template-columns: repeat(3, 1fr);
                display: grid;
                gap: 12px 6px;
            }
            .header-wrap .social-btn{
               font-size: 14px;
               gap: 6px;
               padding: 8px 10px;
/*               flex: 48%;*/
            }
            .header-wrap .social-btns{
                gap: 9px;
                flex-direction: row;
            }
            .header-wrap .social-btn i {
                font-size: 26px;
            }
        }

        @media (max-width: 767px) {
            .edu-toggle-box {
                display: none !important;
            }
        }

/*type of job ends*/

.edu-jobs-section.postgrad-jobs {
    background: var(--color-gray-light);
    font-family: var(--font-primary);
}
.web-sub, .mob-sub{
  background: linear-gradient(90deg, rgba(216, 152, 39, 0.84) 0%, #D86C24 100%);
    color: #fff;
    padding: 8px 15px;
    border: 1px solid transparent;
    font-size: 14px;
    border-radius: 5px;
    text-transform: capitalize;
}
.mob-sub{
    box-shadow: 2px 2px 9px 0px #00000040;
    padding: 4px 15px;
}

/*admit*/
.result-view{
    background: #F9F9F9;
    font-family: Poppins, sans-serif;
}
 .updates-content {
  flex-grow: 1;
  padding: 20px 0;
}
.choose-tab {
    display: flex;
    gap: 10px;
}
.choose {
    color: var(--color-primary);
    padding: 6px 20px;
    background: #fff;
    border: 1px;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    cursor: pointer;
    background-color: #FFF;
    font-size: 15px;
    transition: 0.3s all;
}
.choose a{
    color: inherit;
    transition: 0.3s all;
}
.choose:hover, .choose.active{
    color: #fff;
    background: var(--color-primary);
}
.choose:hover a, .choose.active a{
    color: #fff;
}
.updates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.updates-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
}

.updates-count {
    background-color: #EBF2FF;
    color: #0A66FF;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
}
.admit-view {
    padding: 20px 0;
}
.sort-by {
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    width: 43%;
    justify-content: end;
    margin-left: auto
}

.sort-dropdown {
    margin-left: 8px;
    padding: 5px 25px 5px 10px;
    border: 1px solid #EEE;
    border-radius: 6px;
    cursor: pointer;
    background-color: #FFF;
    font-size: 15px;
    appearance: none; /* Hide default arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23666666' d='M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
    height: 39px;
}

/* --- Update Card Styles --- */
.update-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #FFF;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.3s all;
    border: 1px solid #FFF; /* Initial border */
}

.update-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid #0A66FF;
}

.initials-box {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: #EBF2FF;
    color: #0A66FF;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.card-content {
    flex-grow: 1;
}
.sort-text{
    display: inline-block;
    width: auto;
    white-space: nowrap;
}
.update-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.update-org {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.result-tag {
    background-color: #e6ffec; /* Light green background */
    color: #34C759;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
    text-transform: uppercase;
}

.update-card .card-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.update-date {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 90px; /* To align dates */
    text-align: right;
}

.view-details-box {
    background-color: var(--color-primary);
    color: #FFF;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap; /* Prevents wrapping */
}
.updates-content {
    flex-grow: 1;
    padding: 15px 0;
}
.betr-card {
    display: contents;
}
.arrow-icon {
    font-size: 18px;
    color: #666;
    margin-left: 10px;
}

/* Overriding colors for specific initials to match the image */
.initials-box.io { background-color: #eef2ff; color: #4F46E5; }
.initials-box.i { background-color: #EBF2FF; color: var(--primary-blue); }
.initials-box.ub { background-color: #FFF5EE; color: #FF7043; }
.initials-box.pa { background-color: #F0FFF4; color: #38A169; }
/*admit ends*/

/*different detail*/
.different-detail.wrapper{
  display:flex;
  /*max-width:1400px;
  margin:20px auto;*/
  gap:20px;
/*  padding: 0 100px;*/
  font-family:"Poppins",Arial,sans-serif;
}

.different-detail .left{
  width:18%;
  
}
.different-detail .left .basic-links{
  background: #2c3e50;
  color:#ffffff;
  border-radius:8px;
  padding:16px;
}
.different-detail .left h6{
  font-size:13px;
  font-weight:600;
  letter-spacing:.5px;
  border-bottom:1px solid rgba(255,255,255,.15);
  padding-bottom:8px;
  margin:0 0 10px;
  color: #fff;
}

.different-detail .left ul{
  list-style:none;
  padding:0;
  margin:0 0 15px;
}

.different-detail .left li{
  padding:9px 6px;
  font-size:14px;
  cursor:pointer;
}

.different-detail .left li:hover{
  background:rgba(255,255,255,.08);
  border-radius:4px;
}

.different-detail .center{
  width:60%;
  border-radius: 10px;
}

.different-detail .right{
  width:22%; 
}

.different-detail .card{
  background:#ffffff;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(0,0,0,.04);
  overflow:hidden;
  margin-bottom:20px;
}

.different-detail .header-blue{
  background: var(--color-primary) !important;
  color:#fff;
  text-align:center;
  padding:22px;
}
.different-detail .header-blue h6{
  font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    text-transform: capitalize;
    color: #fff;
    margin: 25px 0;
}
.wwo h6{
  color: var(--color-primary-dark);
  font-size: 17px;  
}
.different-detail .header-blue span{
  background: #f1c40f;
    color: #333;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
}

.different-detail .header-blue h2{
  margin:12px 0;
  font-weight:700;
}
table.fixed-table, .fixed-post {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;   /* Important */
}


/* Make 3rd column wider */
.fixed-table th:nth-child(3),
.fixed-table td:nth-child(3) {
  width: 58%;
}
/* Make 2nd column wider */
.fixed-table th:nth-child(2),
.fixed-table td:nth-child(2) {
  width: 14%;
  padding: 10px 3px;
}
.fixed-post th:nth-child(2),
.fixed-post td:nth-child(2) {
    width: 25%;
}
.different-detail .heading-detail h6{
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  text-transform: capitalize;
  color: #142238;
}
.different-detail .header-blue button{
  padding: 7px 15px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin: 5px;
    font-size: 14px;
}

.different-detail .whatsapp{
  background:#25d366;
  color:#ffffff;
}

.different-detail .telegram{
  background:#0088cc;
  color:#ffffff;
}

.different-detail .info{
  display:flex;
  gap:15px;
  padding:20px 15px 10px;
}

.different-detail .info-box{
  flex:1;
}
.different-detail table ul, .different-detail table ol{
    padding-left: 1rem;
}
.different-detail table ul{
    list-style: disc;
}
.different-detail table ol{
    list-style: decimal;
}
.different-detail .info-box .icard {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  min-height: 180px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* Heading */
.info-box .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2f6fed;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Paragraphs */
.info-box .icard p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}
.info-box .icard strong{
    font-weight: 600;
}
thead.beter-cl th{
    background-color: var(--color-primary) !important;
    color: #fff !important;
}
.degree-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 8px;
}

.degree-btn {
 padding: 8px;
    border: none;
    border-radius: 10px;
    background: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 2px 3px 7px 0px #00000040;
    transition: all 0.3s ease;
    font-size: 13px;
/*    border: 0.43px solid #CFCFCF;*/
}

.degree-btn:hover {
  transform: translateY(-4px);
}

.degree-btn.active {
  background: var(--color-primary);
  color: white;
  box-shadow: 2px 3px 7px 0px #00000040;
}

/* Highlight last date */
.info-box .icard .last-date {
  color: #e53935;
  font-weight: 500;
}
.different-detail .section .icard{
    box-shadow: none;
}
.different-detail hr{
    color: #bbb;
}
/* Payment note */
.info-box .payment-note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}


.different-detail .section{
  padding:10px 0;
/*  border-top:1px solid #e5e7eb;*/
}

.different-detail table{
  width:100%;
  border-collapse:collapse;
}

.different-detail th,.different-detail td{
  border:1px solid #e5e7eb;
  padding:10px;
  font-size:14px;
}

.different-detail th{
  background:#fff6db;
  font-weight:600;
}

.different-detail thead th{
  background: #f4f4f5;
    color: #71717b;
}

.different-detail .link-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  font-size: 14px;
  border-bottom:1px dashed #d1d5db;
}
.different-detail .link-row i{
    color: var(--color-primary-dark);
    font-size: 18px;
}
.different-detail .link-row:last-child{
  border-bottom: none;
}
.different-detail .link-row button{
  padding:6px 10px;
  border:none;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
  font-size: 13px;
  width: 15%;
}

.different-detail .download{
  background: var(--color-primary-dark);
  color:#ffffff;
}

.different-detail .apply{
  background:#22c55e;
  color:#ffffff;
}

.different-detail .site{
  background: #959595;
    color: #ffff;
}

.different-detail .box{
  /*background:#ffffff;
  border-radius:10px;
  padding:15px;
  box-shadow:0 6px 16px rgba(0,0,0,.05);*/
  margin-bottom:20px;
}
.different-detail .info-box p, .different-detail .box p{
  font-size: 15px;
}
.different-detail .box h6{
  margin-top:0;
  font-size: 16px;
font-weight: 600;
margin: 0 0 14px;
text-transform: capitalize;
color: #142238;
}

.different-detail .box input,
.different-detail .box select{
  width:100%;
  padding:8px;
  border:1px solid #e5e7eb;
  border-radius:6px;
  margin-bottom:10px;
  font-family:inherit;
}

.different-detail .box button{
width: 100%;
background: #00a5ec;
color: #ffffff;
font-weight: 600;
border: none;
padding: 8px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
}

.different-detail .tag{
  font-size: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #ffffff !important;
    display: block;
    width: auto;
    text-align: center;
    line-height: 1;
}

.different-detail .admit{
  background:#f59e0b;
}

.different-detail .result{
  background:#22c55e;
}

.different-detail .job{
  background:#3b82f6;
}
.serch-pg{
    margin: 40px 0 20px;
}
.more-jobs-display, .more-updates-display, .more-blogs-display{
    padding: 20px 0;
}
.no-result-box{
    max-width:700px;
    margin:auto;
    text-align: center;
    padding: 0 0 40px;
}

.no-result-box .logo img{
    width:60px;
    margin-bottom:20px;
}
.no-result-box .logo{
    margin: auto;
    width: 10%;
}
.no-result-box h2{
    font-size:36px;
    font-weight:500;
    color:#555;
    margin: 30px 0;
    line-height:1.4;
}

.no-result-box h2 span{
    color:var(--color-primary);
    font-weight:600;
}

.no-result-box .desc{
    margin-top:20px;
    color:#7D7D7D;
    font-size:14px;
}

.no-result-box .try-again{
    margin-top:15px;
    color:#000;
    font-weight: 500;
    font-size:14px;
}
.more-updates-display .update-card{
    box-shadow: none;
    border: 1px solid #d1d5db;
}
.simp-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 6px;
}
.load-m {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 7px 50px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}
.load-m:hover{
    background: var(--color-primary-dark);
    transform: translateY(-6px);
}
@media(max-width:1024px){
  .different-detail.wrapper {
    flex-direction: column;
    padding: 0 px;
  }
  .different-detail .left, .different-detail .center, .different-detail .right{
    width:100%;
  }
  .different-detail .left{
    order: 3;
  }
}
.different-detail .icard{
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  margin: 0 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
@media(max-width: 767px){
  .different-detail .info{
    flex-direction: column;
    padding: 20px 10px 10px;;
  }
  .serch-pg {
     margin: 20px 0 0px !important;
  }
  .simp-heading {
    font-size: 18px;
    margin-bottom: 6px;
    padding-left: 6px;
   }
   .load-m {
    padding: 5px 19px;
    margin-top: 5px;
    font-size: 14px;
   }
   .more-jobs-display, .more-updates-display, .more-blogs-display {
    padding: 20px 0 15px;
   }
  .different-detail .info-box .icard {
    min-height: auto;
  }
  .choose {
    font-size: 13px;
    padding: 4px;
    flex: 1;
    text-align: center;
  }
  .updates-content {
    padding: 10px 0;
  }
  .updates-title {
    font-size: 16px;
    margin-bottom: 0;
  }
  .sort-text{
   display: none;
  }
  .search-box-header input{
    font-size: 14px;
  }
  .sort-dropdown {
    margin-left: 4px;
    padding: 3px 20px 3px 7px;
    font-size: 13px;
    background-position: right 3px center;
    background-size: 8px;
    height: 30px;
  }
  .updates-count{
    margin-left: 0px;
  }
  /*.view-details-box{
    display: none;
  }*/
  .result-tag{
    margin-left: 0px;
    display: block;
    width: fit-content;
    font-size: 11px;
    margin-top: 5px;
  }
  .view-details-box{
    padding: 3px 6px;
    margin-left: auto;
  }
}

/*different detail ends*/

/*qualification*/
.qualification-box{
    background:#fff;
    border-radius:23px;
    padding: 16px 25px 30px;
    margin-top:15px;
    box-shadow: 3px 4px 16px 0px #00000040;
}
.qual-title{
    font-weight:700;
    font-size:19px;
    margin-bottom:10px
}
.qualification-box > :nth-child(2).qual-accordion{
    border-top: none;
}
.qual-accordion{
    border-top:1px solid #eee
}
.qual-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:15px;
    font-weight:600;
    padding:10px 0;
    cursor:pointer
}
.qual-body{
    display:none;
    padding-left:5px
}
.qual-item{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    margin-bottom:6px
}
.qual-item input{
    accent-color:var(--color-primary-dark);
}
.arrow{
    font-size:12px;
    transition:.2s;
}
.qual-head.active + .qual-body{
    display:block
}
.qual-head.active .arrow{
    transform:rotate(90deg);
}
/*qualification ends*/


.specialize-tags {
   display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.spl-tag {
    padding: 6px 2px;
    border-radius: 8px;
    border: 1px solid var(--color-primary);
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    flex: 12%;
    box-shadow: 0px 2.12px 2.96px 0px #00000033;
    transition: 0.2s ease;
}

.spl-tag.active {
    background: var(--color-primary);
    color: #fff;
}

.spl-tag:hover {
     background: var(--color-primary);
    color: #fff;
}
.spec-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:3px 0;
  font-size:15px;
}

.more-btn {
    background: var(--color-primary);
    color: #fff;
}

.specialization-wrapper {
    text-align: center;
    margin-top: 15px;
}

.specialization-btn {
    padding: 6px 30px;
    border-radius: 8px;
    border: 1.5px solid var(--color-primary);
    background: #e8f0ff;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    margin: 0 auto;
    box-shadow: 0px 2px 2.8px 0px #00000033;
    transition: 0.2s ease;
}

.specialization-btn:hover {
    background: #2f6fed;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  #jobtalkCarousel .carousel-control-prev,
  #jobtalkCarousel .carousel-control-next, .web-sub {
    display: none;
  }
}


/* Mobile spacing */
@media (max-width: 576px) {
  .job-modal {
    margin: 10px;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .main-title {
    font-size: 24px;
    padding-top: 0;
  }
  .specialize-section {
    width: 100%;
  }
  .mobile-filter-bar{
    justify-content: space-between;
  }
  .mt-sm {
    margin-top: 0 !important;
  }
  .basic-card .job-footer{
    font-size: 11px;
  }
  .ssc-pill, .ssc-pill.prem {
    padding: 6px 32px;
  }
  .main-desc, .jobtalk-section .text-muted{
    font-size: 14px;
  }
  
  .contact-wrapper, .white-card.ctt {
    padding: 25px;
  }
  .contact-title{
    margin-bottom: 10px;
  }
  .partner-wrapper h2{
    font-size: 26px;
    margin-bottom: 10px;
  }
  .govt-career-section .social-card {
    padding: 20px 25px;
    border-radius: 40px;
}
.govt-career-section .whatsapp, .govt-career-section .telegram{
    background-position: top right;
}
.card-content h3 {
    font-size: 24px;
}
.card-content p {
    font-size: 12px;
    margin-bottom: 0px;
    max-width: 120px;
}

.govt-career-section .bottom-row {
    justify-content: space-between;
    margin-right: 0px;
    gap: 7px;
}
.govt-career-section .follow-btn {
    padding: 3px 12px;
    font-size: 13px;
}
.aspirants {
    width: 85px;
    padding: 10px 8px;
}
.govt-career-section .tags{
    display: none;
}
.aspirants strong{
    font-size: 18px;
}
.aspirants small {
    font-size: 12px;
}
.aspirants .avatars{
    margin-top: 1px;
}
.job-alert-card{
    display: none;
}
.subscribe-btn{
    background: var(--color-primary);
    color: #fff;
    padding: 6px 32px;
    border-radius: 20px;
}
.category-ui h2{
    font-size: 22px;
    margin-bottom: 24px
}
.search-box-header button{
    padding: 4px 12px;
    border-radius: 7px;
    font-size: 12px;
 }
 .search-box-header{
    border-radius: 10px;
    padding: 4px 7px 4px 12px;
/*    box-shadow: none; */
    font-size: 14px;
    border: 1px solid #d1d5db;
    margin: 10px 0 ;
    box-shadow: 0px 2.12px 2.96px 0px #00000033;
 }
 .filter-open-btn {
    padding: 2px 5px;
    border: 1px solid var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-basis: 24%;
 }
 .mobile-filter-bar{
    gap: 4px;
 }
 .arrow{
    font-size: 18px;
 }
 .grad-pill {
    padding: 4px 5px;
 }
 .top-header-wrap {
    padding: 11px 0 0;
 }
}
.state-pill.d-spl {
    display: none;
}

@media (max-width:1180px){
	.navbar-toggler{
		border: none;
        padding: 0;
	}
    .ssc-pill{
        font-size: 15px;
    }
	.navbar-toggler-icon{
		filter: brightness(0) saturate(100%) invert(41%) sepia(96%)
          saturate(4861%) hue-rotate(199deg) brightness(100%) contrast(101%) !important;
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        background-image: var(--bs-navbar-toggler-icon-bg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%
	}
	.logo-box{
		width: 120px;
	}
	.navbar-toggler:focus{
		box-shadow: none;
	}
  .steps-wrapper{
    display: none;
  }
  .offcanvas.offcanvas-end{
    width: 250px !important;
  }
   html {
      scroll-behavior: smooth;
    }
    .home-info-section, #info-section, #Result, #Admit-card{
        scroll-margin-top: 60px;
    }
    .mobile--header-btns {
        display: flex;
        gap: 12px;
    }
}
.lang-btn {
    width: 24px;
    margin-top: 9px;
    margin-left: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}
.lang-menu {
    position: absolute;
    background: #fff;
    right: 64px;
    margin-top: -4px;
    box-shadow: 5px 5px 34.7px 0px #0000004A;
    padding: 5px 14px;
    border-radius: 7px;
    top: 100%;
}
.page-breadcrumb{
    color: var(--color-white);
    padding: 40px 0px;
    text-align: center;
    background: var(--color-primary);
    overflow: hidden;
}
.static-page{
    margin: 40px auto;
}
.static-page section h3{
    font-size:20px;
    font-weight: 700;
    margin-bottom:5px;
    margin-top:15px;
}
.static-page .page-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
}

/* Section */

.static-page section{
    margin-bottom:30px;
}

.static-page section h2{
    font-size:25px;
    font-weight: 700;
    margin-bottom:10px;
    margin-top:25px;
}

.static-page section p{
    margin-bottom:12px;
    font-size: 15px;
}
.static-page section strong{
    font-weight: 600;
}
.static-page section a{
    color: var(--color-primary);
    transition: all 0.3s;
}
.static-page section a:hover{
    color: var(--color-primary-dark);
}
.static-page ul{
    padding-left:20px;
    margin-bottom:15px;
    list-style: disc;
}

.static-page li{
    font-size: 15px;
    margin-bottom:6px;
}
.container-fd {
    padding: 0;
}
/* Position wrapper properly */
.jobtalkSwiper {
  position: relative;
}

/* Common Arrow Style */
.jobtalk-arrow {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 55%;               /* Perfect vertical alignment */
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

/* Make arrow icon smaller */
.jobtalk-arrow::after {
  font-size: 14px;        /* Smaller arrow */
  font-weight: bold;
}

/* Hover effect */
.jobtalk-arrow:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

/* Left & Right spacing */
.jobtalkSwiper .swiper-button-prev {
  left: 0px;
}

.jobtalkSwiper .swiper-button-next {
  right: 0px;
}
.qualification-btn {
    padding: 6px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 14px;
    border: 2px solid var(--color-primary);
    background-color: #fff;
    color: #333;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0px 2px 2.8px 0px #00000033;
    transition: all 0.2s ease;
}


/* Arrow style */
.qualification-btn .arrow {
    font-size: 16px;
}

/* Hover */
.qualification-btn:hover {
    transform: scale(0.97);
}
.premium-jobs-viewall, .edu-jobs-viewall{
    transition: all 0.3s;
}
.premium-jobs-viewall:hover, .edu-jobs-viewall:hover{
    transform: translateY(-4px);
}
/* Active click */
.qualification-btn:active {
    background-color: var(--color-primary);
    color: #fff;
}
.premium-jobs-swiper{
    padding: 0 15px;
    margin: 0 -20px;
}
.selected-part {
  display: flex;
  gap: 6px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.edu-toggle-box.not-use {
    filter: blur(3px);
    backdrop-filter: blur(10px);
    cursor: none;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
@media(max-width: 767px){
  .footer-brand {
    width: 122px;
/*    width: auto;*/
  }
  .different-detail th, .different-detail td, .different-detail li{
    font-size: 12px;
  }
  .different-detail b, .different-detail strong{
    font-weight: 600;
  }
  .static-page {
    margin: 0px auto;
  }
  .page-breadcrumb{
    padding: 20px 0;
  }
  .page-breadcrumb h1{
    font-size: 24px;
  }
  .static-page section p {
    margin-bottom: 5px;
    font-size: 13px;
  }
  .static-page ul{
    margin-bottom: 10px;
  }
  .static-page section h2 {
    font-size: 19px;
    margin-bottom: 6px;
    margin-top: 20px;
  }

  .static-page section {
    margin-bottom: 20px;
    }
  .static-page section h3 {
    font-size: 17px;
    margin-bottom: 4px;
    margin-top: 10px;
  }
  .static-page li {
    font-size: 13px;
    margin-bottom: 1px;
  }
  .contact-section{
    padding: 0;
  }
  .filter-modal-header{
    justify-content: center;
  }
  .footer-links{
    list-style: disc;
    padding-left: 18px;
    margin-top: 0px;
  }
  .basic-card .job-tag-box{
    align-items: center;
  }
  .premium-jobs-swiper{
    padding: 0 20px;
    margin: 0 -20px;
  }
  .footer-links li::marker {
    font-size: 12px;
  }
  .apply-btn, .clear-btn {
    padding: 7px 35px;
    box-shadow: 3px 3px 8px 0px #00000040;
  }
  .state-modal{
    background: transparent;
    width: 92%;
    padding: 20px 0;
    margin-bottom: 70px;
  }
  .state-pill {
    padding: 5px 8px;
    font-size: 12px;
    background: #fff;
    color: #000;
    border: 1px solid var(--color-primary);
  }
  .state-modal-grid .state-pill{
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 400;
  }
  .partner-wrapper .submit-btn{
    min-width: auto;
  }
  .accordion-body{
    font-size: 13px;
  }
  .accordion-button{
    padding: 10px 20px;
    font-size: 14px;
  }
  .footer-text{
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .footer-bottom{
    font-size: 12px;
    padding: 12px;
  }
  .social-icons{
    flex-wrap: wrap;
    gap: 5px 0;
    margin-top: 8px;
  }
  .footer-title {
    font-size: 12px;
    margin-bottom: 0;
    text-align: left;
    margin-bottom: 5px;
    }
  .app-buttons img {
    width: 50px;
    flex: 1;
    margin-bottom: 20px;
  }
  .footer-links li {
    margin-bottom: 2px;
  }
  .footer-links a {
    font-size: 14px;
  }
  .social-icons a {
    margin-right: 7px;
    width: 21px;
  }
  .site-footer .container {
    padding: 40px 1rem 20px !important;
  }
  .home-info-card ul li, .home-info-view{
    font-size: 14px;
  }
  .home-info-nav{
    margin-top: 5px;
  }
  .jobtalkSwiper .swiper-button-next, .jobtalkSwiper .swiper-button-prev{
    display: none;
  }
  .jobtalk-card img{
    height: 190px;
  }
  .premium-jobs-header h2, .heading-title{
    font-size: 22px;
  }
  .home-info-btn, .premium-jobs-btn, .edu-prev, .edu-next, .ctrl-arrow {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .heading-box{
    padding: 15px 0;
  }
  #faqAccordion {
    padding: 30px 0 0;
  }
  .premium-jobs-header{
    align-items: baseline;
    margin-bottom: 0;
  }
  .choose-card{
    border-radius: 34px;
    padding: 20px;
  }
  .testimonial-section .text-uppercase.fw-bold, .testimonial-section .quote-icn{
    display: none;
  }
  .premium-jobs-nav{
    margin-top: 0px;
  }
  .premium-jobs-viewall, .edu-jobs-viewall{
    font-size: 12px;
    white-space: nowrap;
    padding: 6px 8px;
    border-radius: 8px;
  }
  .home-info-card{
    margin: 0 12px 19px
  }
  .nav-link{
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    margin-left: 10px;
  }
  .spl-btn {
    width: 42px;
    margin-left: 10px;
  }
  .edu-filter{
    padding: 5px 14px;
    font-size: 12px;
    border-radius: 8px;
  }
  .basic-card .job-left {
    width: 55px;
    height: 55px;
  }
  .basic-card .job-role{
    font-size: 11px;
    margin-bottom: 0px;
    max-width: 195px;
  }
  .basic-card .job-title{
    height: 36px;
  }
   .basic-card .job-title, .about-text, .info-card .fw-semibold{
    font-size: 14px;
   }
   .basic-card .job-info {
        font-size: 13px;
        margin-bottom: 0px;
        flex-direction: column;
        gap: 0;
    }
    .basic-card .job-main {
        padding-top: 8px;
    }
    .edu-jobs-swiper {
        padding: 15px 14px 22px !important;
        margin: 0 -14px;
    }
    .edu-jobs-section, .premium-jobs-section{
        padding: 25px 0;
    }
    .premium-jobs-swiper .swiper-slide{
        padding: 12px 0 13px;
    }
    .about-text{
        margin-bottom: 10px;
    }
    .row.g-3.mt-4 {
       margin-top: 0 !important;
    }
    .info-card h3 {
       font-size: 28px;
    }
    .py-5 {
        padding-top: 1.8rem !important;
        padding-bottom: 1.8rem !important;
    }
    .about-title{
        font-size: 28px;
        padding-top: 0px;
    }
    .info-card h2, .info-card h4{
        font-size: 28px;
    }
    .info-card h4 .icon-circle, .choose-card .icon-circle{
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .navbar .container {
        padding: 0 1.1rem;
    }
    .category-grid{
        gap: 10px 8px;
    }
    .mission-title{
        font-size: 18px;
    }
    #testimonialCarousel .carousel-inner {
       padding: 18px 19px 40px;
    }
    .mission-text{
        margin-bottom: 5px;
    }
    .notice-section{
        padding: 30px 0px 10px;
    }
    .notice-grid{
        gap: 9px;
    }
    .notice-card {
        min-height: 65px;
        padding: 8px;
        font-size: 12px;
        display: flex;
        line-height: 15px;
        font-weight: 500;
        flex-direction: column;
        justify-content: center;
    }
    .notice-card strong{
        margin-top: 4px;
        font-weight: 600;
        font-size: 10px;
    }
    .container-fd{
        padding: 0 0.6rem;
        width: 100%;
        margin: 0 auto;
    }
    .mission-img {
        max-width: 220px;
        margin: auto;
    }
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    .site-footer{
        margin-bottom: 65px;
    }
    .top-header-wrap .social-btn{
        display: none;
    }
    .premium-jobs-progress, .edu-progress{
        width: 100px;
        height: 5px;
    }
    .premium-jobs-header h2, .edu-jobs-header h2 {
        font-size: 19px;
    }
    .edu-filter{
        padding: 5px 0;
        width: 75px;
        box-shadow: 4.18px 4.18px 5.86px 0px #00000040;
    }
    .edu-filter.extra-edu{
        width: 90px;
    }
    .edu-filter-swiper{
        margin-bottom: 0px;
        padding-bottom: 10px;
        padding-top: 8px;
        margin-top: -8px;
    }
    .job-card.basic-card{
        padding: 14px 15px 4px;
    }
    .state-container{
        padding: 0 1px;
    }
    .edu-jobs-nav{
        margin-top: -10px;
    }
    .home-list .home-info-card{
        margin: 0 0px 19px;
        border-radius: 16px 16px 10px 10px;
        box-shadow: 3.39px 3.39px 9.65px 0px #00000040;   
    }
    .home-info-card.same-li{
       border-radius: 10px 10px 6px 6px; 
    }
    .home-list .pe{
        padding-right: 0;
    }
    .home-list .ps .home-info-card{
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .home-list .pe .home-info-card{
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .home-list .pe .home-info-card, .home-list .ps .home-info-card {
        border: 1px solid #ededed;
        box-shadow: none;
    } 
    .home-list .ps{
        padding-left: 0;
    }
    .home-list .home-info-card ul li{
        font-size: 13px;
    }
    .home-list .same-li li{
        min-height: 44px;
        height: 44px;
        padding: 4px 14px;
        margin-bottom: 0;
        display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;  
      overflow: hidden;
    }
    .home-list .home-info-card ul li, .home-list .home-info-view{
        font-size: 12px;
    }
    .home-info-view {
        padding: 12px 2px 20px;;
    }
    .home-info-card ul li{
        min-height: 42px;
    }
    .home-info-section{
        padding: 20px 0;
    }
    .app-buttons{
        display: flex;
        gap: 10px;
    }
    .footer-links li, .footer-links a{
        line-height: 1;
    }
    .footer-links a{
        font-size: 11px;
        font-weight: 400;
    }
    .qualification-btn{
        display: none;
    }
    .jobtalk-arrow{
        display: none;
    }
    .hero .container{
        padding: 0 0.5rem;
    }
    .footer-brand .logo-icon{
        width: 45px;
        height: 41px;
        font-size: 18px;
        border-radius: 10px;
    }
    .footer-brand .logo{
        gap: 5px;
    }
    .footer-brand .logo-text{
        font-size: 21px;
    }
    .update-card{
        flex-direction: row;
        align-items: normal;
        gap: 0 5px;
        padding: 10px 15px;
    }
    .date-sub{
        font-size: 13px;
    }
    .update-title {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
    }
    .update-card .card-footer{
/*        width: 79%;*/
        justify-content: space-between;
        margin-top: 0px;
        margin-left: auto;
        gap: 0;
        flex-direction: column;
    }
    .arrow-icon {
        font-size: 12px;
        margin-left: 1px;
    }
    .betr-card {
        display: flex;
        align-items: self-start;
        justify-content: flex-start;
        width: 100%;
    }
    /*.fixed-table th:nth-child(3), .fixed-table td:nth-child(3) {
        width: 35%;
    }*/
    .different-detail th, .different-detail td, .different-detail .link-row{
        font-size: 12px;
        overflow-wrap: break-word;
        padding: 5px;
    }
    .different-detail td li span, .different-detail .center .card-info h3 span, .different-detail .center .card-info h4 span{
        font-size: 12px !important;
        line-height: 1.4;
    }
    .fixed-post th:nth-child(2), .fixed-post td:nth-child(2) {
        width: 40%;
    }
    .different-detail .link-row button{
        padding: 4px 7px;
        font-size: 11px;
        font-weight: 500;
        width: 26%;
    }
    .different-detail .center .card-info h3, .different-detail .center .card-info h4{
        font-size: 14px;
    }
    .different-detail .icard{
        margin: 0 10px;
    }
    .different-detail .info-box p, .different-detail .box p {
        font-size: 13px;
    }
    .different-detail .header-blue h6 {
/*        color: #000;*/
        font-size: 16px;
        font-weight: 500;
        margin: 10px 0 10px;
    }
    .boox-btn{
        display: flex;
        gap: 10px;
    }
    .different-detail .header-blue{
/*        background-color: #fff !important;*/
    }
    .different-detail .header-blue button{
        padding: 7px 5px;
        font-size: 13px;
        flex: 1;
    }
    .different-detail .header-blue span{
        background: var(--color-primary-dark);
        color: #fff;
    }
}

@media(min-width: 768px) and (max-width:1180px){
    .main-title{
        font-size: 32px;
        padding-top: 10px;
    }
    .main-desc{
        font-size: 14px;
    }
    .widget.widget_tag_cloud:first-child {
    
        max-width: 60%;
        margin: 0 auto 12px;
    }
    .selected-part{
      padding: 0;
    }
    .clear-btn, .apply-btn{
      padding: 10px 22px
    }
    .search-btn{
      padding: 4px 10px;
    }
    .edu-text {
     font-size: 13px;
    }
    .ssc-pill.prem{
        font-size: 15px;
    }
    .ssc-pill{
        padding: 5px 2px;
        font-size: 20px;
    }
    .ssc-pill.prem {
      padding: 5px 2px;
        font-size: 18px;
    }
    .social-btn i {
        font-size: 17px;
    }
    .top-header-wrap .social-btn{
      font-size: 11px;
    }
    .basic-card .job-info{
        font-size: 13px;
    }
    .edu-toggle-box {
        gap: 5px;
        padding: 11px 12px;
    }

    /*.govt-career-section .social-card{
        padding: 22px 0px 22px 30px;
    }*/
    .about-title{
        font-size: 45px;
        padding-top: 0px;
    }
    .alert-text{
        padding-top: 0px;
        text-align: center;
        max-width: 100%;
    }
    
    .govt-career-section .card-content {
        max-width: 65%;
    }
    .job-alert-card{
        /*height: 260px;
        background-color: #bde2fd;*/
/*        margin-top: 69px !important;*/
    }
    .mission-img{
        display: none;
    }
    .contact-box-img{
        max-width: 140px;
    }
    .content-left {
       max-width: 100%;
    }
    .heading-contact{
        font-size: 32px;
        margin-bottom: 25px;
    }
    .nav-link{
        font-size: 16px;
        border-bottom: 1px solid #ddd;
        margin-left: 10px;
    }
    .spl-btn {
        width: 42px;
        margin-left: 10px;
    }
    .last-column {
       text-align: left;
    }
    .app-buttons img{
        margin: 5px 0;
    }
}
/*fixed buttons*/
.fixed-buttons{
    padding-top: 1px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.fixed-buttons .btn-grp{
    display: flex;

}
.fixed-buttons .fx-link{
    flex: 1;
    padding: 8px;
    color: #fff;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    background-color: var(--color-primary);
    box-shadow: 3px 3px 11.6px 0px #00000040;
}


/*mobile footer*/
.mobile-footer {
   position: fixed;
  bottom: 0px;
  left: 0;
  /* transform: translateX(-50%); */
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 8px;
  display: flex;
  gap: 4px;
  justify-content: space-between;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 997;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0px 1.14px 14.82px 0px #00000040;
}

.mobile-footer .mob-tab {
  flex: 1;
  text-align: center;
  padding: 8px 0 ;
  border-radius: 40px;
  color: #9aa0a6;
/*  background: #f2f2f2;*/
  text-decoration: none;
  font-size: 12px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-footer .icon {
  font-size: 22px;
    transition: transform 0.35s ease;
    line-height: 1;
    color: #838383;
}

.mobile-footer .label{
    color: #838383;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0;
}
/* ACTIVE STATE */
.mobile-footer .mob-tab.active {
  background: #0a7cff;
  color: #fff;
}

.mobile-footer .mob-tab.active .icon {
  transform: scale(1.1);
  color: #fff;
}
.mobile-footer .mob-tab.active .label{
    color: #fff;
}
@media(min-width: 500px) and (max-width:767px){
    .hero::after {
        height: 219px;
    }
}
/* Hide on desktop */
@media (min-width: 769px) {
  .mobile-footer {
    display: none;
  }
  .fixed-buttons{
    display: none;
  }
}
/* Mobile Only */
.follow-section {
    padding: 40px 0;
}

.follow-section .container {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Mobile Card */
.follow-section .mobile-card {
    width: 160px;
    height: 270px;
    background: #fff;
    border-radius: 25px;
    border: 4px solid #000;
    position: relative;
    padding: 20px 10px;
}

.follow-section .notch {
    width: 60px;
    height: 12px;
    background: #000;
    border-radius: 20px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.follow-section .mobile-content {
    margin-top: 30px;
    text-align: center;
}

.follow-section .jy-box {
    width: 60px;
    height: 60px;
    background: var(--color-primary-dark);
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    border-radius: 12px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.follow-section .brand-name {
    color:var(--color-primary-dark);
    font-size: 14px;
    margin-bottom: 15px;
}

.follow-section .followers-box {
    background: var(--color-primary-dark);
    color: #fff;
    border-radius: 15px;
    padding: 10px;
}

.follow-section .followers-text strong {
    font-size: 16px;
    display: block;
}

.follow-section .followers-text span {
    font-size: 11px;
}

.follow-section .followers-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

.follow-section .followers-icons img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -6px;
}

.follow-section .whatsapp-mini {
    width: 22px;
    height: 22px;
    background: #25d366;
    border-radius: 50%;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

/* Right Content */
.follow-section .content {
    flex: 1;
}

.follow-section .content h2 {
    color: var(--color-primary-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.follow-section .content p {
    font-size: 11px;
    color: #444;
    margin-bottom: 15px;
}

.follow-section .btn {
/*    display: block;*/
    text-align: center;
    padding: 7px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
    display: inline-block;
    width: 84%;
}

.follow-section .btn.whatsapp {
    background: #25d366;
}

.follow-section .btn.telegram {
    background: #229ED9;
}
@media(min-width: 768px){
    .filter-modal-content{
        max-width: 440px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        /* max-height: max-content; */
        border-radius: 22px;
        min-height: 440px;
    }
    .filter-modal-header{
        font-size: 20px;
    }
}
@media (max-width: 360px){
    .notice-card{
        padding: 8px 6px;
        font-size: 11px;
    }
    .follow-section .btn{
        width: 87%;
    }
    .footer-brand .logo-icon{
        width: 38px;
        height: 36px;
        font-size: 18px;
        border-radius: 10px;
    }
    .different-detail .header-blue button{
        font-size: 12px;
    }
    .basic-card .job-role{
        max-width: 175px;
    }
}
.main-center{
    background-color: #fff;
}
.main-center .heading-detail{
    padding: 0 15px;
}
.different-detail .info-box .icard, .header-blue.icard{
    margin: 0;
}
.main-center .info-box .heading-detail{
    padding: 0;
}


.selected-categ, .selected-state {
  background-color: var(--color-primary);
  color: white;
  padding: 6px 10px 6px 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: default;
    box-shadow: 0px 2px 2.8px 0px #00000033;
  position: relative;
  text-align: left;
}

.selected-part .close-btn {
  font-size: 12px;
  cursor: pointer;
  opacity: 0.9;
  color: #fff;
  position: absolute;
  right: 4px;
  /* bottom: 5px; */
  top: -3px;
}



.selected-part .close-btn:hover {
  opacity: 1;
}
@media (min-width: 1181px) and (max-width: 1300px){
    .maincategory-grid{
        gap: 19px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 17px;
    }
    .category-card {
        width: 130px;
        height: 112px;
    }
    .main-container {
        max-width: 875px;
    }
    .qualifications {
     margin-top: 30px;
    }
    .category-wrapper {
        padding: 30px 0 0;
    }
    .hero::after{
        height: 295px;
    }
    .hero h1 {
        font-size: 38px;
    }
    .search-box button{
        padding: 5px 22px;
    }
    .state-pill {
      padding: 8px;
    }
    .edu-filter{
        font-size: 14px;
        width: 108px;
    }
    .main-title{
        font-size: 42px;
    }
    .social-btn i, .social-btn-ex i {
        font-size: 25px;
    }
    .top-header-wrap .social-btn{
        gap: 2px;
    }
    .different-detail.wrapper{
/*            max-width: 1500px;*/
            gap: 15px;
/*            padding: 0 80px;*/
    }
    .different-detail .info-box p, .different-detail .box p {
        font-size: 14px;
    }
    .info-box .icard .last-date{
        display: flex;
       gap: 1px;
       font-size: 14px;
    }
    .container{
        max-width: 1500px;
        padding: 0 60px;
    }
    .govt-career-section .tags span{
        padding: 2px 6px;
    border-radius: 8px;
    font-size: 12px;
    }
    .aspirants strong{
        font-size: 20px;
    }
    .job-alert-card{
/*        margin-top: 55px;*/
    }
    .govt-career-section .card-content{
        max-width: 66%;
    }
    .ssc-pill, .ssc-pill.prem {
        padding: 5px 32px;
        font-size: 20px;
    }
    .navbar-nav.gap-3 {
        gap: 0.2rem !important;
    }
    .top-header-wrap .social-btn{
      font-size: 14px;
    }
}
@media (min-width:992px) and (max-width: 1180px){
    .navbar-expand-lg .navbar-nav .nav-link{
        border: none;
    }
    .mobile--header-btns .lang-wrapper{ display: none; }
    .navbar-nav.gap-3 {
        gap: 0.2rem !important;
    }
    .filter-modal-content {
        max-width: 400px;
        min-height: 350px;
    }
    .widget.widget_tag_cloud:first-child {
    
        max-width: 100%;
    }
    .social-btn-ex {
      font-size: 13px;
    }
    .govt-career-section .join-btn{
        left: 32%;
    }
    .alert-text{
        max-width: 70%;
        padding-top: 1px;
        text-align: left;
    }
    .filter-box{
      padding: 16px 18px 30px;
    }
    .filter-tags{
      grid-template-columns: repeat(auto-fit, minmax(77px, 1fr));
    }
    .wp-mob{
        right: 8px;
    }
    .main-container {
        max-width: 830px;
    }
    .social-btn i, .social-btn-ex i {
        font-size: 25px;
    }
    .top-header-wrap .social-btn{
      font-size: 14px;
    }
    .qualifications{
        gap: 25px;
    }
    .category-card img {
        width: 50px;
        height: 50px;
    }
    .category-card.ssc-pt img, .category-card.nurse-pt img {
       width: 56px;
        height: 52px;
    }
    .category-card {
        width: 121px;
        height: 100px;
    }
    .state-pill{
        padding: 8px 2px;
    }
    .edu-filter{
        width: 106px;
        font-size: 14px;
    }
    .nav-link{
        margin-left: 0;
    }
    .edu-jobs-swiper {
        padding: 20px 16px 35px !important;
        margin: 0 -16px;
    }
    .steps-wrapper {
        display: block;
    }
    .premium-jobs-swiper {
        padding: 0px 20px;
        margin: 0 -16px;
    }
    body{
        overflow-x: hidden;
    }
    .different-detail.wrapper{
/*            max-width: 1200px;*/
            gap: 15px;
/*            padding: 0 1rem;*/
    }
    .different-detail th, .different-detail td{
        font-size: 13px;
    }
    .different-detail .link-row button {
            padding: 6px 4px;
    }
    .different-detail .info-box p, .different-detail .box p {
        font-size: 13px;
    }
    .info-box .icard .last-date{
        display: flex;
       gap: 1px;
       font-size: 13px;
    }
    
}
@media(min-width: 410px) and (max-width: 767px){
    .follow-section .btn{
        width: 62%;
    }
    .state-pill.d-spl {
        display: block;
    }
    
}
@media(min-width: 500px) and (max-width: 767px){
  .filter-modal-body .filter-tags{
          grid-template-columns: repeat(4, 1fr);
    }
}
.edu-progress-active {
        position: relative;
}
.grad-progress, .post-progress, .premium-progress {
    transition: left 0.3s ease, width 0.3s ease;
}
.premium-jobs-progress-active {
    position: relative;
}
.edu-filter{
    color: #000;
}
@media (max-width:767px){
      .swiper-button-disabled {
        display: none;
      }
      .notice-swiper{
        padding: 5px 0 0;
      }
    .edu-jobs-nav, .premium-jobs-nav{
        gap: 2px;
    }

    .filter-pill.filter-state{
        padding: 10px 8px;
    }
    .no-result-box h2 {
        font-size: 21px;
        margin: 20px 0;
    }
    #display-blogs .jobtalk-card img{
        height: auto;
    }
    .no-result-box .desc, .no-result-box .try-again{
        font-size: 12px;
    }
  /* Reset buttons */
  .edu-next,
  .edu-prev, .premium-next, .premium-prev {
    background: none;
    border: none;
    padding: 0px;
    box-shadow: none;
    cursor: pointer;
    position: relative;
  }

  /* Hide existing arrow text */
  .edu-next span,
  .edu-prev span, .premium-next span,
  .premium-prev span {
    font-size: 0;
    color: transparent;
  }

  /* NEXT Chevron ( > ) */
  .edu-next::before, .premium-next::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    transform: rotate(45deg);
    display: inline-block;
  }

  /* PREV Chevron ( < ) */
  .edu-prev::before, .premium-prev::before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    display: inline-block;
  }
}
@media (min-width: 768px) and (max-width: 990px){
    .category-card {
        width: 15%;
        height: 110px;
    }
    .maincategory-grid{
        gap: 12px;
    }
    .state-pill {
        padding: 6px 4px;
        font-size: 12px;
    }
    .govt-career-section .join-btn {
        width: 70%;
        left: 16%;
        bottom: 20px;
    }
    .qualifications{
        gap: 12px;
    }
    .qualification-pill{
      flex-basis: 15%;
    }
    .category-card img {
        width: 64px;
        height: 64px;
        object-fit: contain;
        z-index: 1;
    }
    /*.category-card.ssc-pt img{
        width: 80px;
        height: 80px;
    }
    .category-card.nurse-pt img{
        width: 84px;
        height: 84px;
    }*/
    .category-card span {
          font-size: 14px;
          font-weight: 600;
          color: #000;
          z-index: 1;
      }
      body{
        overflow-x: hidden;
      }
      .home-info-card ul li{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
    .category-card{
      flex-basis: 15%;
      width: 15%;
      background: linear-gradient(261.32deg, #AAD4FF 17.87%, #FFFFFF 57.08%, #8AC3FF 93.38%);
      height: 110px;
    }
    .loud, .wp-mob{
        display: none;
    }
    .govt-career-section .card-content {
        max-width: 100%;
    }
    .aspirants {
        width: 70px;
    }
    .app-buttons {
        display: flex;
        gap: 10px;
    }
    .app-buttons img {
        width: 150px;
/*        flex: 1;*/
        margin-bottom: 20px;
    }
     .footer-links{
      list-style: disc;
      padding-left: 18px;
      margin-top: 0px;
    }

  .footer-links li::marker {
    font-size: 12px;
  }
}
.filter-pill.filter-state.active{
    background: var(--color-primary) !important;
    color: #fff !important;
    border-color: var(--color-primary) !important;
}
@media(min-width: 1181px){
    .job-card.basic-card{
        min-height: 249px;
    }
    .mobile--header-btns .lang-wrapper{
        display: none;
    }
}
.info-box ul{
    list-style: disc;
}
.info-box ol{
    list-style: decimal;
}
#popup-toggle {
    display: none;
}

.open-btn-alert {
padding: 7px 20px;
background: #2563eb;
color: #fff;
border-radius: 10px;
font-weight: 500;
cursor: pointer;
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
transition: 0.3s;
}

.open-btn-alert:hover {
background: #1d4ed8;
}

.alert-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.4);
backdrop-filter: blur(4px);
display: none;
justify-content: center;
align-items: center;
z-index: 9999;
}

#popup-toggle:checked ~ .alert-overlay {
display: flex;
}

.alert-popup {
position: relative;
background: #fff;
width: 340px;
border-radius: 16px;
padding: 25px;
text-align: center;
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
animation: pop 0.3s ease;
}

@keyframes pop {
from {
  transform: scale(0.85);
  opacity: 0;
}
to {
  transform: scale(1);
  opacity: 1;
}
}

/* CLOSE ICON */
.alert-popup .close-icon {
position: absolute;
top: 12px;
right: 12px;
font-size: 18px;
cursor: pointer;
color: #6b7280;
background: #f3f4f6;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: 0.2s;
}

.alert-popup .close-icon:hover {
background: #e5e7eb;
color: #111827;
}

.alert-popup .icon {
width: 60px;
height: 60px;
margin: 0 auto 15px;
border-radius: 50%;
background: #eff6ff;
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
color: #2563eb;
}

.alert-popup h3 {
margin: 0;
font-size: 18px;
color: #111827;
}

.alert-popup p {
font-size: 14px;
color: #6b7280;
margin: 10px 0 20px;
}

.alert-popup .btn {
padding: 10px 18px;
border-radius: 8px;
font-size: 14px;
cursor: pointer;
display: inline-block;
}

.alert-popup .btn-cancel {
background: #f3f4f6;
color: #111827;
}

.alert-popup .btn-cancel:hover {
background: #e5e7eb;
}
#graduate-jobs, #postgrad-jobs{
    scroll-margin-top: 60px;
}
main{
    min-height: 65vh;
}
.filter-modal-body{
    padding-bottom: 20px;
}
.no-card {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    border-radius: 8px;
    margin: 20px;
  }

  .no-card .icon {
    font-size: 30px;
    color: var(--color-primary);
    background: var(--color-primary-light);
    margin-bottom: 20px;
    width: 75px;
    height: 75px;
    line-height: 75px;
    border-radius: 100%;
    margin: 0 auto 20px;
  }

  .no-card .title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
  }

  .no-card .description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .no-card .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
  }

  .no-card .btn {
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s;
  }

  .no-card .btn-primary {
    background:var(--color-primary);
    color: #fff;
    transition: all 0.3s;
  }

  .no-card .btn-primary:hover {
    background: var(--color-primary-dark);
  }

  .no-card .btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    transition: all 0.3s;
  }

  .no-card .btn-outline:hover {
    background: var(--color-primary-dark);
    color: #fff;
  }

  @media (max-width:767px){
    .no-card{
        padding: 50px 0px;
    }
  }
/*Blog Page */
.blog-list .side-bar .heading-details h4, .blogdetail .side-bar .heading-details h4{
    font-size: 16px;
}
.blog-list .recent-posts-entry .widget-post-bx .widget-post .title, 
.blogdetail .recent-posts-entry .widget-post-bx .widget-post .title{
    line-height: 1.3;
    font-family: 'Poppins';
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-list, .blogdetail{
    background:#f3f5f7;
}
.blog-list .recent-posts-entry .widget-post-bx .widget-post .dz-media, 
.blogdetail .recent-posts-entry .widget-post-bx .widget-post .dz-media{
    height: 92px;
}
.recent-posts-entry .widget-post-bx .widget-post:last-child{
    margin-bottom: 0;
}
.blog-list .recent-posts-entry .widget-post-bx .widget-post .dz-media img,
.blogdetail .recent-posts-entry .widget-post-bx .widget-post .dz-media img{
        height: 100%;
    object-fit: cover;
}
section.job_category.pt40 .blog-list .container-fluid, 
section.job_category.pt40 .blogdetail .container-fluid{
    background: transparent;
}
.blog-list .dz-card.style-1 p {
    font-weight: 400;
    margin-bottom: 22px;
    font-size: 14px;
    color: #71717b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-list .dz-card.style-1 .dz-title {
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
    color: #454545;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-list .dz-card.blog-half .dz-media{
        height: 250px;
    width: 300px;
    border-radius: 0 !important;
}
.blog-list .dz-card.style-1{
    align-items: center;
    box-shadow: 0 0 10px #d8dde54d;
    border-radius: 10px;
    overflow: hidden;
}
.blog-list .dz-card.blog-half .dz-media img{
    border-radius: 0;
}
.blog-list .side-bar, .blog-detail .side-bar {
    padding-bottom: 1px;
    padding: 0 15px;
}

@media (min-width:1700px){
    .blog-list .dz-card.style-1 .dz-title{
        font-size: 22px;
    line-height: 30px;
    }
    .blog-list .dz-card.style-1 p{
        font-size: 17px;
    }
    .blog-list .dz-card.blog-half .dz-media {
    height: 300px;
    width: 300px;
  }
}
@media (max-width:767px){
    .blog-list .side-bar, .blog-detail .side-bar{
        padding: 0;
    }
}

.dz-card.blog-half {
display: flex;
margin-bottom: 30px; }
.dz-card.blog-half .dz-info {
padding: 30px;
position: relative;
flex: 1; }
.dz-card.blog-half .dz-media {
margin-bottom: 0;
max-width: 300px;
min-width: 300px; }
.dz-card.blog-half .dz-media img {
height: 100%;
object-fit: cover;
min-height: 235px; }
/*.dz-card.style-1 .dz-media::before {
content: '';
position: absolute;
top: 0;
left: -100%;
z-index: 2;
display: block;
width: 50%;
height: 100%;
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
-webkit-transition: all 1s;
-ms-transition: all 1s;
transition: all 1s; }
.dz-card.style-1:hover .dz-media::before {
left: 100%;
right: 0; }*/
.dz-card.style-1 .dz-info {
padding: 0; }
.dz-card.style-1 .dz-info.shadow {
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; }
.dz-card.style-1 .dz-title {
font-weight: 600;
margin-bottom: 5px;
line-height: 1.2; }
.dz-card.style-1 p {
font-weight: 400;
margin-bottom: 22px; }
.dz-card.style-1 .dz-meta ul li i {
font-size: 13px;
color: var(--primary);
top: 0; }


.dz-card.style-1 {
background: #fff;
padding: 25px;
border-radius: var(--border-radius-base);
margin-top: 25px;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.1); }
@media only screen and (max-width: 575px) {
.dz-card.style-1 {
padding: 20px; } }
.dz-card.style-1 .dz-media {
margin-top: -45px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
margin-bottom: 20px; }
.dz-card.style-1 .dz-media .date a {
color: #fff;
padding: 6px 14px;
border-radius: 5px;
font-size: 13px;
font-weight: 600;
position: absolute;
top: 12px;
left: 12px;
background: var(--body-color);
backdrop-filter: blur(7.5px);
opacity: 0.8; }
/*.dz-card.style-1 .dz-media::before {
content: '';
position: absolute;
top: 0;
left: -100%;
z-index: 2;
display: block;
width: 50%;
height: 100%;
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
-webkit-transition: all 1s;
-ms-transition: all 1s;
transition: all 1s; }
.dz-card.style-1:hover .dz-media::before {
left: 100%;
right: 0; }*/
.dz-card.style-1 .dz-info {
padding: 0; }
.dz-card.style-1 .dz-info.shadow {
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; }
.dz-card.style-1 .dz-title {
font-weight: 600;
margin-bottom: 5px;
line-height: 1.2; }
.dz-card.style-1 p {
font-weight: 400;
margin-bottom: 22px; }
.dz-card.style-1 .dz-meta ul li i {
font-size: 13px;
color: var(--primary);
top: 0; }
@media only screen and (max-width: 575px) {
.dz-card.style-1 .dz-meta ul li i {
font-size: 11px; } }
.dz-card.style-1.blog-half {
padding: 0;
margin-top: 0; }
.dz-card.style-1.blog-half .dz-info {
padding: 30px; }
@media only screen and (max-width: 767px) {
.dz-card.style-1.blog-half .dz-info {
border-radius: 0 0 6px 6px; } }
@media only screen and (max-width: 575px) {
.dz-card.style-1.blog-half .dz-info {
padding: 20px; } }
.dz-card.style-1.blog-half .dz-media {
margin-bottom: 0;
margin-top: 0;
border-radius: var(--border-radius-base) 0 0 var(--border-radius-base); }
@media only screen and (max-width: 767px) {
.dz-card.style-1.blog-half .dz-media {
border-radius: var(--border-radius-base) var(--border-radius-base) 0 0; } }



.job-post-container {
    background-color: #fff;
    border-radius: 10px;
    padding:24px;
/*    box-shadow: 4px 4px 12px rgba(21, 60, 245, .05), 0 2px 6px rgba(5, 21, 46, .02);*/
   box-shadow: 0 0 10px #d8dde54d;
   font-family: 'Poppins',sans-serif;
   /*border: 1px solid #ced4da;*/
   margin-bottom: 20px;
   position: relative;
   overflow: hidden;

}
.widget_tag_cloud .tagcloud {
clear: both;
display: table; 
}
.widget_tag_cloud .tagcloud a {
position: relative;
padding: 8px 15px;
display: inline-block;
margin: 0 10px 10px 0;
font-size: 14px;
color: var(--color-primary);
line-height: 1.4;
border: 0;
background: #00a5ea1a;
border-radius: 6px; }
@media only screen and (max-width: 1480px) {
.widget_tag_cloud .tagcloud a {
padding: 6px 18px;
margin: 0 10px 10px 0; } }
@media only screen and (max-width: 1199px) {
.widget_tag_cloud .tagcloud a {
padding: 6px 14px;
margin: 0 8px 8px 0; } }
.widget_tag_cloud .tagcloud a:hover {
box-shadow: 0px 5px 12px rgb(0 165 234 / 40%);
background-color: var(--color-primary-dark);
border-color: var(--color-primary-dark);
color: #fff; }
.widget_tag_cloud .tagcloud a span {
display: inline-block; }


.wp-block-latest-posts, .wp-block-categories-list, .wp-block-archives-list, .widget_categories ul, .widget_archive ul, .widget_meta ul, .widget_pages ul, .widget_recent_comments ul, .widget_nav_menu ul, .widget_recent_entries ul, .widget_services ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.wp-block-latest-posts li,
.wp-block-categories-list li,
.wp-block-archives-list li,
.widget_categories ul li,
.widget_archive ul li,
.widget_meta ul li,
.widget_pages ul li,
.widget_recent_comments ul li,
.widget_nav_menu ul li,
.widget_recent_entries ul li,
.widget_services ul li {
padding-bottom: 1.125rem;
margin-bottom: 0.8125rem;
position: relative;
padding: 0.5rem 0rem 0.5rem 0.9375rem;
margin-bottom: 0;
line-height: 1.25rem; }
.wp-block-latest-posts li a,
.wp-block-categories-list li a,
.wp-block-archives-list li a,
.widget_categories ul li a,
.widget_archive ul li a,
.widget_meta ul li a,
.widget_pages ul li a,
.widget_recent_comments ul li a,
.widget_nav_menu ul li a,
.widget_recent_entries ul li a,
.widget_services ul li a {
color: inherit;
text-transform: capitalize;
-webkit-transition: all 0.8s;
-ms-transition: all 0.8s;
transition: all 0.8s; }
.wp-block-latest-posts li a:before,
.wp-block-categories-list li a:before,
.wp-block-archives-list li a:before,
.widget_categories ul li a:before,
.widget_archive ul li a:before,
.widget_meta ul li a:before,
.widget_pages ul li a:before,
.widget_recent_comments ul li a:before,
.widget_nav_menu ul li a:before,
.widget_recent_entries ul li a:before,
.widget_services ul li a:before {
content: "\f0da";
font-family: "Font Awesome 5 Free";
width: auto;
height: auto;
font-size: 14px;
font-weight: 700;
left: 0;
top: 8px;
color: var(--color-primary);
position: absolute;
background: transparent; }
.wp-block-latest-posts li a:hover,
.wp-block-categories-list li a:hover,
.wp-block-archives-list li a:hover,
.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_meta ul li a:hover,
.widget_pages ul li a:hover,
.widget_recent_comments ul li a:hover,
.widget_nav_menu ul li a:hover,
.widget_recent_entries ul li a:hover,
.widget_services ul li a:hover {
color: var(--color-primary); }
.wp-block-latest-posts li li,
.wp-block-categories-list li li,
.wp-block-archives-list li li,
.widget_categories ul li li,
.widget_archive ul li li,
.widget_meta ul li li,
.widget_pages ul li li,
.widget_recent_comments ul li li,
.widget_nav_menu ul li li,
.widget_recent_entries ul li li,
.widget_services ul li li {
border-bottom: none;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
line-height: 1.375rem; }


.recent-posts-entry .widget-post-bx .widget-post {
display: flex;
align-items: center;
border-radius: 0.375rem;
margin-bottom: 20px;
transition: all 0.5s; }
.recent-posts-entry .widget-post-bx .widget-post .dz-media {
width: 92px;
min-width: 92px;
margin-right: 15px;
overflow: hidden;
border-radius: var(--border-radius-base); }
@media only screen and (max-width: 1199px) {
.recent-posts-entry .widget-post-bx .widget-post .dz-media {
width: 75px;
min-width: 75px; } }
.recent-posts-entry .widget-post-bx .widget-post .dz-meta {
margin-bottom: 0; }
.recent-posts-entry .widget-post-bx .widget-post .dz-meta ul {
line-height: 1; }
.recent-posts-entry .widget-post-bx .widget-post .dz-meta ul li {
font-size: 15px; }
.recent-posts-entry .widget-post-bx .widget-post .title {
line-height: 1.3;
font-family: 'Poppins';
margin-bottom: 8px;
display: block;
font-weight: 600;
font-size: 16px; }
.recent-posts-entry .widget-post-bx .widget-post .post-date {
font-size: 14px; }
.recent-posts-entry .widget-post-bx .widget-post:not(:last-child) {
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.dz-meta ul li {
display: inline-block;
color: #777;
margin-right: 20px; }
.dz-meta ul li:last-child {
margin-right: 0; }


.dz-meta ul {
    margin: 0;
    padding: 0;
}

.blog-single.dz-card.sidebar {
width: 100%;
max-width: 100%;
padding-left: 0;
padding-right: 0; }


.blog-single {
margin-bottom: 3.125rem; }
.blog-single .dz-post-meta {
margin-bottom: 1.25rem; }
.blog-single .dz-post-text {
padding-bottom: 5px; }
.blog-single .dz-post-text:after {
content: "";
display: block;
width: 100%;
clear: both; }
.blog-single .dz-post-tags {
margin-top: 1.25rem; }
.blog-single .dz-post-media {
border-radius: 0.25rem; }
.blog-single.dz-card .post-tags {
margin-bottom: 0;
flex-wrap: wrap;
    gap: 8px 0; }
.blog-single .dz-media img,
.blog-single .dz-post-media img {
border-radius: 5px; }
.blog-single .dz-title {
font-size: 30px; }
@media only screen and (max-width: 767px) {
.blog-single .dz-title {
font-size: 28px; } }
@media only screen and (max-width: 575px) {
.blog-single .dz-title {
font-size: 24px; } }
.blog-single.style-1 .dz-title {
margin: 10px 0;
font-weight: 700; }
.blog-single.style-1 .btn-link {
color: black;
font-weight: 600;
font-size: 15px; }
.blog-single.style-1 .dz-media img {
border-radius: var(--border-radius-base); }
.blog-single.style-1 .dz-media .dz-badge-list {
position: absolute;
top: 20px;
left: 20px; }
.blog-single.style-1 .dz-media .dz-badge {
background-color: var(--primary);
color: #fff;
border-radius: var(--border-radius-base);
padding: 8px 15px;
font-size: 12px;
text-transform: uppercase; }
.blog-single.style-1:hover .dz-media {
border-color: var(--primary); }
.blog-single.style-1:hover .btn-link {
color: var(--primary); }

.dz-post-text a {
text-decoration: underline;
box-shadow: inset 0 -10px 0 var(--rgba-primary-1); }

.dz-post-text .widget_archive li a,
.dz-post-text .wp-block-latest-posts li a,
.dz-post-text .wp-block-categories-list li a,
.dz-post-text .wp-block-archives-list li a,
.dz-post-text .widget_categories li a,
.dz-post-text blockquote a,
.dz-post-text .wp-block-button__link {
box-shadow: none;
text-decoration: none; }

@media only screen and (max-width: 767px) {
.dz-card.blog-half {
display: block; }
.dz-card.blog-half .dz-media {
max-width: 100%;
min-width: 100%; } }

/*.d-block {
    display: block !important;
}*/
@media only screen and (min-width: 768px) {
    .cd-breadcrumb, .cd-multi-steps {
        padding: 0px 1.2em;
    }
}
@media only screen and (min-width: 768px) {
    .cd-breadcrumb li > *, .cd-multi-steps li > * {
        font-size: 18px;
    }
}
.cd-breadcrumb, .cd-multi-steps {
    width: 100%;
    background-color: rgb(0 165 234 / 10%);
    padding: 0.5em 1em;
    margin: 0px auto;
}
.cd-breadcrumb li, .cd-multi-steps li {
    display: inline-block;
    float: left;
    margin: 0.5em 0;
}
.cd-breadcrumb li.current > *, .cd-multi-steps li.current > * {
    color: var(--color-primary);
}
@media (max-width: 991px) {
    .dz-bnr-inr {
        display: none !important;
    }
}
img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.dz-post-text table,
.dz-page-text table,
.wp-block-table {
width: 100%;
max-width: 100%;
margin-bottom: 1rem;
background-color: transparent;
font-size: 1rem;
margin-bottom: 1.875rem; }

.wp-block-image figcaption,
.dz-post-text figcaption,
.dz-page-text figcaption {
font-size: 0.875rem;
font-family: 'Poppins', sans-serif;
font-style: normal;
margin-top: 0.625rem; }

.dz-post-text table tbody tr:nth-of-type(odd),
.dz-page-text table tbody tr:nth-of-type(odd),
.wp-block-table tbody tr:nth-of-type(odd) {
background-color: #fafafa; }

.dz-post-text td,
.dz-post-text th,
.dz-page-text td,
.dz-page-text th,
.wp-block-table td,
.wp-block-table th {
padding: 0.625rem 0.938rem;
border: 0.0625rem solid #e4e4e4;
border-right: 0;
border-left: 0; }

.wp-block-media-text {
margin-bottom: 30px; }
.wp-block-media-text .wp-block-media-text__content {
padding: 0 1.875rem; }

.wp-block-column ol li:before,
.wp-block-column ul li:before {
content: none !important; }

.wp-block-pullquote {
padding: 1em 0;
border-top: 0;
border-bottom: 0; }
.wp-block-pullquote cite {
color: #fff; }
.wp-block-pullquote.alignright, .wp-block-pullquote.alignleft {
padding: 0;
border-top: 0;
border-bottom: 0; }
.wp-block-pullquote.alignright blockquote, .wp-block-pullquote.alignleft blockquote {
margin: 0; }

.dz-post-text .wp-block-cover-image-text,
.dz-post-text .wp-block-cover-text,
.dz-post-text section.wp-block-cover-image h2,
.dz-post-text section.wp-block-cover-image .h2,
.dz-page-text .wp-block-cover-image-text,
.dz-page-text .wp-block-cover-text,
.dz-page-text section.wp-block-cover-image h2,
.dz-page-text section.wp-block-cover-image .h2 {
color: #fff; }

.dz-post-text .bootstrap-select .dropdown-menu li a,
.dz-page-text .bootstrap-select .dropdown-menu li a {
box-shadow: none;
font-size: 0.875rem;
font-family: 'Poppins', sans-serif; }

.dz-post-text .wp-block-calendar a {
box-shadow: none !important;
text-decoration: unset; }

.wp-block-search,
.wp-block-archives,
.wp-block-latest-posts,
.wp-block-latest-comments,
.wp-block-categories,
.wp-block-calendar {
margin-bottom: 2.5rem; }


.dz-page-text ul li,
.dz-page-text ol li,
.dz-card.blog-single .dz-post-text ul li,
.dz-card.blog-single .dz-post-text ol li {
position: relative; }

.dz-page-text ul > li:before,
.dz-page-text ol > li:before,
.dz-card.blog-single .dz-post-text ul > li:before,
.dz-card.blog-single .dz-post-text ol > li:before {
content: "";
display: inline-block;
width: 0.375rem;
height: 0.375rem;
background: #212529;
left: -0.938rem;
position: absolute;
top: 1.1rem;
border-radius: 4px; }

.dz-page-text ul > li li:before,
.dz-page-text ol > li li:before,
.dz-card.blog-single .dz-post-text ul > li li:before,
.dz-card.blog-single .dz-post-text ol > li li:before {
content: none; }

table {
    border-collapse: collapse;
    border-spacing: 0;
}
table {
    caption-side: bottom;
    border-collapse: collapse;
}
.dz-page-text h2, .dz-page-text .h2, .dz-post-text h2, .dz-post-text .h2, .thm-unit-test .dz-post-text h2, .thm-unit-test .dz-post-text .h2 {
    margin-bottom: 1rem;
    font-size: 2.375rem;
}

.blogdetail .container .row{
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.dz-share-post {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 0px;
border-top: 1px dashed #cccccc; }
.dz-share-post .post-tags {
display: flex;
align-items: center; }
.dz-share-post .post-tags .title {
font-size: 18px;
font-weight: 500;
color: #111;
margin-right: 10px;
font-family: var(--font-family-title); }
.dz-share-post .post-tags a {
    margin-right: 10px;
    display: inline-block;
}
.m-r10 {
    margin-right: 10px;
}
.m-b0 {
    margin-bottom: 0px;
}
.dz-share-post .post-tags a {
border-radius: 5px;
padding: 6px 12px;
border: 1px solid;
line-height: 1.4;
display: inline-block;
color: inherit;
font-size: 14px;
-webkit-transition: all 0.8s;
-ms-transition: all 0.8s;
transition: all 0.8s; }
.dz-share-post .post-tags a i {
color: var(--primary); }
.dz-share-post .post-tags a:last-child {
margin-right: 0; }
.dz-share-post .post-tags a:hover {
background-color: var(--color-primary);
border-color: var(--color-primary);
box-shadow: 0px 12px 20px 0px rgb(0 165 234 / 30%);
color: #fff; }
.dz-share-post .post-tags a:hover i {
color: #fff; }
.dz-share-post .dz-social-icon {
display: flex;
align-items: center; }
@media only screen and (max-width: 991px) {
.dz-share-post .dz-social-icon {
margin-bottom: 15px; } }
.dz-share-post .dz-social-icon .title {
margin-right: 20px;
margin-bottom: 0; }
.dz-share-post .dz-social-icon ul {
margin-left: -3px;
margin-right: -3px;
display: flex; }
.dz-share-post .dz-social-icon ul li {
padding: 0 3px; }
.dz-share-post .dz-social-icon ul li a {
width: 35px;
height: 35px;
line-height: 35px;
font-size: 16px;
display: block;
background-color: var(--color-primary);
color: #fff;
text-align: center;
line-height: 35px;
border-radius:5px; }
.dz-share-post .dz-social-icon ul li a:hover {
color: #fff;
background-color: var(--color-primary-dark); }
@media only screen and (max-width: 1280px) {
.dz-share-post .dz-social-icon {
padding-top: 20px; } }
@media only screen and (max-width: 991px) {
.dz-share-post {
display: block; } }
@media only screen and (max-width: 767px) {
.dz-share-post {
display: block; }
.dz-share-post .post-tags {
margin-bottom: 20px; } }

#comment-list:empty + .paginate-links {
margin-top: -30px; }

.post-swiper {
position: relative; }
.post-swiper .prev-post-swiper-btn,
.post-swiper .next-post-swiper-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
height: 40px;
width: 40px;
border-radius: var(--border-radius-base);
text-align: center;
line-height: 40px;
font-size: 20px;
background-color: #fff;
color: var(--primary);
z-index: 1;
-webkit-transition: all 0.8s;
-ms-transition: all 0.8s;
transition: all 0.8s; }
.post-swiper .prev-post-swiper-btn:hover,
.post-swiper .next-post-swiper-btn:hover {
background-color: var(--primary);
color: #fff; }
.post-swiper .prev-post-swiper-btn {
left: 10px; }
.post-swiper .next-post-swiper-btn {
right: 10px; }

.blog-single .dz-media + .dz-info {
padding: 30px 0 0; }
.author-box {
padding: 35px;
background: #f3f4f8;
border-radius:6px; }
.author-box .author-profile-info {
display: flex; }
.author-box .author-profile-info .author-profile-content {
padding-left: 25px; }
.author-box .author-profile-info .author-profile-content p {
margin-bottom: 25px; }
.author-box .author-profile-info .author-profile-content ul {
padding: 0;
margin: 0;
margin-right: 5px;
display: table;
float: left; }
.author-box .author-profile-info .author-profile-content ul li {
padding: 0;
margin: 0;
margin-right: 10px;
float: left; }
.author-box .author-profile-info .author-profile-content ul li a {
width: 35px;
height: 35px;
line-height: 35px;
font-size: 16px;
display: block;
background-color: var(--primary);
color: #fff;
text-align: center;
line-height: 35px;
border-radius: var(--border-radius-base); }
.author-box .author-profile-info .author-profile-content ul li a:hover {
color: #fff;
background-color: var(--primary-hover); }
.author-box .author-profile-info .author-profile-pic {
width: 120px;
height: 120px;
overflow: hidden;
min-width: 120px;
border-radius: var(--border-radius-base); }
.author-box .author-profile-info .author-profile-pic img {
width: 100%; }
@media only screen and (max-width: 575px) {
.author-box .author-profile-info {
display: block;
text-align: center; }
.author-box .author-profile-info .author-profile-pic {
width: 80px;
height: 80px;
min-width: 80px;
margin-bottom: 20px;
margin-left: auto;
margin-right: auto; }
.author-box .author-profile-info .author-profile-content {
padding-left: 0;
padding-right: 0; }
.author-box .author-profile-info .author-profile-content ul {
display: inline-block;
float: none;
margin-right: 0; }
.author-box .author-profile-info .author-profile-content ul li {
margin-right: 5px;
margin-left: 5px; }
.author-box .author-profile-info .author-profile-content ul li a {
height: 40px;
width: 40px;
line-height: 40px;
text-align: center;
font-size: 14px;
background: var(--primary);
color: #fff;
vertical-align: middle;
display: block;
-webkit-transition: all 0.8s;
-ms-transition: all 0.8s;
transition: all 0.8s; }
.author-box .author-profile-info .author-profile-content ul li a:hover {
color: #fff;
background: var(--primary-hover); } }


.dz-page-text > ol li, .dz-page-text > ul li, .dz-card.blog-single .dz-post-text > ol li, .dz-card.blog-single .dz-post-text > ul li, .dz-card.blog-single .dz-post-text > ol li, .dz-card.blog-single .dz-post-text > ul li, .dz-card.blog-single .dz-post-text.text > ol li, .dz-card.blog-single .dz-post-text.text > ul li {
    padding: 0.5rem 0.5rem;
    position: relative;
    list-style: inherit;
}
.dz-post-text a {
    text-decoration: underline;
    box-shadow: inset 0 -10px 0 rgb(0 165 234 / 10%);
}
.dz-page-text p, .dz-card.blog-single .dz-post-text p {
    margin-bottom: 1.65rem;
}
.dz-page-text h3, .dz-page-text .h3, .dz-post-text h3, .dz-post-text .h3, .thm-unit-test .dz-post-text h3, .thm-unit-test .dz-post-text .h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}
.overlay-shine .dz-media {
    position: relative;
}
.dz-card.style-1 .dz-media .date a {
    color: #fff;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    top: 12px;
    left: 12px;
    background: #142238;
    backdrop-filter: blur(7.5px);
    opacity: 0.8;
}
.page-breadcrumb.bblog{
    padding-bottom: 10px;
}
.blog-list, .blogdetail{
    padding-top: 30px;
}
.breadcrumb-item.active{
    color: #fff;
}
.widget.widget_tag_cloud:first-child {
    margin-bottom: 12px;
}
.blog-list .container .row{
    width: 100%;
    margin: 0;
    padding: 0;
}
.blogdetail .container .row .col-lg-8, .blog-list .container .row .col-lg-8{
    padding-left: 0;
}
.blogdetail .container .row .col-lg-4, .blog-list .container .row .col-lg-4{
    padding-right: 0;
}
#blog-container .col-lg-12{
        padding: 0;
    }
@media(max-width: 767px){
    #blog-container .col-lg-12{
        padding: 0;
    }
}

/*detail*/
.drop-name {
    display: flex;
    padding: 16px 20px 12px;
    position: relative;
    align-items: center;
    cursor: pointer;
    /* position: relative; */
}

.job-post-primary-info .drop__profession {
    font-size: 14px;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-transform: capitalize;
    color: #142238;
}
.post-name {
    font-size: 14px;
    /* padding: 2px 10px; */
    /* border: 2px solid #00A5EC; */
    border-radius: 20px;
    font-weight: 400;
    display: inline-block;
    margin: 5px 0 0;
    color: #71717b;
}
.buttons {
    position: relative;
    display: inline-flex;
    place-items: center;
    height: fit-content;
    width: fit-content;
    transition: 0.3s;
    border-radius: 50%;
}
.share-div1 {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: auto;
    display: inline-block;
    padding: 4px 7px;
    border-radius: 5px;
    font-size: 12px;
    color: #000;
    z-index: 9;
}
.company-logo {
    width: 75px;
    height: 75px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-right: 12px;
    /* position: relative; */
    /* box-shadow: 0 0.3rem 1rem -0.375rem rgb(0 0 0 / 29%) !important; */
    border-radius: 5px;
    flex-shrink: 0;
}
.company-logo img {
    border-radius: 7px;
    object-fit: contain;
}
#fixed-lock {
    position: absolute;
    right: -46px;
    top: 10px;
    display: none;
}

.heading-details {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.heading-details h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}
.side-bar .heading-details h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}
.job-details2 .job-post-category {
    margin: 6px 8px 6px 0;
}
@media (min-width: 1200px) {
    .job-details2 .job-post-category {
        padding: 6px 10px;
        font-size: 13px;
        line-height: 14px;
        text-transform: capitalize;
        margin-bottom: 6px;
        color: var(--muted-foreground);
        transition: background-color .4s, color .4s;
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 0;
        width: auto;
        background: #f3f3f3;
        background: transparent;
        border: 1px solid;
        border-radius: 20px;
    }
    .job-details2 .details-sec ul {
        display: flex;
        flex-wrap: wrap;
        gap: 16px 0;
    }
    .job-details2 .details-sec li{
    flex: 0 0 50%;
    margin-bottom: 0;
}
.job-details2 .job-post-info-text{
    font-size: 15px;
    color: var(--neutral-500);
    flex: 0 0 85%;
}
.job-details2 .details-sec ul{
    margin-bottom: 0;
}

.job-details2 .job-post-category{
        padding: 6px 10px;
    font-size: 13px;
    line-height: 14px;
    text-transform: capitalize;
    margin-bottom:6px;
    color: var(--muted-foreground);
}
.job-details2 .lock-sheet p, .job-details2 .lock-sheet li{
    color: var(--neutral-500);
    font-weight: 400;
}
.job-details2 .location-list {
    color: var(--neutral-500);
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0px !important;
}
}

.details-sec li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 16px 0;
}
.details-sec li:last-child {
    
    margin: 0 ;
}
.locat li
{
    margin:0 0 10px 0;
}
.post-name
{
    font-size: 14px;
    /*padding:2px 10px;*/
    /*border:2px solid #00A5EC;*/
    border-radius: 20px;
    font-weight: 400;
    display: inline-block;
    margin: 5px 0 0;
    color: #71717b;
}
.detail-icon {
    background: var(--muted);
    /* padding: 6px; */
    border-radius: 4px;
    width:40px;
    height:40px;
    line-height:40px;
    text-align: center;
    font-size: 14px;
    color: var(--muted-foreground);
}
h5.label-head {
    font-size: 12px;
    margin-bottom: 0;
    color: #142238;
    font-weight: 400;
}
.job-detail-detail .list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.job-detail-detail .list li {
    display: inline-block;
    /* padding-right: 14px; */
}
.job-detail-detail .details {
    padding-left: 52px;
}
.details-sec li:last-child {
    
    margin: 0 ;
}
.box-op {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}
a.updated-link{
    color: var(--color-primary);
}
.job-detail-detail .text {
    font-size: 12px;
    font-weight: 400;
}
.job-detail-detail .icon {
    float: left;
    background: var(--muted);
    /* padding: 6px; */
    border-radius: 4px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: var(--muted-foreground);
}
.lock-sheet {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  clip-path: polygon(40px 0px, 100% 0px, 100% 100%, 0% 100%, 0% 40px);
  background: #fdf7b1;
  padding: 15px 15px 10px 45px;
  margin: 10px 0 20px;
  font-weight: 600;
  transition: clip-path 500ms;
  background: #fff;
  width: 100%;
}

.lock-sheet:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: rgb(255 255 255);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1); 
  border-radius: 0 0 6px 0;
  transition: transform 500ms;
}
.lock-sheet .job-post-container{
    box-shadow: none;
    background-color: transparent;
}
.rich-text.w-richtext {
    max-height: 160px;
    overflow-y: scroll;
    margin-top: 15px;
}
.lock-sheet.sheet .rich-text.w-richtext{
        filter: blur(3px);
} 
.rich-text p {
/*    margin-bottom: 24px;*/
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    color: #777f87;
    margin-bottom: 10px;
    font-family: 'Poppins',sans-serif;
}
.rich-text ul, .rich-text ol {
    max-width: 720px;
   list-style-type: disc;
    padding-left: 20px;
    font-size: 14px;
    color: #777f87;
    font-family: 'Poppins',sans-serif;
  }
  .rich-text.w-richtext li{
    list-style-type: disc;
  }
  .rich-text.w-richtext a{
    color: var(--color-primary);
  }
  .lock-sheet .textlockbar{
    display: none;
}
/*new social media*/
.social-boxes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.social-box-item {
    width: 32px;
    border-radius: 7px;
    overflow: hidden;
    transition: transform 0.3s ease; /* moved here */
}
.social-boxes a{
    transition: all 0.3s;
}
.social-box-item:hover{
    transform: translateY(-5px);
}
.countere {
    position: relative;
    right: -19px;
    top: -4px;
    display: inline;
}
.count-me {
    background: #00a5ec;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 11px;
    text-align: center;
    top: 0%;
    right: 0%;
    position: absolute;
    box-shadow: 2px 0px 4px 0px #1a1b1d4b;
}
.job-post-info-text {
    /* letter-spacing: .12em; */
    /* text-transform: uppercase; */
    font-size: 14px;
    color: #777f87;
    /* line-height: 18px; */
}
.details-sec ul{
    padding: 0;
}

.salary, .salary-price, .location, .exp-salary, .drop__exp, #lock-area {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #71717b;
}
.location.job-post-det {
    font-size: 14px !important;
    display: inline-block;
    overflow: visible;
    color: var(--neutral-500);
    text-transform: capitalize !important;
}
@media (max-width:767px){
    .intro-side{
    padding-top: 45px !important;
   }
   .loadmore{
    margin-top: 12px;
   }
   .details-sec ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: baseline;
        gap: 16px 0;
        margin: 0;
        padding: 0;
   }
   .details-sec li{
        width: 50%;
        margin-bottom: 0px;
   }
   /*.p-t90 {
    padding-top: 50px;
    }*/
    .small-add{
        height: 290px;
    }
}
@media (min-width:1181px){
    .details_cards_div .row .col-lg-4,
    .details_cards_div .row .col-md-4
{
    padding:0;
    width:32.33333%!important
}
.loadmore{
    margin-top: 20px;
}

}


@media (min-width:991px)
{
.job-detail-detail .list
    {
        flex-direction: row!important;
    }
    .job-detail-detail .list .age-list
    {
        width: 25%!important;
    }
    .box-op
    {
        flex-direction: row!important;
        width: 100%!important;
    }
}
@media (max-width:991px){
    .vertical-nav-menu.metismenu:first-child{
        padding-top: 28px;
    }
    .job-detail-detail .list .age-list
    {
        padding: 0!important
    }

}



@media (min-width: 900px) {
    .buttons {
        flex-direction: row;
    }
}









/*new detail page*/
.outer-div .company-logo
{
    max-width:100px!important;
    height: auto!important;
}
.outer-div .job-post-primary-info .drop-name{
    padding: 0;
}



/*jobs list*/

.row.layout.mid-header {
    align-items: center;
    padding: 15px 0 !important;
}
nav.c-navigation-breadcrumbs {
    color: #fff;
    background-color: var(--color-primary);
    padding: 3px 17px;
    box-shadow: 0 0 2px 1px #c1c1c1;
    border-radius: 6px;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 0;
    box-shadow: unset;
    border-radius: 4px;
    text-align: center;
}
.hidden-search-box {
    display: none;
}
@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
}
.job-top-right {
    text-align: right;
}
#up-grade {
    background: transparent;
    border-color: green !important;
}
.job-top-right .btn {
    line-height: 28px;
}
.btn-decor {

    border: 1px solid #ced4da !important;
    color: #495057;
    padding: 0.275rem 0.75rem !important;
    background-color: #fff !important;
    font-size: 14px;
    padding: 2px 15px;
    line-height: 30px;
    display: inline-flex;
    border-radius: 0.5;
    font-weight: 400;
    position: relative;
    text-transform: capitalize;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    justify-content: center;
}

@media (min-width: 768px){
    .filter-pill.state-filter {
        background: #fff;
        color: #111;
        border: 1px solid #e5e7eb;
        padding: 8px 4px;
    }
    .filter-tags.state-tags{
        display: flex;
        gap: 10px 6px;
    }
}


.filter-pill.active {
    background: var(--color-primary) !important;
    color: #fff !important;
    border-color: var(--color-primary) !important;
}
.job-details2 {
background: #f3f5f7;
}
.sticky-top {
    top: 0px !important;
}
.content-inner.extra {
    padding-top: 6px !important;
}
#vertical-filter.content .slider{
    background: transparent;
    border-radius: 0;
    position: static;
}
@media (min-width: 576px) {
    #largeModal .modal-dialog {
            margin: 10px auto !important;
    }
}
#specific-category .mobile-footer{
    display: none;
}