

/**************search-by-category*******************/

  /* Grid container */

        .search-by-category {
            background-color: #DBEDF7;
        }

        .search-by-category .job-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
            grid-gap: 20px; /* Gap between items */
            padding: 20px;
        }

        /* Job card styling */
        .search-by-category .job-card {
            display: flex;
            align-items: center;
            padding: 10px;
            border: 1px solid #F8F8F8;
            border-radius: 5px;
            background-color: #F8F8F8;
            color: black;
            font-weight: 600;
        }

        /* Icon styling */
        .search-by-category .job-card i {
            margin-right: 10px;
            font-size: 24px;
            color: black;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .search-by-category .job-container {
                grid-template-columns: repeat(4, 1fr); /* 4 columns on medium screens */
            }
        }

        @media (max-width: 992px) {
            .search-by-category .job-container {
                grid-template-columns: repeat(3, 1fr); /* 3 columns on smaller screens */
            }
        }

        @media (max-width: 768px) {
            .search-by-category .job-container {
                grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile screens */
            }
        }

        @media (max-width: 576px) {
            .search-by-category .job-container {
                grid-template-columns: 1fr; /* 1 column on very small screens */
            }
        }

/************** END ****************************/

/************** RECENT POSTS *******************/


  .recently-posted-jobs {
/*    padding-top: 100px;*/
    padding-bottom: 80px ;
    
        background: white;

  }
    

     .recently-posted-jobs p {
      color: rgb(6, 18, 87);
      font-size: 16px;
      font-weight: initial;
      line-height: 28px;
    }

    .recently-posted-jobs span {
        color: black;
        font-size: 16px;
      font-weight: initial;
      line-height: 70px;

    }

     .recently-posted-jobs .step-number {
    background: linear-gradient(45deg, #097685, #23d3d3) !important;
      color: white;
      font-size: 12px;
      font-weight: bold;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 10px;
    }

     .recently-posted-jobs .step {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

     .recently-posted-jobs .btn-post {
      background: linear-gradient(45deg, #097685, #23d3d3) !important;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      margin-top: 20px;
    }

   
    
    .recently-posted-jobs .scrollable-column {
      height: 450px;
      position: relative;
      overflow: hidden;
          padding: 40px;
    background: linear-gradient(90deg, rgb(84, 166, 162) 0%, 16.9118%, rgb(170, 217, 225) 33.8235%, 66.9118%, rgb(124, 175, 183) 100%);
    border-radius: 2%;
    }

    .recently-posted-jobs .scrollable-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 columns */
      gap: 20px; /* Space between the cards */
    animation:  80s linear 0s infinite normal none running scrollUp ;
}


    }





    .recently-posted-jobs .card .content h5 {
      font-size: 13px;
      color: black;
    }

   .recently-posted-jobs  .card .content p {
      font-size: 14px;
      color: rgb(6, 18, 87);
      line-height: 1.5;
      text-align: left;
    }

    @keyframes scrollUp {
      0% {
        transform: translateY(0);
      }
      100% {
        transform: translateY(-100%);
      }
    }

/*****************SECTION ONE************************/

.section-one {
    padding-top: 80px;
      padding-bottom: 80px !important;

}
.section-one .container {
    overflow: hidden;
}

.slider-container {
    display: flex;
    overflow: hidden;
}

.section-one .tab-icon {
      font-size: 20px;
      margin-right: 8px;
    }

    .section-one .nav-tabs .nav-item.show .nav-link,
    .section-one  .nav-tabs .nav-link.active {
      color: #8492b0;
      font-weight: bold;
      border-color: transparent;
    }

    .section-one  .nav-tabs .nav-link {
      color: black;
      border: none;
      font-size: 18px;
      display: flex;
      align-items: center;
    }

    .section-one  .nav-tabs {
      border-bottom: 2px solid #ddd;
    }

    /* Underline effect */
    .section-one  .nav-tabs .nav-link {
      position: relative;
    }

    .section-one  .nav-tabs .nav-link::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: transparent;
      transition: background-color 0.3s;
    }

    .section-one  .nav-tabs .nav-link.active::after {
      background-color: #8492b0;
    }

    /* Responsive styling */
    @media (max-width: 768px) {
      .section-one  .nav-tabs .nav-link {
        font-size: 16px;
      }
    }


.task-cards {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.task-card {
    width: 300px;
    height: 150px;
    background-color: #ffffff;
    margin: 0 15px;
    border-radius : 10px;
    box-shadow: inset -3px -3px 9px 0px #607D8B; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    
}

.task-card-body {
    text-align: center;
}

.task-cards2 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.task-card2 {
    width: 300px;
    height: 150px;
    background: #ffffff;
    margin: 0 15px;
    border-radius : 10px;
    box-shadow: inset -3px -3px 9px 0px #607D8B; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    
}

h3.job-title{
    color: #000 !important;
    font-weight: 700;
    font-size: 16px;
}
.job-records .fa {
    color: #086b7c !important;
}

.task-card-body2 {
    text-align: center;
}

.task-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-bottom: 0px;
}

/******************************************/

.testimonial-cards {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    width: 120px;
    height: 113px;
    background-color: #000;
    margin: 0 15px;
    border: 1px solid #c7c7c7;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    
}

.testimonial-card-body {
    text-align: center;
}

.testimonial-img {
   /* width: 45px;
    height: 45px;*/
    border-radius: 50%;
    margin-bottom: 0px;
}

/***********SECTION THREE******************/

.section-three {
   
}

.section-three .wrapper {
    padding: 20px;

}

.section-three .wrap-content {
    padding-left: 10px;
    
}


.section-three .content span {
    color: gray;
    font-weight: 700;
    line-height: 51px;
}

.section-three .content h3 {
    font-size: 30px;
    line-height: 40px;
}

.section-three .content p {
    color: gray;
    line-height: 25px;
    font-size: 14px;
}

.section-three .btn-post {
    background: linear-gradient(45deg, #097685, #23d3d3) !important;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
}

.section-three .upper-area {
    
}


/*********LAST SECTION****************/


.last-section .task-cards {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.last-section .task-card  {
    width: 300px;
    height: 150px;
    background-color: #dedee2;
    margin: 0 15px;
    border: 1px solid #dedee2;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    
}

.last-section .task-card-body  {
    text-align: center;
}



.last-section .task-img1 {
    width: 100%;
    height: 100%;
   
}

/*************Blog***************/

.post__info {
    text-align: center;
}

h3.post__title:hover {
    color: black;
} 

/**********************************/

.tooltip-inner {
    background-color: #2c3e50 !important; /* Dark background */
    color: #ffffff !important;           /* White text */
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #3498db;
}

.tooltip-arrow::before {
    border-width: 8px;
    border-color: #2c3e50 !important;
}

.tooltip {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

    @media screen and (max-width: 425px) {
            ul#myTab {
            flex-direction: column;
        }
    }

    @media screen and (min-width: 768px) and (max-width:1023px) {
        .section-one .nav-tabs .nav-link {
            font-size: 14px !important;
        }
    }

    @media screen and (max-width: 768px) {
        .title_home h2 {
             font-size: 25px; 
             color: #000;

            }

            .post__info .post__title {
                font-size: 14px !important;
            }

            .brd {
                border-left: none !important;
            }


            .banner.slick-sliders img {
                height: 26px !important;
            }

            .recently-posted-jobs span {
                line-height: 27px;
            }

            
        }

    @media screen and  (min-width: 769px) and (max-width: 2560px) {
        .title_home h2 {
             font-size: 55px !important; 
             color: #000;

            }
        }
    
    @media screen and (max-width: 1024px) {
       .recently-posted-jobs .scrollable-content {
                grid-template-columns: 1fr;
            }

        .recently-posted-jobs .scrollable-column {
            padding: 20px;
        }

        .banner-wrap .banner-content {
            left: 0;
            right: 0;
        }
    }

    @media screen and (max-width: 375px) {
    .banner.slick-sliders img {
        height: 30px !important;
        }

           .circle--slider .animate-more {
            padding: 20px !important;
        }
    }

    @media screen and (min-width: 425px) and (max-width: 766px) {
    .banner.slick-sliders img {
        height: 38px !important;
        }

        .circle--slider .animate-more {
            padding: 26px !important;
        }
    }

    @media screen and (min-width: 768px) and (max-width: 992px) {
    .banner.slick-sliders img {
        height: 75px !important;
        }

        .circle--slider .animate-more {
            padding: 51px !important;
        }
    }

        @media screen and (min-width: 995px) and (max-width: 1066px) {
    .banner.slick-sliders img {
        height: 55px !important;
        object-fit: contain;
        }  
    }


    .freelancer-by-city {
      display: flex;
      justify-content: center;
      align-items: center;
     
    }
    .tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 20px;
      border-radius: 8px;
     
    }

    .tag {
      padding: 10px 15px;
      border: 1px solid #ccc;
      border-radius: 20px;
      background-color: #fff;
      color: #333;
      font-size: 16px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

  

    

