/* -----FONT-------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  overflow-x: hidden;
  background-color: #ffffff;
}
:root {
  --primary: #ff6c00;
  --white: #ffffff;
  --SecondaryLight: #f8ad3b;
  --black: #000000;
  --robot-font: "Roboto", sans-serif;
}

/* ==========header start========= */
/* --------------------sticky-header---------------------- */

.page-header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgb(139 139 139 / 10%);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  animation: slideDown 0.35s ease-out;
  height: auto;
  width: 100%;
  background-color: #ffffff;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}
.nav-link {
  font-family: var(--robot-font);
  font-weight: 500;
  font-size: 12px;
  color: var(--black);
}
.nav-link.active {
  background: #f8ad3b;
  color: var(--white) !important;
  border-radius: 90px;
  padding: 7px 20px !important;
}
.mainTitle {
  font-weight: 700;
  font-size: 70px;
  color: var(--black);
}
.sub_title {
  font-weight: 600;
  font-size: 52px;
}
.dec_txt {
  font-weight: 400;
  font-size: 22px;
  color: var(--white);
}
header {
  .main_btn {
    font-size: 16px;
    font-weight: 400;
  }
}
.main_btn:hover {
  background-color: var(--black);
  color: var(--white);
}
.serch_BAr {
  position: absolute;
  top: 6px;
  left: 16px;
}
.SearchBar_input {
  border: 1.52px solid #000000;
}
.SearchBar_input::placeholder {
  font-family: var(--robot-font);
  font-weight: 400;
  font-size: 12px;
  color: var(--black);
}
.offcanvas-header {
  border-bottom: 1px solid #80808030;
}
.navbar-brand img {
  max-width: 220px;
}
/* ==========header end========= */
/* ========================================center content start======================================================== */
.work-Hero_sec {
  background-image: url("../images/bg1.png");
}
.black_btn {
  background: linear-gradient(
    0deg,
    #3c4f62 -49.13%,
    #314150 -16.34%,
    #000000 143.74%
  );
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  max-width: 500px;
}
.message-box {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #e9e9ee 14.64%, #e3e4ea 85.36%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-process_content {
  background-image: url("../images/our-process-bg.png");
  h2 {
    color: var(--primary);
    border-bottom: 1px solid var(--white);
    padding-bottom: 10px;
  }
  p {
    font-weight: 400;
    color: var(--white);
  }
}
.How-work_contentTop {
  background-image: url("../images/Workforce-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  h2 {
    color: var(--white);
  }
}
.How-work_contentCenter {
  h2 {
    color: var(--white);
    border-bottom: 1px solid var(--white);
    padding-bottom: 10px;
  }
}
.How-work_sec {
  background-image: url("../images/bg2.png");
}
.workcard {
  width: 100%;
  position: relative;
  display: block;
  cursor: pointer;
  transition: transform 0.6s ease;
  /* transform-style: preserve-3d; */
  img.card-bg {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
  }
  .card-content {
    position: absolute;
    inset: 10% 10% 12% 6%;
    /* overflow-y: auto;
    -webkit-overflow-scrolling: touch; */
    padding: 1rem;
  }
  .card-content * {
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
  }
  h6,
  p {
    color: var(--black);
  }
  span {
    color: var(--primary);
    font-size: 60px;
  }
  h6 {
    font-size: 30px;
  }

  p {
    font-size: 22px;
  }
  .arrow_btn {
    position: absolute;
    bottom: 40px;
    right: 19px;
  }
  .card_icon {
    max-height: 120px;
  }
}
.workcard:hover {
  transform: rotateY(180deg);
}
.workcard .card-content {
  transition: transform 0.6s ease;
}
.workcard:hover .card-content {
  transform: rotateY(180deg);
}
.outsourcing_sec {
  background-image: url("../images/black_bg.png");
}
.Talk-to-Us_sec {
  background-image: url("../images/blue_bg.png");
  .msgBoX {
    max-width: 150px;
  }
}
.Hero_sec {
  background-image: url("../images/hero-bg.png");
  .black_btn {
    font-size: 22px;
  }
  .dec_txt {
    font-size: 16px;
  }
}
.video-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoplay_btn img {
  width: 88px;
  height: 88px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  background-color: #ffffff;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
}
.WHATWEDO_content {
  background-image: url("../images/ornagebg1.png");
}
.WHY-OUTSOURC_content {
  background-image: url("../images/outsource-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  h5 {
    font-size: 32px;
  }
  .Bullseye-Icon {
    max-width: 65px;
  }
}
.WHY-OUTSOURCbottom_txt {
  background-color: var(--black);
  h6 {
    font-size: 30px;
  }
}
.custom-card {
  /* background-image: url("../images/card-shape1.png");
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 20px;
  border-radius: 31px;
  overflow: hidden;
  height: 270px; */
}
.custom-card-wrapper {
  height: 242px;
  width: 100%;
  position: relative;
  perspective: 1000px;
  .custom-card {
    background: #f0f0f0;
    clip-path: polygon(0 0, 84% 0, 100% 24%, 100% 100%, 0 100%, 0% 50%);
    padding: 30px 12px;
    width: 100%;
    height: 100%;
    border-radius: 20px 70px 20px 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.6s ease;
    transform-style: preserve-3d;
  }

  .Icons {
    position: absolute;
    right: 4px;
    top: 14px;
    z-index: 10;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.6s ease;
    transform: rotateY(0deg);
  }
}
.custom-card-wrapper:hover .custom-card {
  background: #ff6c00;
  transform: rotateY(180deg);
}
.card-content {
  transform: rotateY(0deg);
  transition: transform 0.6s ease;
}
.custom-card-wrapper:hover .custom-card .card-content {
  transform: rotateY(180deg);
}
.custom-card-wrapper:hover .custom-card .card-content p {
  color: #ffffff;
}
.custom-card-wrapper:hover .Icons {
  background-color: var(--black);
  color: var(--white);
  right: auto;
  left: 4px;
}
.Perks_sec {
  position: relative;
  background-image: url(../images/services-bg4.png);
  padding-top: 128px;
  padding-bottom: 128px;
  background-position: top center;

  .custom-card-wrapper {
    height: 242px;
    .Icons {
      position: absolute;
      right: auto;
      top: auto;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 50%);
      -webkit-transform: translate(-50%, 50%);
      -moz-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
      -o-transform: translate(-50%, 50%);
    }
  }
  .custom-card-wrapper:hover .Icons {
    background-color: var(--black);
    color: var(--white);
    right: auto;
    left: 50%;
  }
  .custom-card-wrapper:hover .custom-card .card-content h6 {
    color: #ffffff !important;
  }
}
/* .Perks_sec::before {
  content: "";
  position: absolute;
  right: 0;
  top: 1px;
  background-image: url("../images/services-bg5.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom center;
  z-index: -1;
  height: 100%;
  width: 100%;
} */
.Scale-Smartercard {
  background: linear-gradient(90deg, #ffa247 0%, #ff6c00 100%);
}
.grid_dot {
  padding-left: 120px;
  img {
    max-width: 180px;
  }
}
.costReduction_content {
  position: absolute;
  right: 12px;
  bottom: -160px;
}
.Outsource-Smart_content {
  background-image: url("../images/bg3.png");
  .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
  }

  .highlight {
    color: #ff8c00;
  }

  .stat-text {
    font-size: 1rem;
    font-weight: 300;
    color: #ddd;
    margin-top: 5px;
    line-height: 1.4;
  }

  .stat-item {
    position: relative;
  }
}
.gray_boRder {
  background-color: #b1b1b1;
  height: 50px;
}
.Our-Commitment_content {
  background-position: top;
  background-image: url("../images/black-bg2.png");
}
.arrowDOWn-Icon {
  max-width: 48px;
}
.TARGET_content {
  background-image: url("../images/tragate.png");
  svg {
    width: 100%;
  }
}
.Ready_content {
  background-image: url("../images/bg4.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  .btn {
    max-width: 500px;
    margin: auto;
  }
}
.contenTs_wrap {
  background-image: url("../images/bg6.png");
}
.Industries_content {
  background-image: url("../images/Industries-bg.png");
  background-position: bottom center;
  .Industries-card {
    background-image: url("../images/card-shape2.png");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 14px 30px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    height: 472px;
    max-height: 472px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
  }
  .Industries-card:hover {
    transform: rotateY(180deg);
  }
  .Industries-card img,
  .Industries-card h3 {
    transition: transform 0.6s ease;
  }
  .Industries-card:hover img,
  .Industries-card:hover h3 {
    transform: rotateY(180deg);
  }
  .benvise-logo {
    position: absolute;
    bottom: -48px;
    right: 0px;
    max-width: 302px;
  }
  .slick-slide {
    margin: 0 10px;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 40px;
  }
  .slick-prev:before {
    content: "<";
  }
  .slick-next:before {
    content: ">";
  }
  .slick-dotted.slick-slider {
    margin-bottom: 30px;
  }
}
.contact_home {
  background: linear-gradient(
    180deg,
    #ffffff 2.6%,
    #fafbfb 23.49%,
    #eeeff1 44.37%,
    #d9dde0 66.35%,
    #bcc3c9 88.34%,
    #9ba5af 108.13%
  );
  padding-bottom: 200px;
}
.contact_content {
  background-image: url("../images/contact-bg.png");
  background-position: top center;
  margin-top: -140px;
  .main_btn {
    width: 100%;
    max-width: 250px;
  }
}
.form-control::placeholder {
  font-weight: 700;
  color: var(--black);
}
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.services_sec {
  .bottom_txt {
    padding-bottom: 250px;
  }
}
.OUrService_sec {
  background-image: url("../images/orange_bg2.png");
  margin-top: -50%;
  padding-top: 52%;
  padding-bottom: 16%;
  .margin_top {
    margin-top: -300px;
  }
}
.Service-Industries_sec {
  margin-top: -15%;
  .Service-Industries_card {
    cursor: pointer;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary);
    .card_HeAder {
      padding: 30px 20px;
      border-bottom: 1px solid var(--black);
      margin-bottom: 30px;
      h3 {
        font-size: 22px;
      }
    }
    .Service-Industries_card-img {
      width: 100%;
      max-height: 400px;
      border-radius: 16px;
      -webkit-border-radius: 16px;
      -moz-border-radius: 16px;
      -ms-border-radius: 16px;
      -o-border-radius: 16px;
      position: relative;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        transition: transform 0.3s ease;
      }
      a {
        position: absolute;
        top: 30px;
        right: 30px;
      }
    }
    .Service-Industries_card-img:hover img {
      transform: scale(1.1);
    }
  }
  .dark_card {
    background: #3b3b3b;
    .card_HeAder {
      border-bottom: 1.3px solid #ffffff;
    }
  }
  .dark_card1 {
    background-color: #808080;
    .card_HeAder {
      border-bottom: 1.3px solid #ffffff;
    }
  }
}
.HoWwe-Deliver_sec {
  background-image: url("../images/orange_bg3.png");
  background-position: top center;
}
.Why-weSTANDout_sec {
  padding-top: 100px;
}
.Why-weSTANDout_content {
  .serviceImg1 {
    border-radius: 0 0 0 166px;
    margin-top: -1px;
  }
}
.solutions_content {
  background-image: url("../images/bg7.png");
  padding-top: 200px;
  padding-bottom: 200px;
}
.solutions_card {
  background: #ffdfbf;
  border: 1.02px solid #999999;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.testimonials_content {
  background-image: url("../images/testimonials_bg.png");
  padding-top: 120px;
  padding-bottom: 120px;
  .testimonials_card {
    background: #fafafa;
    border: 1.69px solid #ffffff;
    height: 320px;
    max-height: 442px;
    .card-body {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
      height: 100%;
    }
  }
  .testimonialuser_img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    object-fit: cover;
  }
  .Gray_txt {
    color: 727272;
  }
  .slick-slide {
    margin: 0 30px;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 40px;
    color: var(--primary);
  }
  .slick-prev:before {
    content: "<";
  }
  .slick-next:before {
    content: ">";
  }
  .slick-dotted.slick-slider {
    margin-bottom: 30px;
  }
  .slick-prev {
    left: 0px;
    z-index: 99;
  }
  .slick-next {
    right: 0px;
    z-index: 99;
  }
}
.about_sec {
  background-image: url("../images/about-Bg.png");
  background-position: top center;
  .workContent {
    padding-bottom: 100px;
  }
}
.Our-story-sec {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--primary);
}
.Our-story-sec::before {
  content: "";
  position: absolute;
  right: 0;
  top: 1px;
  background-image: url("../images/shape1.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom center;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.WhoWe-Are_card {
  background-color: #231f20;
  padding: 50px 40px;
  clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 0 100%, 0% 50%);
  border-radius: 20px 65px 20px 20px;
  border: 1px solid #f4901e;
}
.WhoWe-Are-sec {
  background-image: url("../images/about-bg2.png");
  background-position: top center;
}
.Our-Mission {
  background-color: var(--primary);
}
.OurMission_sec .iCOn {
  width: 54px;
}
.right_content {
  background: white;
  padding: 70px 20px;
  border-radius: 300px 0 0 300px;
  -webkit-border-radius: 300px 0 0 300px;
  -moz-border-radius: 300px 0 0 300px;
  -ms-border-radius: 300px 0 0 300px;
  -o-border-radius: 300px 0 0 300px;
  text-align: center;
  box-shadow: inset -7px 0 10px rgba(0, 0, 0, 0.4),
    /* Left shadow */ inset 0 -7px 10px rgba(0, 0, 0, 0.4),
    /* Top shadow */ inset 0 7px 10px rgba(0, 0, 0, 0.4); /* Bottom shadow */
  img {
    max-width: 430px;
  }
}
.Words_sec {
  overflow-x: hidden;
  .IconBox {
    background-color: var(--primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: auto;
    img {
      width: 40px;
    }
  }
  .card {
    padding: 40px 30px;
    clip-path: polygon(0 0, 89% 0, 100% 20%, 100% 100%, 0 100%, 0% 50%);
    border-radius: 20px 70px 20px 20px;
    -webkit-border-radius: 20px 70px 20px 20px;
    -moz-border-radius: 20px 70px 20px 20px;
    -ms-border-radius: 20px 70px 20px 20px;
    -o-border-radius: 20px 70px 20px 20px;
    cursor: pointer;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
  }
  .card:hover {
    background-color: var(--black);
    color: var(--white);
  }
}
.Team-Culture_sec {
  .Team-Culture-content {
    margin-top: -24%;
  }
  h2 {
    border-bottom: 1px solid var(--primary);
  }
  .Scale-Smartercard {
    clip-path: polygon(0 0, 95% 0, 100% 14%, 100% 100%, 0 100%, 0% 50%);
    border-radius: 0px 70px 0px 0px;
    -webkit-border-radius: 0px 70px 0px 0px;
    -moz-border-radius: 0px 70px 0px 0px;
    -ms-border-radius: 0px 70px 0px 0px;
    -o-border-radius: 0px 70px 0px 0px;
  }
}

.about_team-card {
  background-color: #f5f5f5;
  padding: 30px 30px 120px;
  border-radius: 290px;
  cursor: pointer;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  .user_img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: auto;
    background-color: var(--white);
    img {
      object-fit: cover;
      height: 100%;
      width: 100%;
    }
  }
}
.about_team-card:hover {
  background-color: var(--primary);
  color: white !important;
  .primary {
    color: white !important;
  }
}
.staffing_sec {
  position: relative;
}
.staffing_sec::after {
  content: "";
  position: absolute;
  background-image: url("../images/carrers-bg1.png");
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: top;
  background-size: cover;
  bottom: 0;
  z-index: -1;
}

/* --- SEARCH BAR CONTAINER --- */
.search-bar-wrapper {
  background-color: white;
  /* width: 900px; */
  height: 70px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* --- LEFT SECTION (Input) --- */
.search-input-group {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.search-icon {
  font-size: 1.2rem;
  color: #000;
  margin-right: 15px;
}

.form-control-custom {
  border: none;
  outline: none;
  box-shadow: none;
  width: 100%;
  font-size: 1.1rem;
  color: #555;
  background: transparent;
}

.form-control-custom::placeholder {
  color: #aaa;
}

/* --- DIVIDER --- */
.divider-vertical {
  width: 1px;
  height: 30px;
  background-color: #ddd;
  margin: 0 20px;
}

/* --- MIDDLE SECTION (Category Dropdown) --- */
.category-group {
  display: flex;
  align-items: center;
  width: 280px;
  position: relative;
  margin-right: 20px;
}

.menu-icon {
  font-size: 1.3rem;
  /* Adjusted slightly for Font Awesome */
  color: #000;
  margin-right: 15px;
}

.category-select {
  border: none;
  outline: none;
  width: 100%;
  appearance: none;
  background: transparent;
  font-size: 1.1rem;
  color: #aaa;
  cursor: pointer;
}

.arrow-orange {
  color: #f37021;
  font-size: 1rem;
  position: absolute;
  right: 10px;
  pointer-events: none;
}

/* --- RIGHT SECTION (Button) --- */
.search-btn {
  background: linear-gradient(90deg, #ff8c42 0%, #ff7f32 100%);
  height: 100%;
  padding: 0 10px 0 40px;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  min-width: 200px;
  justify-content: space-between;
}

.search-btn:hover {
  filter: brightness(0.95);
}

.btn-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.icon-circle-black {
  width: 45px;
  height: 45px;
  background-color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 5px;
}

.icon-arrow-white {
  color: white;
  font-size: 1.1rem;
  /* Rotate 45deg to point down-right like the image */
  transform: rotate(45deg);
}

.Joining-content {
  background: linear-gradient(
    190deg,
    #ffffff 0%,
    #e9e9e9 20%,
    #b3b3b3 62%,
    #999999 81%
  );
  clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%, 0 92%);
  border-radius: 0px 0px 0px 172px;
  -webkit-border-radius: 0px 0px 0px 172px;
  -moz-border-radius: 0px 0px 0px 172px;
  -ms-border-radius: 0px 0px 0px 172px;
  -o-border-radius: 0px 0px 0px 172px;
}
.find_Sec {
  background-image: url("../images/black-bg.svg");
}
.find_Sec {
  .Service-Industries_card {
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 0 100%, 0% 50%);
    border-radius: 20px 70px 20px 20px;
    -webkit-border-radius: 20px 70px 20px 20px;
    -moz-border-radius: 20px 70px 20px 20px;
    -ms-border-radius: 20px 70px 20px 20px;
    -o-border-radius: 20px 70px 20px 20px;
    background-color: #000;
    .card_HeAder {
      border-bottom: 1px solid #7e7e7e;
    }
  }
  .mt_200 {
    margin-top: 200px;
  }
  .mt_100 {
    margin-top: 100px;
  }
  .carrercard {
    width: 100%;
    position: relative;
    display: block;
    background-color: transparent;
  }
  img.card-bg {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
  }
  .card-content {
    position: absolute;
    inset: 10% 10% 12% 6%;
    padding: 1rem;
  }
  .card-content1 {
    inset: 41% 4% 9% 6%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.form_section {
  /* --- CONTAINER STYLING (UNCHANGED) --- */
  .form-container {
    background-color: #ebebeb;
    width: 100%;
    position: relative;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 0;
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
    border-radius: 40px 70px 40px 40px;
    -webkit-border-radius: 40px 70px 40px 40px;
    -moz-border-radius: 40px 70px 40px 40px;
    -ms-border-radius: 40px 70px 40px 40px;
    -o-border-radius: 40px 70px 40px 40px;
    overflow: hidden;
  }

  /* --- HEADER --- */
  .form-header {
    background-color: #f37021;
    color: white;
    padding: 45px 30px;
    text-align: center;
  }

  .form-header h2 {
    font-weight: 400;
    margin-bottom: 0;
    /* font-size: 2rem; */
    letter-spacing: 0.5px;
  }

  /* --- BODY --- */
  .form-body {
    padding: 40px 40px 50px 40px;
  }

  /* --- INPUTS --- */
  .form-control,
  .form-select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    border-radius: 0;
    padding: 12px 0;
    color: #333;
    font-size: 1rem;
  }

  .form-control:focus,
  .form-select:focus {
    box-shadow: none;
    border-bottom-color: #666;
    background-color: transparent;
  }

  .form-control::placeholder {
    color: #aaa;
  }

  .form-label {
    color: #888888;
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .required-star {
    color: #dc3545;
    font-size: 1.1rem;
    line-height: 0;
    position: relative;
    top: 4px;
  }

  /* --- PHONE DROPDOWN CUSTOM STYLE --- */
  .input-group-text {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    padding: 0;
    /* Remove padding to fit select */
    margin-right: 10px;
  }

  .phone-select-wrapper {
    position: relative;
    width: 70px;
  }

  .phone-select {
    appearance: none;
    /* Hide default arrow */
    -webkit-appearance: none;
    background: transparent;
    border: none;
    width: 100%;
    padding: 12px 0 12px 20px;
    /* Space for icon */
    color: #888888;
    cursor: pointer;
    font-size: 1rem;
  }

  .phone-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #888888;
    pointer-events: none;
  }

  /* --- UPLOAD BUTTONS --- */
  .upload-container {
    position: relative;
    margin-bottom: 25px;
  }

  .upload-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-40%);
    background-color: #f37021;
    color: white;
    border: none;
    border-radius: 50px;
    /*Pillshape*/
    padding: 8px 20px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 500;
    -webkit-transform: translateY(-40%);
    -moz-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    -o-transform: translateY(-40%);
  }

  .upload-btn i {
    margin-left: 10px;
    font-weight: bold;
    font-size: 0.9rem;
  }

  .file-input-hidden {
    display: none;
  }

  /* --- COUNTRY EXTRAS --- */
  .country-check-icon {
    color: #f37021;
    position: absolute;
    right: 10px;
    bottom: 15px;
    font-size: 1rem;
    pointer-events: none;
    /* Make click-through */
  }

  /* Dropdown arrow fix */
  .form-select {
    background-image: none;
    /* Remove default arrow */
    cursor: pointer;
  }

  /* Custom small down arrow for Select */
  .select-arrow {
    position: absolute;
    right: 35px;
    /* Left of the checkmark */
    bottom: 15px;
    font-size: 0.7rem;
    color: #888;
    pointer-events: none;
  }
}
.job_content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  h6 {
    font-size: 30px;
  }
}
.form-wrapper {
  margin-top: -10%;
}
.Text_wrapper {
  padding-bottom: 10%;
}
.img_card_Box {
  border-radius: 0 0 0 80px;
  -webkit-border-radius: 0 0 0 80px;
  -moz-border-radius: 0 0 0 80px;
  -ms-border-radius: 0 0 0 80px;
  -o-border-radius: 0 0 0 80px;
}
.img_card_Box1 {
  border-radius: 0 0 80px 0;
  -webkit-border-radius: 0 0 80px 0;
  -moz-border-radius: 0 0 80px 0;
  -ms-border-radius: 0 0 80px 0;
  -o-border-radius: 0 0 80px 0;
}
.img_cARd {
  clip-path: polygon(0 0, 90% 0, 100% 13%, 100% 100%, 0 100%, 0% 50%);
  border-radius: 20px 70px 20px 20px;
}
/* ========================================center content end======================================================== */
/* ================Footer start======================= */
footer {
  color: var(--white);

  li {
    font-weight: 400;
    font-size: 17px;
    a {
      color: var(--white);
    }
  }
  h6 {
    font-weight: 400;
    font-size: 12px;
  }
  .Email_Input {
    border-bottom: 1px solid var(--white);
    .form-control {
      background-color: transparent;
      border: none;
      color: var(--white);
    }
    .form-control::placeholder {
      font-weight: 400;
      font-size: 17px;
      color: var(--white);
    }
    .share_icon {
      position: absolute;
      right: 0;
      top: 6px;
    }
  }
}

/* ================Footer End======================= */

/* ============animations=================== */
.img_wrapper {
  -webkit-animation: movebounce 3s linear infinite;
  animation: movebounce 3s linear infinite;
}

@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}
.social_icon:hover {
  -webkit-animation: rotate-scale-up 0.65s linear both;
  animation: rotate-scale-up 0.65s linear both;
}

@-webkit-keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
    transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
    transform: scale(1) rotateZ(360deg);
  }
}

.copy_right p {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(10%, #ff6c2f),
    color-stop(50%, #f9b931),
    color-stop(60%, #ffffff)
  );
  background: linear-gradient(to right, #ff6c2f 10%, #f9b931 50%, #ffffff 60%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: textclip 2.5s linear infinite;
  animation: textclip 2.5s linear infinite;
  display: inline-block;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
/* Workforce Image Animations */
.How-work_contentTop img {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: workforceAppear 1.2s ease-out 0.3s forwards,
    workforceRotate 6s linear infinite 1.5s;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.How-work_contentTop img:hover {
  animation-play-state: paused;
  transform: scale(1.05);
  filter: brightness(1.1);
}

@keyframes workforceAppear {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes workforceRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* =====custom animations====== */
@keyframes animation-5 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.aniamtion-key-5 {
  position: relative;
  animation-name: animation-5;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes animation-7 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-1000deg);
  }
}

.keyframe5 {
  position: relative;
  animation-name: animation-7;
  animation-duration: 90s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}
@keyframes animation-9 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-1000deg);
  }
}

.keyframe6 {
  position: relative;
  animation-name: animation-9;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

@keyframes animation-1 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(30px);
  }
}

.aniamtion-key-1 {
  position: relative;
  animation-name: animation-1;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes animation-2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50px);
  }
}

.aniamtion-key-2 {
  position: relative;
  animation-name: animation-2;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes animation-3 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(60px);
  }
}

.aniamtion-key-3 {
  position: relative;
  animation-name: animation-3;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes animation-4 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(40px);
  }
}

.aniamtion-key-4 {
  position: relative;
  animation-name: animation-4;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes animation-6 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(50px);
  }
}

.aniamtion-key-6 {
  position: relative;
  animation-name: animation-6;
  animation-duration: 1.9s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes animation-8 {
  0% {
    padding-left: 0px;
  }

  100% {
    padding-left: 50px;
  }
}

.aniamtion-key-7 {
  position: relative;
  animation-name: animation-8;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@-webkit-keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fade-in-down {
  0% {
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(0) translateY(0) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(0) translateY(0) translateZ(0) scale(1.5);
    opacity: 1;
  }
}
.pulse-border {
  position: relative;
  animation-name: pulse-border;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes pulse-border1 {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.pulse-border1 {
  position: relative;
  animation-name: pulse-border1;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* //   margquee animation // */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-100%);
  }
}
@keyframes marquee-2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translatex(0);
  }
}
/* Card Flip Animation */
@keyframes cardFlip {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}

/* =====time line section ========== */
.CORE-VALUEs_sec {
  background-image: url("../images/about-bg3.png");
  background-position: bottom center;
  padding-top: 160px;
  padding-bottom: 238px;
}
.timeline-container {
  width: 100%;
  max-width: 800px;
  margin: 50px auto;
  position: relative;
}

.timeline-row {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
  z-index: 1;
}

.line-curve {
  position: absolute;
  width: 160px;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  top: 0;
  z-index: 0;
}

.row-left .line-curve {
  left: 50%;
  transform: translateX(-100%);
  border-right: none;
  border-radius: 100px 0 0 100px;
}

.row-right .line-curve {
  left: 50%;
  border-left: none;
  border-radius: 0 100px 100px 0;
}

.timeline-row:first-child .line-curve::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -240px;
  width: 240px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.6);
}

.timeline-row:last-child .line-curve {
  height: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px 0 0 100px;
}

.timeline-row:last-child .line-curve::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -240px;
  width: 240px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.6);
}

.timeline-row:first-child {
  margin-top: 0;
}

.circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    max-width: 50px;
    max-height: 50px;
  }
}
.circle-start {
  background-color: #1a1a1a;
  border: 2px solid #ff7b00;
}

.circle-gradient {
  background: linear-gradient(135deg, #ffaa44 0%, #ff6600 100%);
}

.row-left .circle {
  left: calc(50% - 135px);
}

.row-right .circle {
  left: calc(50% + 25px);
}

.text-box {
  max-width: 320px;
  position: absolute;
  z-index: 5;
}

.row-left .text-box {
  left: 50%;
  padding-left: 40px;
  text-align: left;
}

.row-right .text-box {
  right: 50%;
  padding-right: 40px;
  text-align: right;
}

.CORE-VALUEs_sec h4 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: white;
}

.CORE-VALUEs_sec p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0;
  line-height: 1.4;
}
/* ==========modal css==================== */

/* ===================== */
.my_modal {
  /* --- MODAL CONTAINER --- */
  .modal-content {
    background-color: #000000;
    border-radius: 40px;
    border: none;
    padding: 0;
    position: relative;
    min-height: 500px;
  }

  .modal-dialog {
    max-width: 900px;
  }

  .modal-body {
    padding: 50px 40px 40px 40px;
    position: relative;
  }

  /* --- CLOSE ICON (Top Left) --- */
  .close-icon-btn {
    position: absolute;
    top: 25px;
    left: 25px;
    color: #777;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
  }
  .close-icon-btn:hover {
    color: #fff;
  }

  /* --- LOGO PLACEHOLDER (Top Right) --- */
  .logo-placeholder {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: sans-serif;
  }
  .logo-highlight {
    color: #f37021;
  }

  /* --- ORANGE TAG --- */
  .orange-tag {
    position: absolute;
    top: 65px;
    left: 40px;
    background-color: #fd7e35;
    color: white;
    padding: 12px 35px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 1;
    height: 200px;
  }

  /* --- WHITE CARD (The Main Shape) --- */
  .white-card-container {
    margin-top: 60px;
    background-color: #efefef;
    display: flex;
    position: relative;
    z-index: 2;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 0;
    clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%);

    min-height: 400px;
  }

  /* --- LEFT SIDE: IMAGE --- */
  .card-left {
    width: 28%;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* The Yellow Border Overlay */
  .image-overlay-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    pointer-events: none;
  }

  /* --- RIGHT SIDE: CONTENT --- */
  .card-right {
    width: 62%;
    padding: 40px 40px 40px 50px;
    position: relative;
    color: #222;
  }

  .quote-heading {
    font-family: "Georgia", serif;
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  .description {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
  }
  .feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #888;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1rem;
  }
  .corner-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    background-color: #fd7e35;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
  }
  .corner-icon i {
    color: white;
    font-size: 0.7rem;
  }
}

/* ========== FAQ & Privacy Policy & Cookie Policy Pages ========== */
.hero_gradient_bg {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.hero_gradient_bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 108, 0, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero_gradient_bg::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 108, 0, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Privacy Policy Styles */
.privacy-content {
  line-height: 1.8;
}
.privacy-content h2 {
  color: #ff6c00;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.privacy-content h3 {
  color: #000;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
}
.privacy-content p {
  margin-bottom: 1rem;
  color: #333;
}
.privacy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.privacy-content ul li {
  margin-bottom: 0.5rem;
  color: #333;
}
.toc {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ff6c00;
  position: sticky;
  top: 130px;
}
.toc h4 {
  color: #ff6c00;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.toc ul {
  list-style: none;
  padding: 0;
}
.toc ul li {
  margin-bottom: 0.5rem;
}
.toc ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 0.25rem 0;
}
.toc ul li a:hover {
  color: #ff6c00;
}
.toc ul li a.active {
  color: #ff6c00;
  font-weight: 600;
}
.privacy-content section {
  scroll-margin-top: 150px;
}
.effective-date {
  background: #fff3e0;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #ff6c00;
  margin-bottom: 2rem;
}
.contact-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

/* Cookie Policy Styles */
.cookie-content {
  line-height: 1.8;
}
.cookie-content h2 {
  color: #ff6c00;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.cookie-content h3 {
  color: #000;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
}
.cookie-content h4 {
  color: #ff6c00;
  font-weight: 600;
  font-size: 1.1rem;
}
.cookie-content p {
  margin-bottom: 1rem;
  color: #333;
}
.cookie-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.cookie-content ul li {
  margin-bottom: 0.5rem;
  color: #333;
}
.cookie-banner {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border-left: 4px solid #ff6c00;
}
.cookie-type-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ff6c00;
  height: 100%;
}
.browser-guide-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #ff6c00;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.preference-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.bg_black5 {
  background-image: url("../images/black-bg5.png");
}
