@import url("https://fonts.googleapis.com/css2?family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --main-font-family: "Kodchasan", sans-serif;

  --first-color: #4058d4;

  --second-color: #7081dc;

  --third-color: #fccd34;

  --font-weight: 500;
}

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

.path {
  font-size: 14px;
  text-decoration: none;
  color: #808080;
}


body {
  font-family: var(--main-font-family);

  overflow-x: hidden;

  font-weight: var(--font-weight);

  /* background-color: #7080dc36; */

  background: url("../images/hero-img.png");

  background-repeat: no-repeat;

  background-size: 100% 100%;
}

/* ======================Header================================ */

.header {
  position: relative;

  padding: 5px 20px;
}

.header-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;
}

/* Logo */

.logo img {
  width: 100%;

  max-width: 100px;
}

/* Desktop Search */

.search-container {
  /* display: flex; */

  border: 1px solid var(--first-color);

  border-radius: 25px;

  overflow: hidden;

  background: white;

  width: 100%;

  max-width: 600px;

  position: relative;
}

.search-container input {
  border: none;

  padding: 10px 15px;

  outline: none;

  width: 100%;

  max-width: 550px;
}

.search-container button {
  background: var(--first-color);

  color: white;

  padding: 8px 13px;

  border: none;

  cursor: pointer;

  border-radius: 50%;

  position: absolute;

  right: 5px;

  top: 1.5px;
}

/* Buttons */

.buttons button {
  margin-left: 10px;

  padding: 8px 15px;

  border-radius: 25px;

  border: 1px solid var(--first-color);

  background: transparent;

  color: var(--first-color);

  cursor: pointer;

  font-weight: bold;
}

.call-btn {
  background-color: var(--first-color) !important;

  color: white !important;
}

/* Mobile Icons */

.mobile-icons {
  display: none;
}

.icon {
  background: none;

  border: none;

  font-size: 18px;

  margin-left: 12px;

  cursor: pointer;

  color: var(--first-color);
}

.mobile-search input {
  width: 100%;

  padding: 10px;

  border-radius: 25px;

  border: 1px solid #ccc;

  outline: none;
}

.mobile-search {
  display: none;

  position: absolute;

  top: 100%; /* right below header */

  left: 0;

  width: 100%;

  z-index: 1000;

  background: #f1f1f1;

  padding: 10px 20px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;
}

.mobile-search.active {
  display: block;
}

        .hero-main-container  h1 {
    width: 52%;
    margin: 0 auto;
    font-size : 50px;
        }

        .hero-main-container p {

font-size : 14px;
margin-top : 15px;
        }

/* Responsive Styles */

@media (max-width: 768px) {
  .desktop-search,
  .desktop-buttons {
    display: none;
  }

        .hero-main-container  h1 {
    width: 100%;
    
    font-size : 25px;
        }

        .hero-main-container p {

font-size : 12px;
margin-top : 15px;
        }


   .accordion-button {
            font-size : 14px;
            width: 80% !important;
        }

         .accordion-button::after {
            right: -60px !important;
        } 
  .mobile-icons {
    display: flex;
  }


  .header-container {
    flex-wrap: nowrap;
  }
}

/* ===========================Hero Container================================ */

.hero-main-container {
  text-align: center;

  padding: 30px 50px;
}

.hero-area-btn {
  background-color: var(--second-color);

  font-size: 15px;

  font-weight: var(--font-weight);

  border: none;

  padding: 7px 10px;

  border-radius: 25px;

  color: #fff;
}

.dropdown-menu {
  border: none;
}

.hero-main-container h1 {
  font-size: 50px;

  font-weight: 700;

  color: #000000;

  margin-top: 50px;
}

.hero-main-container span {
  color: var(--third-color);
}

/* Search Form */

.search-form {
  background: white;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  align-items: center;

  gap: 10px;

  padding: 15px 25px;

  border-radius: 20px;

  /* margin-top: 80px; */

  width: 100%;

  max-width: 900px;

  margin: 70px auto;

  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

  border: solid 1px var(--second-color);
}

.form-group {
  display: flex;

  align-items: center;

  gap: 10px;
}

.form-group i {
  color: var(--first-color);
}

.form-group label {
  font-size: 12px;

  color: #777;
}

.form-group input {
  border: none;

  /* border-bottom: 1px solid #ccc; */

  padding: 5px;

  width: 100%;

  outline: none;

  font-size: 14px;

  font-weight: 500;
}

.search-btn {
  padding: 13px 10px;

  background: var(--second-color);

  color: white;

  border: none;

  border-radius: 25px;

  cursor: pointer;

  font-size: 15px;

  font-weight: 500;
}

/* ============================Apply Now============================= */

.apply-bg-container {
  background-color: #4058d4bf;

  padding: 20px 20px;
}

/* Style the buttons inside the tab */

.tab button {
  background-color: #fff;

  color: var(--first-color);

  outline: none;

  cursor: pointer;

  padding: 10px 20px !important;

  transition: 0.3s;

  font-size: 13px !important;

  font-weight: 500;

  border: solid 1px var(--first-color);

  border-radius: 25px;

  margin-bottom: 20px;
}

/* Change background color of buttons on hover */

.tab button:hover {
  background-color: var(--second-color);

  color: #fff;
}

/* Create an active/current tablink class */

.tab button.active {
  background-color: var(--first-color);

  color: #fff;
}

/* Style the tab content */

.tabcontent {
  display: none;
}

.apply-employer-card-box {
  padding: 20px 10px;

  border-right: solid 1px var(--first-color);

  border-bottom: solid 1px var(--first-color);

  text-align: center;
}

.apply-employer-card-box h5 {
  font-size: 16px;

  font-weight: 500;

  color: #fff;
  width: 380px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.apply-employer-card-box p {
  font-size: 12px;

  font-weight: 500;

  color: var(--third-color);
}

.apply-employer-card-box .apply-btn {
  font-size: 15px;

  font-weight: 500;

  color: #000000;

  background-color: #fff;

  border-radius: 20px;

  padding: 10px 20px;

  border: solid 1px #fff;
}

.view-more-btn {
  margin-top: 40px;

  padding: 10px 20px;

  background-color: #fff;

  border: solid 1px #fff;

  color: #000000;

  font-size: 15px;

  font-weight: 500;

  border-radius: 20px;
}

/* ==================International Outsourcing============================ */

.internation-outsourcing-bg {
  background: url("../images/outsourcing-bg.png") no-repeat;

  background-size: cover;

  padding: 30px 10px;

  margin-top: 30px;
}

.internation-outsourcing-bg h2 {
  font-size: 40px;

  font-weight: 700;

  color: #000000;

  letter-spacing: 0.5px;
}

.internation-outsourcing-bg .form-container-box {
  border: solid 1px var(--first-color);

  border-radius: 25px;

  padding: 15px;

  margin-top: 25px;

  background-color: #fff;
}

.internation-outsourcing-bg .form-container-box h5 {
  font-size: 20px;

  font-weight: 600;

  color: #000000;

  margin-bottom: 20px;
}

.form-control,
.form-select {
  border: solid 1px var(--second-color) !important;

  box-shadow: none;

  font-size: 15px;

  font-weight: 600;

  color: #9f9f9f;

  padding: 10px;

  border-radius: 13px;

  margin-top: 10px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;

  border: solid 1px var(--second-color) !important;
}

.outsourcing-btn-show {
  background-color: var(--first-color);

  color: #fff;

  padding: 10px 20px;

  border-radius: 10px;

  border: solid 1px var(--first-color);

  font-size: 16px;

  font-weight: 500;

  margin-top: 20px;
}

.internation-outsourcing-bg p {
  font-size: 15px;

  font-weight: 500;

  text-align: justify;

  line-height: 25px;
}

.marquee-container {
  overflow: hidden;

  white-space: nowrap;

  width: 100%;

  margin-bottom: 0px;

  height: 60px;

  position: relative;
}

.marquee {
  display: inline-block;

  position: absolute;

  white-space: nowrap;

  animation-name: scroll;

  animation-timing-function: linear;

  animation-iteration-count: infinite;
}

.marquee-country-box {
  display: flex;

  align-items: center;

  gap: 5px;

  background-color: var(--second-color);

  color: #fff;

  border-radius: 15px;

  padding: 7px 10px;

  margin-top: 10px;
}

.marquee-country-box img {
  border-radius: 50%;

  width: 30px;

  height: 30px;

  object-fit: cover;
}

.marquee-country-box span {
  font-size: 15px;

  font-weight: 500;
}

/* Speeds - different durations */

.marquee1 {
  animation-duration: 30s;

  white-space: nowrap;

  display: flex;

  align-items: center;

  gap: 10px;
}

.marquee2 {
  animation-duration: 35s;

  white-space: nowrap;

  display: flex;

  align-items: center;

  gap: 10px;
}

.marquee3 {
  animation-duration: 40s;

  white-space: nowrap;

  display: flex;

  align-items: center;

  gap: 10px;
}

@keyframes scroll {
  from {
    left: -100%;
  }

  to {
    left: 100%;
  }
}

.efficieny-out-box {
  text-align: center;

  background-color: #fff;

  border: solid 1px var(--second-color);

  padding: 20px 10px;

  border-radius: 20px;
}

.efficieny-out-box2 {
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(144, 159, 235, 1) 0%,

    rgba(212, 219, 255, 1) 57%,

    rgba(255, 255, 255, 1) 100%
  );

  border: solid 1px var(--second-color);

  padding: 20px 10px;

  border-radius: 20px;
}

.efficieny-out-box h5,
.efficieny-out-box2 h5 {
  font-size: 32px;

  font-weight: 600;

  color: #000000;
}

.efficieny-out-box p,
.efficieny-out-box2 p {
  font-size: 12px;

  font-weight: 500;

  color: #000000;

  text-align: center;
}

/* =================Explore Outsourcing===================== */

.title-heading h2 {
  font-size: 30px;

  font-weight: 700;

  color: #000000;

  text-align: center;
}

.title-heading p {
  font-size: 15px;

  font-weight: 500;

  color: #000000;

  text-align: center;

  margin-top: 10px;
}

.explore-outsourcing-card {
  border: solid 1px var(--first-color);
  height: 430px;
  border-radius: 20px;

  position: relative;
}

.explore-image {
  width: 100%;

  height: 200px;

  object-fit: cover;

  border-radius: 20px;
}

.icon-show {
  background-color: var(--third-color);

  width: 60px;

  height: 60px;

  position: absolute;

  left: 50%;

  transform: translate(-50%, -50%);

  padding: 11px 10px;

  border-radius: 50%;
}

.icon-show img {
  width: 40px;

  height: 40px;
}

.explore-outsourcing-card .content {
  padding: 20px 10px;
}

.explore-outsourcing-card .content h6 {
  font-size: 20px;

  font-weight: 600;

  color: #000000;

  margin-top: 20px;
}

.explore-outsourcing-card .content p {
  font-size: 14px;

  font-weight: 500;

  color: #000000;
}

/* ===================Company Slider=========================== */

.company-slider-container {
  background-color: var(--second-color);
  border-top: solid 2px #e5bbff;
  border-bottom: solid 2px #e5bbff;
  padding: 25px 5px;
}

.logos {
  display: flex;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  animation: slide 65s linear infinite;
gap : 440px;
}

.logo_items {
  display: flex;
gap : 20px;
}

.logo_items img {
  height: 100px;
  margin: 0 10px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos:hover .logos-track {
  animation-play-state: paused;
}

/* ==============================FAQ================================= */

.accordion {
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-button {
  font-size: 17px;

  font-weight: 600;

  color: #000000;

  padding: 10px 5px;
width : 100%;
}

.accordion-item {
  margin-top: 15px;

  border-bottom: solid 1px #000000;
}

.accordion-button::after {
   top: -10px;
    font-size: 30px;
    margin-top: 20px;
    position: absolute;
    right: 10px;
}

.accordion-button:not(.collapsed) {
  color: var(--first-color);

  background-color: #7080dc69;

  box-shadow: none;
}

.accordion-body {
  font-size: 14px;

  font-weight: 500;

  color: #000000;

  padding: 10px 5px;
}

/* ============================Testimonial=========================== */

.testimonial-container {
  background-color: var(--second-color);

  padding: 30px 0px;

  margin-top: 50px;

  overflow-x: hidden;
}

.custom-slide {
  background: #fff;

  border-radius: 0px;

  transition: all 0.5s ease;

  transform: scale(0.9);

  filter: blur(2px) brightness(0.8);

  padding: 30px 40px;

  position: relative;
}

.custom-slide p {
  font-size: 14px;

  font-weight: 500;

  color: #000000;
}

.swiper-slide-active.custom-slide {
  transform: scale(1);

  filter: none;

  z-index: 2;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.swiper-slide-next.custom-slide,
.swiper-slide-prev.custom-slide {
  transform: scale(0.95);

  filter: blur(2px) brightness(0.9);
}

/* Hide extra slides outside center + prev + next */

/* .swiper-slide-visible:not(.swiper-slide-active):not(.swiper-slide-prev):not(

    .swiper-slide-next

  ) {

  opacity: 0;

  pointer-events: none;

} */

.user-image {
  width: 100%;

  max-width: 50px;

  height: 50px;

  border-radius: 50%;

  object-fit: cover;
}

.left-side-quote,
.right-side-quote {
  font-size: 40px;

  font-weight: 700;

  color: var(--first-color);
}

.left-side-quote {
  position: absolute;

  left: 3px;
  top: -13px;

  z-index: -1;
}

.right-side-quote {
  position: absolute;

  right: -0px;

  bottom: -12px;

  z-index: -1;

  transform: rotate(-180deg);
}

/* =========================Why Choose Us========================== */

.why-choose-card-show {
  background-color: #fff;

  border-radius: 20px;

  border: solid 1px var(--first-color);

  padding: 20px 15px;

  text-align: center;
}

.why-choose-card-show img {
  width: 100%;

  max-width: 80px;

  height: 80px;
}

.why-choose-card-show h6 {
  font-size: 15px;

  font-weight: 500;

  color: #000000;

  margin-top: 6px;
}

.why-choose-card-show p {
  font-size: 14px;

  font-weight: 500;

  color: #000000;
}

/* ===============================Footer==================================== */

.footer-bg {
  background: linear-gradient(
    129deg,
    rgba(64, 88, 212, 1) 50%,
    rgba(255, 255, 255, 1) 100%
  );

  padding: 40px 30px;
}

.footer-bg .title {
  font-size: 30px;

  font-weight: 600;

  color: var(--third-color);
}

.footer-logo-box {
  text-align: end;
}

.footer-ul-title {
  font-size: 21px;

  font-weight: 500;

  color: #fff;
}

.footer-list {
  list-style: none;

  padding-left: 0px;
}

.footer-list li a {
  color: #fff;

  font-size: 15px;

  font-weight: 500;

  text-decoration: none;
}

.border-line {
  border-top: solid 2px var(--third-color);

  margin-top: 20px;
}

.new-apply-btn {
  font-size: 13px;
}

@media screen and (max-width: 992px) {
  .apply-employer-card-box h5 {
    font-size: 12px;
    width: 190px;
  }
  .view-more-btn {
    margin-top: 20px;

    padding: 8px 15px;

    font-size: 12px;
  }

  .apply-employer-card-box p {
    font-size: 10px;
    width: 190px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo img {
    max-width: 80px;
  }

  .hero-main-container {
    padding: 20px 15px;
  }

  .hero-main-container h1 {
    font-size: 27px;

    margin-top: 30px;
  }

  .hero-main-container p {
    font-size: 13px;

    font-weight: var(--font-weight);
  }

  .search-form {
    position: static;

    bottom: 0px;

    margin-top: 40px;
  }

  .apply-bg-container {
    padding: 20px 0px;
  }

  .apply-employer-card-box {
    border-top: solid 1px var(--first-color);

    border-left: solid 1px var(--first-color);

    border-right: solid 1px var(--first-color);

    border-bottom: solid 1px var(--first-color);
  }

  .apply-employer-card-box .apply-btn {
    font-size: 12px;

    padding: 4px 12px;
  }

  .internation-outsourcing-bg {
    padding: 20px 0px;

    margin-top: 10px;
  }

  .internation-outsourcing-bg h2 {
    font-size: 27px;
  }

  .internation-outsourcing-bg .form-container-box {
    padding: 15px 7px;
  }

  .why-choose-card-show {
    padding: 20px 5px;
height : 200px;
  }

  .why-choose-card-show img {
    max-width: 50px;

    height: 50px;

    object-fit: cover;
  }

  .why-choose-card-show p {
    font-size: 13px;
  }

  .footer-bg {
    background: linear-gradient(
      50deg,
      rgba(64, 88, 212, 1) 50%,
      rgba(255, 255, 255, 1) 100%
    );

    padding: 20px 0px;
  }

  .footer-bg .title {
    font-size: 22px;
  }

  .footer-logo-box {
    text-align: center;
  }

  .footer-ul-title {
    font-size: 20px;
  }

  .footer-list li a {
    font-size: 13px;
  }

  .new-apply-btn {
    font-size: 11px;
  }

  .home-page-apply-jobs-show {
    display: none;
  }
}

@media only screen and (min-width: 992.1px) {
  .apply-job-slider,
  .explore-outsourcing-slider,
  .job-related-slider {
    display: none;
  }
}
