body{
    background-color: #F8F9FA;
    background: #f8f9fa;;
}

/*----------------------basics--------------------*/
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
/* Thin scrollbar */
::-webkit-scrollbar {
    width: 5px; /* Width of the vertical scrollbar */
    height: 5px; /* Height of the horizontal scrollbar */
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle (scrollbar itself) */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.spacing-top{
    margin-top: 70px;
}
.spacing-bottom{
    margin-bottom: 70px;
}

/*---------------------hedaer-menu-----------------*/
     .job-dekho-header-menu .navbar {
            background-color: white;
            padding: 10px 20px;
        }
        .job-dekho-header-menu .nav-item {
            margin: auto 20px;
        }
        .job-dekho-header-menu .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            text-transform: uppercase;
            font-size: 14px;
        }
        .job-dekho-header-menu .nav-link .badge, .job-dekho-header-menu .dropdown-menu .badge {
            /*position: absolute;
            top: -5px;
            right: -8px;
            background-color: red;
            color: white;*/
            font-size: 10px;
/*            border-radius: 50%;*/
        }
        .job-dekho-header-menu .search-bar {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 5px 10px;
        }
        .job-dekho-header-menu .search-bar input {
            border: none;
            outline: none;
            flex: 1;
        }
        .job-dekho-header-menu .search-bar button {
            background: none;
            border: none;
            color: blue;
        }
        .job-dekho-header-menu .profile-menu {
            display: flex;
            align-items: center;
        }
        .job-dekho-header-menu .profile-img {
            width: 35px;
            height: 35px;
            border-radius: 50%;
        }

        .job-dekho-header-menu .header-logo{
           max-width: 90px;
        }
        .job-dekho-header-menu .navbar-toggler {
            outline: 0 !important;
            box-shadow: 0 0 0 2px darkblue;
            padding: 3px 8px;
        }
        .job-dekho-header-menu .navbar-toggler:focus {
            outline: 0 !important;
            box-shadow: 0 0 0 1.5px darkblue;
        }
        .job-dekho-header-menu .mobile-nav-icons{
            font-size: 20px;
        }
        .navbar-toggler-icon {
        width: 1em !important;
        height: 1em !important;
       }
        .job-dekho-header-menu .profile{
            color: darkblue;
            font-size: 25px;
        }
        /*.job-dekho-header-menu .sign-up{
            
        }*/
        .job-dekho-header-menu .sign-up .nav-link{
            color: #fff;
            background-color: darkblue;
            padding: 7px 20px;
        }
        .job-dekho-header-menu .login .nav-link{
            color: darkblue;
        }
        /*.job-dekho-header-menu .login-as-recruiter{
            
        }*/
        .job-dekho-header-menu .login-as-recruiter .nav-link{
            color: #fff;
            background-color: #FF8C00;
            padding: 7px 20px;
        }
        @media screen and (min-width: 767px){
        .dropdown:hover .dropdown-menu {
            display: block;
            pointer-events: none;
        }
        }

/*        -------------------------recruiter-page-----------------*/
         
        .recruiter-page {
            background-image: url('https://media0.giphy.com/media/v1.Y2lkPTc5MGI3NjExN2k3OHNqbzZtM3BwOTRvYXJpem1wYWI4OTVwYzVmd3k3cHdnajd3NCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/QXaSadUXCKbAZD2ANH/giphy.gif'); /* Replace with your image URL */
            background-size: cover; /* Ensures the image covers the entire element */
            background-position: center; /* Centers the image */
            background-repeat: no-repeat; /* Prevents the image from repeating */
        }
        .recruiter-page .box {
            position: relative;
            width: 380px;
            height: 500px;
            background: #1c1c1c;
            border-radius: 8px;
            overflow: hidden;
            padding: 10px;
            }

        .recruiter-page .box::before{
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 380px;
            height: 420px;
            background: linear-gradient(0deg, transparent, transparent, #45f3ff, #45f3ff, #45f3ff);
            z-index: 1;
            transform-origin: bottom right;
            animation: animate 6s linear infinite;
        }
        .recruiter-page .recruiter-page-overlay{
            background: rgba(0, 0, 0, 0.5);
        }

        .recruiter-page .box::after{
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 380px;
            height: 420px;
            background: linear-gradient(0deg, transparent, transparent, #45f3ff, #45f3ff, #45f3ff);
            z-index: 1;
            transform-origin: bottom right;
            animation: animate 6s linear infinite;
            animation-delay: -3s;
        }

        .recruiter-page .borderLine::before{
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 380px;
            height: 420px;
            background: linear-gradient(0deg, transparent, transparent, #ff2770, #ff2770, #ff2770);
            z-index: 1;
            transform-origin: bottom right;
            animation: animate 6s linear infinite;
            animation-delay: -1.5s;
        }

        .recruiter-page .borderLine::after
        {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 380px;
            height: 420px;
            background: linear-gradient(0deg, transparent, transparent, #ff2770, #ff2770, #ff2770);
            z-index: 1;
            transform-origin: bottom right;
            animation: animate 6s linear infinite;
            animation-delay: -4.5s;
        }


        @keyframes animate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
            
        }

        .recruiter-page .box form{
            position: absolute;
            inset: 4px;
            background: #222;
            padding: 30px 40px;
            border-radius: 8px;
            z-index: 2;
            display: flex;
            flex-direction: column;
        }

        .recruiter-page .box form h2{
            color: #fff;
            font-weight: 500;
            text-align: center;
            letter-spacing: 0.1em;
        }

        .recruiter-page .box form .inputBox{
            position: relative;
            width: 300px;
            margin-top: 35px;
        }

        .recruiter-page .box form .inputBox input{
            position: relative;
            width: 100%;
            padding: 20px 10px 10px;
            background: transparent;
            outline: none;
            border: none;
            box-shadow: none;
            color: #23242a;
            font-size: 1em;
            letter-spacing: 0.05em;
            transition: 0.5s;
            z-index: 10;
        }

        .recruiter-page .box form .inputBox span{
            position: absolute;
            left: 0;
            padding: 20px 0px 10px;
            pointer-events: none;
            color: #8f8f8f;
            font-size: 1em;
            letter-spacing: 0.05em;
            transition: 0.5s;
        }

        .recruiter-page .box form .inputBox input:valid ~ span,
        .recruiter-page .box form .inputBox input:focus ~ span {
            color: #fff;
            font-size: 0.75em;
            transform: translateY((-34px));
        }

        .recruiter-page .box form .inputBox i{
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            transition: 0.5s;
            pointer-events: none;
        }

        .recruiter-page .box form .inputBox input:valid ~ i,
        .recruiter-page .box form .inputBox input:focus ~ i {
            height: 44px;
        }

        .recruiter-page .box form .links{
            display: flex;
            justify-content: space-between;
        }

        .recruiter-page .box form .links a{
            margin: 10px 0;
            font-size: 0.75em;
            color: #8f8f8f;
            text-decoration: none;
        }

        .recruiter-page .box form .links a:hover,
        .recruiter-page .box form .links a:nth-child(2){
            color: #fff;
        }

        .recruiter-page #submit{
            border: none;
            outline: none;
            padding: 9px 25px;
            cursor: pointer;
            font-size: 0.9em;
            border-radius: 4px;
            font-weight: 600;
            width: 100%;
            margin-top: 10px;
        }

        .recruiter-page #submit:active{
            opacity: 0.8;
        }

/*        --------------------recruiter-page-page-job-category---------------------*/
 
          .recruiter-page-job-category .category-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }
        .recruiter-page-job-category .category-card:hover {
            transform: translateY(-5px);
        }
        .recruiter-page-job-category .category-icon {
            font-size: 40px;
            color: #3b82f6;
            margin-bottom: 10px;
        }


/*        ------------------------home-container----------------*/
        .home-container .job-card {
/*            border: 1px solid #0d6efd;*/
            border-radius: 10px;
            padding: 15px;
            position: relative;
            background: #fff;
        }
        .home-container .job-card.active {
            border: 1px solid #0d6efd;
        }

        .home-container .urgent-hiring {
            background: #0d6efd;
            color: #fff;
            font-size: 12px;
            font-weight: bold;
            padding: 5px 10px;
            border-top-left-radius: 8px;
            border-bottom-right-radius: 8px;
            position: absolute;
            top: 0;
            left: 0;
        }

        .home-container .job-title {
            color: #0d6efd;
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .home-container .company-name {
            font-size: 14px;
            color: #666;
        }

        .home-container .badge-pill {
            background-color: #e6f0ff;
            color: #004085;
            padding: 6px 12px;
            font-size: 13px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .home-container .icon-btn {
            color: #666;
            cursor: pointer;
            font-size: 18px;
        }

        .home-container .icon-btn:hover {
            color: #0d6efd;
        }
        .home-container .card{
            border-radius: 10px;
        }
        .home-container .job-details{
            font-size: 14px;
            color: #000;
        }
        .home-container .job-listing{
            height: 658px;
            overflow-y: scroll;
            overflow-x: hidden;
            padding: 0 5px 0 0;
        }
        .home-container .job-list-details{
            height: 705px;
            overflow-y: scroll;
            overflow-x: hidden;
            padding: 0 5px 0 0;
        }
        .home-container .job-listing-short{
            font-size: 14px;
        }

/*        ----------------------candidate-type-------------*/

.candidate-type .selection-card {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: 0.3s;
            cursor: pointer;
        }
        .candidate-type .selection-card:hover {
            background-color: rgba(0, 110, 255, 0.06) !important;
            border-color: #0a6ed4;
        }
        .candidate-type .selection-card img {
            width: 50px;
            margin-bottom: 15px;
        }


/*        ------------------------top-search---------------*/

        .job-portal-search-container {
            text-align: center;
            max-width: 90%;
            margin-right: auto;
            margin-left: auto;
        }
        .job-portal-search-container .search-title {
            font-size: 32px;
            font-weight: bold;
            color: #212529;
        }
        .job-portal-search-container .search-subtitle {
            font-size: 18px;
            color: #6c757d;
            margin-bottom: 30px;
        }
        .job-portal-search-container .search-box {
            background: #fff;
            padding: 15px;
            border-radius: 50px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .job-portal-search-container .search-box input, .search-box select {
            border: none;
            outline: none;
            flex: 1;
            padding: 10px;
        }
        .job-portal-search-container .search-btn {
            background: #176BFF;
            color: #fff;
            border-radius: 25px;
            padding: 10px 25px;
            border: none;
            cursor: pointer;
        }
        .job-portal-search-container .search-btn:hover {
            background: #135ace;
        }


/*        ----------------------company-carousel---------------*/

       .job-portal-discover-section {
            background: linear-gradient(to right, #fff8f0, #fff);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .job-portal-discover-section .discover-text {
            max-width: 400px;
        }
        .job-portal-discover-section .discover-text h2 {
            font-weight: bold;
            color: #212529;
        }
        .job-portal-discover-section .carousel-indicators {
           bottom: -50px;
        }
        .job-portal-discover-section .carousel-indicators [data-bs-target] {
            color: #000 !important;
            background-color: darkblue;
            width: 10px;
            height: 10px;
        }
        .job-portal-discover-section .discover-text p {
            color: #6c757d;
        }
        .job-portal-discover-section .job-card {
            padding: 15px;
            background: #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: 0.3s;
        }
        .job-portal-discover-section .job-card:hover {
            transform: translateY(-5px);
        }

        .job-portal-discover-section .carousel-control-prev, .job-portal-discover-section .carousel-control-next {
            background-color: black;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            top: 50%;
            transform: translateY(-50%);
        }


/*        --------------------------footer------------------*/


       .job-portal-footer {
            background-color: #002A5C;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .job-portal-footer .social-icons a {
            font-size: 24px;
            margin: 0 10px;
            text-decoration: none;
            background-color: #fff;
            padding: 0 6px;
            border-radius: 50px;
            width: 40px;
            height: 40px;
        }
        .job-portal-footer .social-icons .linkedin {
                color: #0077b5;
            }
           .job-portal-footer .social-icons .facebook {
                color: #3a5999;
            }
           .job-portal-footer .social-icons .youtube {
                color: red;
            }
           .job-portal-footer .social-icons .instagram {
                color: #8a3ab9;
            }
            .job-portal-footer .social-icons .twitter {
                color: #00aced;
            }
       .job-portal-footer .contact-info img {
            width: 20px;
            margin-right: 5px;
        }
       .job-portal-footer .divider {
            width: 90%;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 20px auto;
        }
        .footer-up {
            background-color: #003366;
            color: white;
            padding: 40px 0;
        }
        .footer-up a {
            color: white;
            text-decoration: none;
            line-height: 30px;
        }
        .contact-info {
            font-size: 1rem;
        }

/* ----------------------company-job-catagory---------------*/

       .job-portal-category-section .category-card {
            background: #fff;
            border-radius: 15px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
            cursor: pointer;
        }
        .job-portal-category-section .category-card:hover {
            transform: translateY(-5px);
        }
        .job-portal-category-section .category-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f9f9f9;
        }
        .job-portal-category-section .category-text {
            font-weight: 600;
            color: #212529;
        }


/*---------------------company-cat-by-job--------------*/

.company-cat-by-job .job-card {
            background: #ffffff;
/*            border-radius: 12px;*/
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            transition: 0.3s;
        }
        .company-cat-by-job .job-card:hover {
            transform: translateY(-3px);
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
        }
        .company-cat-by-job .job-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        .company-cat-by-job .job-subtext {
            font-size: 14px;
            color: #666;
        }
        .company-cat-by-job .company-logos {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        .company-cat-by-job .company-logos img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            padding: 5px;
            background: #f8f9fa;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        }
        .company-cat-by-job .carousel-control-prev, .company-cat-by-job .carousel-control-next {
            background-color: black;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            top: 50%;
            transform: translateY(-50%);
        }

/*        ---------------------ceo-section--------------*/

.job-portal-ceo-section {
            max-width: 800px;
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: auto;
        }
        .job-portal-ceo-name {
            font-weight: bold;
            font-size: 20px;
            color: #0056b3;
        }
        .job-portal-ceo-title {
            color: #6c757d;
            font-size: 16px;
        }
        .job-portal-ceo-section .job-portal-ceo-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        .job-portal-ceo-section .signature {
            font-family: 'Brush Script MT', cursive;
            font-size: 30px;
            color: #0056b3;
        }

/*---------------job-portal-callback------------------*/

        .job-portal-callback-section {
            background: #d8c8fc; /* Light purple background */
            border-radius: 15px;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1000px;
            margin: auto;
        }
        .job-portal-callback-section .callback-text {
            color: #1c0d4f; /* Darker purple for text */
            font-weight: bold;
        }
        .job-portal-callback-section .callback-subtext {
            color: #3d2c78;
            font-size: 14px;
        }
        .job-portal-callback-section .callback-button {
            background-color: #0056ff; 
            color: #fff;
            font-weight: bold;
            border-radius: 25px;
            padding: 10px 20px;
            border: none;
        }
        .job-portal-callback-section .callback-button:hover {
            background-color: #003bb3;
        }
        .job-portal-callback-section .callback-img {
            width: 80px;
            height: auto;
            border-radius: 50%;
        }
        @media (max-width: 768px) {
            .job-portal-callback-section .job-portal-callback-section {
                flex-direction: column;
                text-align: center;
            }
            .job-portal-callback-section .callback-img {
                margin-bottom: 15px;
            }
        }



/*---------------------media-query------------------*/

        @media screen and (max-width: 768px){
            /*---------------------hedaer-menu-----------------*/
         .job-dekho-header-menu .navbar {
                background-color: white;
                padding: 0px 5px;
            }
            .job-dekho-header-menu .header-logo {
             max-width: 80px;
           }
           .job-portal-search-container .search-box {
            display: grid;
           }
           .job-portal-discover-section {
            padding: 30px 10px 50px 10px;
          }
          .spacing-top{
                margin-top: 50px;
            }
            .spacing-bottom{
                margin-bottom: 50px;
            }
            .job-portal-search-container {
            max-width: 100%;
           }
           .company-cat-by-job .job-card {
            padding: 10px;
           }
           .recruiter-page-job-category .category-icon {
            font-size: 20px;
          }
          .recruiter-page .box {
            position: relative;
            width: 350px;
        }

        }